summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_treecoder.h
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2013-12-05 18:13:26 -0800
committerDmitry Kovalev <dkovalev@google.com>2013-12-05 18:13:26 -0800
commit4ac6a2552b5d0be433d98ac7cee3b10b5b470322 (patch)
treeaf4bc45a123f977516df2995963e1e939bd2d35f /vp9/common/vp9_treecoder.h
parentd72c847fe80a1546e4dcf863e197523904e82642 (diff)
downloadlibvpx-4ac6a2552b5d0be433d98ac7cee3b10b5b470322.tar
libvpx-4ac6a2552b5d0be433d98ac7cee3b10b5b470322.tar.gz
libvpx-4ac6a2552b5d0be433d98ac7cee3b10b5b470322.tar.bz2
libvpx-4ac6a2552b5d0be433d98ac7cee3b10b5b470322.zip
Moving vp9_tree_probs_from_distribution() to encoder.
Writing custom coeff branch count calculation (which is much clearer) in adapt_coef_probs() function. Removing vp9_treecoder.c file. Change-Id: I8880fb7a39996c8bcf6cd0acf9898a8c712ba91f
Diffstat (limited to 'vp9/common/vp9_treecoder.h')
-rw-r--r--vp9/common/vp9_treecoder.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/vp9/common/vp9_treecoder.h b/vp9/common/vp9_treecoder.h
index bbe4e8f6a..ed8c74ae0 100644
--- a/vp9/common/vp9_treecoder.h
+++ b/vp9/common/vp9_treecoder.h
@@ -39,11 +39,6 @@ typedef const vp9_tree_index vp9_tree[];
taken for each node on the tree; this facilitiates decisions as to
probability updates. */
-void vp9_tree_probs_from_distribution(vp9_tree tree,
- unsigned int branch_ct[ /* n - 1 */ ][2],
- const unsigned int num_events[ /* n */ ]);
-
-
static INLINE vp9_prob clip_prob(int p) {
return (p > 255) ? 255u : (p < 1) ? 1u : p;
}