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
Raphael Zumer
aom-rav1e
Commits
b0e10a2d
Commit
b0e10a2d
authored
Jan 26, 2016
by
Tristan Matthews
Committed by
Gerrit Code Review
Jan 26, 2016
Browse files
Merge "bitstream: fix logical-not-parentheses warning"
parents
a87e8751
fa9403b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp10/encoder/bitstream.c
View file @
b0e10a2d
...
...
@@ -312,7 +312,7 @@ static void write_ref_frames(const VP10_COMMON *cm, const MACROBLOCKD *xd,
if
(
cm
->
reference_mode
==
REFERENCE_MODE_SELECT
)
{
vpx_write
(
w
,
is_compound
,
vp10_get_reference_mode_prob
(
cm
,
xd
));
}
else
{
assert
(
!
is_compound
==
(
cm
->
reference_mode
==
SINGLE_REFERENCE
));
assert
(
(
!
is_compound
)
==
(
cm
->
reference_mode
==
SINGLE_REFERENCE
));
}
if
(
is_compound
)
{
...
...
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