Commit a2d46434 authored by Dmitry Kovalev's avatar Dmitry Kovalev Committed by Gerrit Code Review
Browse files

Merge "Fixing PRED_SWITCHABLE_INTERP case in vp9_get_pred_context function." into experimental

Showing with 1 addition and 1 deletion
...@@ -66,7 +66,7 @@ unsigned char vp9_get_pred_context(const VP9_COMMON *const cm, ...@@ -66,7 +66,7 @@ unsigned char vp9_get_pred_context(const VP9_COMMON *const cm,
VP9_SWITCHABLE_FILTERS; VP9_SWITCHABLE_FILTERS;
// above // above
const int above_in_image = above_mi->mbmi.mb_in_image; const int above_in_image = xd->up_available && above_mi->mbmi.mb_in_image;
const int above_mv_pred = above_mi->mbmi.mode >= NEARESTMV && const int above_mv_pred = above_mi->mbmi.mode >= NEARESTMV &&
above_mi->mbmi.mode <= SPLITMV; above_mi->mbmi.mode <= SPLITMV;
const int above_interp = above_in_image && above_mv_pred ? const int above_interp = above_in_image && above_mv_pred ?
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment