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
Xiph.Org
aom-rav1e
Commits
5cf8a327
Commit
5cf8a327
authored
May 14, 2012
by
Ronald S. Bultje
Committed by
On2 (Google) Code Review
May 14, 2012
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Don't use compound prediction for golden frames based on alt-ref frames." into experimental
parents
f7c0b315
959b296a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
vp8/encoder/encodeframe.c
vp8/encoder/encodeframe.c
+7
-5
No files found.
vp8/encoder/encodeframe.c
View file @
5cf8a327
...
...
@@ -1288,11 +1288,13 @@ void vp8_encode_frame(VP8_COMP *cpi)
else
frame_type
=
2
;
if
(
cpi
->
rd_prediction_type_threshes
[
frame_type
][
1
]
>
cpi
->
rd_prediction_type_threshes
[
frame_type
][
0
]
&&
cpi
->
rd_prediction_type_threshes
[
frame_type
][
1
]
>
cpi
->
rd_prediction_type_threshes
[
frame_type
][
2
]
&&
check_dual_ref_flags
(
cpi
))
if
(
frame_type
==
3
)
pred_type
=
SINGLE_PREDICTION_ONLY
;
else
if
(
cpi
->
rd_prediction_type_threshes
[
frame_type
][
1
]
>
cpi
->
rd_prediction_type_threshes
[
frame_type
][
0
]
&&
cpi
->
rd_prediction_type_threshes
[
frame_type
][
1
]
>
cpi
->
rd_prediction_type_threshes
[
frame_type
][
2
]
&&
check_dual_ref_flags
(
cpi
))
pred_type
=
COMP_PREDICTION_ONLY
;
else
if
(
cpi
->
rd_prediction_type_threshes
[
frame_type
][
0
]
>
cpi
->
rd_prediction_type_threshes
[
frame_type
][
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