Merge "Fix a bug in copy_mode experiment" into nextgen

This commit is contained in:
Debargha Mukherjee 2015-05-07 05:10:00 +00:00 committed by Gerrit Code Review
commit e6889b28e9

View File

@ -416,7 +416,7 @@ int vp9_get_copy_mode_context(const MACROBLOCKD *xd) {
if (ref_intra) {
return 3;
} else {
const int ref_predict = ref_mbmi != NOREF;
const int ref_predict = ref_mbmi->copy_mode != NOREF;
if (ref_predict)
return 0;
else