shithub: libvpx

Download patch

ref: afb84bb1cc9f2c096abf81407e2c44a9bd8c60c1
parent: 8c2ee4273c7d091ee1fc40a8b1d9daa995369d71
parent: 1374a4db3b02e919a7830ba7ea56831d120b3826
author: Scott LaVarnway <slavarnway@google.com>
date: Tue Jun 7 02:51:24 EDT 2011

Merge "Removed unused function vp8_treed_read_num"

--- a/vp8/decoder/treereader.h
+++ b/vp8/decoder/treereader.h
@@ -38,27 +38,4 @@
     return -i;
 }
 
-
-/* Variant reads a binary number given distributions on each bit.
-   Note that tree is arbitrary; probability of decoding a zero
-   may or may not depend on previously decoded bits. */
-
-static int vp8_treed_read_num(
-    vp8_reader *const r,        /* !!! must return a 0 or 1 !!! */
-    vp8_tree t,
-    const vp8_prob *const p
-)
-{
-    vp8_tree_index i = 0;
-    int v = 0, b;
-
-    do
-    {
-        b = vp8_read(r, p[i>>1]);
-        v = (v << 1) + b;
-    }
-    while ((i = t[i+b]) > 0);
-
-    return v;
-}
 #endif /* tree_reader_h */