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
27af5230
Commit
27af5230
authored
Aug 22, 2016
by
Zoe Liu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a bug in deciding ref frame context in ext-refs
Change-Id: Ie58b98baa870c5d2a5b7193f8fe4f84fd7ec6c16
parent
df73dd0d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vp10/common/pred_common.c
vp10/common/pred_common.c
+1
-1
No files found.
vp10/common/pred_common.c
View file @
27af5230
...
...
@@ -600,7 +600,7 @@ int vp10_get_pred_context_comp_bwdref_p(const VP10_COMMON *cm,
const
MB_MODE_INFO
*
edge_mbmi
=
above_intra
?
left_mbmi
:
above_mbmi
;
if
(
!
has_second_ref
(
edge_mbmi
))
// single pred (1/3)
pred_context
=
1
+
2
*
(
edge_mbmi
->
ref_frame
[
1
]
!=
cm
->
comp_bwd_ref
[
1
]);
pred_context
=
1
+
2
*
(
edge_mbmi
->
ref_frame
[
0
]
!=
cm
->
comp_bwd_ref
[
1
]);
else
// comp pred (1/3)
pred_context
=
1
+
...
...
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