Merge "Invert SB probability." into experimental

This commit is contained in:
Ronald S. Bultje 2012-10-22 11:18:01 -07:00 коммит произвёл Gerrit Code Review
Родитель 8fc5774f8b ef50e48323
Коммит 09fb253b39
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2561,7 +2561,7 @@ void vp8_pack_bitstream(VP8_COMP *cpi, unsigned char *dest, unsigned long *size)
/* sb mode probability */
const int sb_max = (((pc->mb_rows + 1) >> 1) * ((pc->mb_cols + 1) >> 1));
pc->sb_coded = get_prob(cpi->sb_count, sb_max);
pc->sb_coded = get_prob(sb_max - cpi->sb_count, sb_max);
vp8_write_literal(&header_bc, pc->sb_coded, 8);
}
#endif