summaryrefslogtreecommitdiff
path: root/vp8/decoder/treereader.h
diff options
context:
space:
mode:
authorScott LaVarnway <slavarnway@google.com>2011-06-07 09:32:51 -0400
committerScott LaVarnway <slavarnway@google.com>2011-06-07 09:32:51 -0400
commit1374a4db3b02e919a7830ba7ea56831d120b3826 (patch)
tree347f51b738e9a74f9d361386b7e4d796843fdf42 /vp8/decoder/treereader.h
parentf1d6cc79e43f0066632f19c1854ca365086b712b (diff)
downloadlibvpx-1374a4db3b02e919a7830ba7ea56831d120b3826.tar
libvpx-1374a4db3b02e919a7830ba7ea56831d120b3826.tar.gz
libvpx-1374a4db3b02e919a7830ba7ea56831d120b3826.tar.bz2
libvpx-1374a4db3b02e919a7830ba7ea56831d120b3826.zip
Removed unused function vp8_treed_read_num
Change-Id: Id66e70540ee7345876f099139887c1843093907f
Diffstat (limited to 'vp8/decoder/treereader.h')
-rw-r--r--vp8/decoder/treereader.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/vp8/decoder/treereader.h b/vp8/decoder/treereader.h
index b50a4d2ff..238ff8536 100644
--- a/vp8/decoder/treereader.h
+++ b/vp8/decoder/treereader.h
@@ -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 */