Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
9f37d890
Commit
9f37d890
authored
Nov 04, 2013
by
Yaowu Xu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
optimize decode_bool operation
Change-Id: I7fe44633d29046ddd38c88c00e8520d27ac748bf
parent
dde8069e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vp9/decoder/vp9_dboolhuff.h
vp9/decoder/vp9_dboolhuff.h
+1
-1
No files found.
vp9/decoder/vp9_dboolhuff.h
View file @
9f37d890
...
...
@@ -44,7 +44,7 @@ static int vp9_read(vp9_reader *br, int probability) {
VP9_BD_VALUE
bigsplit
;
int
count
;
unsigned
int
range
;
unsigned
int
split
=
1
+
(
((
br
->
range
-
1
)
*
probability
)
>>
8
)
;
unsigned
int
split
=
((
br
->
range
*
probability
)
+
(
256
-
probability
)
)
>>
8
;
if
(
br
->
count
<
0
)
vp9_reader_fill
(
br
);
...
...
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