ref: a5b54d73e43186f676b4bbbe960aaa8eea250911
parent: 6344c84c82f6a4f82a6a4f9f33a6d1ec85691930
parent: b99dce688152c714fe0bf8d6a49ba62cd7eabdf4
author: Ronald S. Bultje <rbultje@google.com>
date: Mon Mar 18 11:58:33 EDT 2013
Merge "Fix ENTROPY_STATS code in vp9_tokenize.c." into experimental
--- a/vp9/encoder/vp9_tokenize.c
+++ b/vp9/encoder/vp9_tokenize.c
@@ -872,9 +872,8 @@
for (t = 0; t < MAX_ENTROPY_TOKENS; ++t)
coef_counts[t] = context_counters[type][ref][band][pt][t];
- vp9_tree_probs_from_distribution(MAX_ENTROPY_TOKENS,
- vp9_coef_encodings, vp9_coef_tree,
- coef_probs, branch_ct, coef_counts);
+ vp9_tree_probs_from_distribution(vp9_coef_tree, coef_probs,
+ branch_ct, coef_counts, 0);
fprintf(f, "%s\n {", Comma(pt));
t = 0;
--
⑨