Skip to content
Snippets Groups Projects
Commit 59058775 authored by Ronald S. Bultje's avatar Ronald S. Bultje
Browse files

vp10: use correct constant for bw adaptation of seg pred probs.

Change-Id: Idb869a77a126982814b8e7e288f952a65340e6be
parent 3d908191
No related branches found
No related tags found
No related merge requests found
......@@ -865,7 +865,7 @@ void vp10_adapt_intra_frame_probs(VP10_COMMON *cm) {
#if CONFIG_MISC_FIXES
if (cm->seg.temporal_update) {
for (i = 0; i < INTRA_INTER_CONTEXTS; i++)
for (i = 0; i < PREDICTION_PROBS; i++)
fc->seg.pred_probs[i] = mode_mv_merge_probs(pre_fc->seg.pred_probs[i],
counts->seg.pred[i]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment