Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
aom-rav1e
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
aom-rav1e
Commits
1374a4db
Commit
1374a4db
authored
13 years ago
by
Scott LaVarnway
Browse files
Options
Downloads
Patches
Plain Diff
Removed unused function vp8_treed_read_num
Change-Id: Id66e70540ee7345876f099139887c1843093907f
parent
f1d6cc79
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
vp8/decoder/treereader.h
+0
-23
0 additions, 23 deletions
vp8/decoder/treereader.h
with
0 additions
and
23 deletions
vp8/decoder/treereader.h
+
0
−
23
View file @
1374a4db
...
...
@@ -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 */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment