From 4ac6a2552b5d0be433d98ac7cee3b10b5b470322 Mon Sep 17 00:00:00 2001 From: Dmitry Kovalev Date: Thu, 5 Dec 2013 18:13:26 -0800 Subject: 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 --- vp9/common/vp9_treecoder.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'vp9/common/vp9_treecoder.h') 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; } -- cgit v1.2.3