Change-Id: I1c0c1b92aab33b1e4321b8e584a934fe58e0b324
This commit is contained in:
Yaowu Xu 2013-11-05 17:13:00 -08:00
Родитель 648e30bca6
Коммит 278856319b
1 изменённых файлов: 3 добавлений и 4 удалений

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

@ -84,8 +84,7 @@ static const vp9_prob cat6_prob[15] = {
#define ADJUST_COEF(prob, bits_count) \
do { \
if (vp9_read(r, prob)) \
val += 1 << bits_count; \
val += (vp9_read(r, prob) << bits_count); \
} while (0);
static int decode_coefs(VP9_COMMON *cm, const MACROBLOCKD *xd,