Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Yushin Cho
aom-rav1e
Commits
fa9403b8
Commit
fa9403b8
authored
Jan 22, 2016
by
Tristan Matthews
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bitstream: fix logical-not-parentheses warning
Change-Id: I8b70f9251a23707f2ef83889403d40a7796533a7
parent
78cfab4b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vp10/encoder/bitstream.c
vp10/encoder/bitstream.c
+1
-1
No files found.
vp10/encoder/bitstream.c
View file @
fa9403b8
...
...
@@ -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