Merge "Fix for compile error with range checking"

This commit is contained in:
Debargha Mukherjee 2016-09-28 00:05:37 +00:00 committed by Gerrit Code Review
commit 74f038e6f8

View File

@ -188,9 +188,8 @@ static int decode_coefs(const MACROBLOCKD *xd, PLANE_TYPE type,
}
#if CONFIG_COEFFICIENT_RANGE_CHECKING
#if CONFIG_VP9_HIGHBITDEPTH
dqcoeff[scan[c]] =
highbd_check_range(read_bool(r, 128, &value, &count, &range) ? -v : v),
xd->bd);
dqcoeff[scan[c]] = highbd_check_range(
read_bool(r, 128, &value, &count, &range) ? -v : v, xd->bd);
#else
dqcoeff[scan[c]] =
check_range(read_bool(r, 128, &value, &count, &range) ? -v : v);