Remove partition_cdf update from entropymode.c.

The partition_cdf was being updated in av1_adapt_inter_frame_probs()
 when partition_prob is updated via adaptation which is inconsistent
 with all of the other CDFs that are updated when writing out the
 probability changes to the bitstream.

Change-Id: Ib3c8e9d7204acb1691d261bd1f17c4dc9760d093
This commit is contained in:
Nathan E. Egge 2016-09-20 12:42:46 -04:00
Родитель 1460b83530
Коммит cd1eaba8c2
1 изменённых файлов: 0 добавлений и 4 удалений

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

@ -1015,10 +1015,6 @@ void av1_adapt_inter_frame_probs(AV1_COMMON *cm) {
for (i = 0; i < PARTITION_CONTEXTS; i++) {
aom_tree_merge_probs(av1_partition_tree, pre_fc->partition_prob[i],
counts->partition[i], fc->partition_prob[i]);
#if CONFIG_DAALA_EC
av1_tree_to_cdf(av1_partition_tree, fc->partition_prob[i],
fc->partition_cdf[i]);
#endif
}
#endif