Merge "Use MV_FP_SIZE based constant instead of 3." into nextgenv2

This commit is contained in:
Yaowu Xu 2016-10-21 17:19:27 +00:00 коммит произвёл Gerrit Code Review
Родитель 67cf85b883 ac499f352e
Коммит c53f8ca6fb
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -217,7 +217,7 @@ static void read_mv_probs(nmv_context *ctx, int allow_hp, aom_reader *r) {
nmv_component *const comp_ctx = &ctx->comps[i];
for (j = 0; j < CLASS0_SIZE; ++j)
update_mv_probs(comp_ctx->class0_fp[j], MV_FP_SIZE - 1, r);
update_mv_probs(comp_ctx->fp, 3, r);
update_mv_probs(comp_ctx->fp, MV_FP_SIZE - 1, r);
}
if (allow_hp) {