]> granicus.if.org Git - libvpx/commitdiff
Removed unused function vp8_treed_read_num
authorScott LaVarnway <slavarnway@google.com>
Tue, 7 Jun 2011 13:32:51 +0000 (09:32 -0400)
committerScott LaVarnway <slavarnway@google.com>
Tue, 7 Jun 2011 13:32:51 +0000 (09:32 -0400)
Change-Id: Id66e70540ee7345876f099139887c1843093907f

vp8/decoder/treereader.h

index b50a4d2ff39f5af53290862e7f95ae40cd8022af..238ff853612ed588ba9bb19800ced203bef567f1 100644 (file)
@@ -38,27 +38,4 @@ static int vp8_treed_read(
     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 */