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
diff --git a/av1/common/entropymode.c b/av1/common/entropymode.c
index baa92cb..3479503 100644
--- a/av1/common/entropymode.c
+++ b/av1/common/entropymode.c
@@ -1015,10 +1015,6 @@
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