Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guillaume Martres
aom-rav1e
Commits
afb84bb1
Commit
afb84bb1
authored
Jun 07, 2011
by
Scott LaVarnway
Committed by
Code Review
Jun 07, 2011
Browse files
Merge "Removed unused function vp8_treed_read_num"
parents
8c2ee427
1374a4db
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/decoder/treereader.h
View file @
afb84bb1
...
...
@@ -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 */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment