Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guillaume Martres
aom-rav1e
Commits
d7e09b6a
Commit
d7e09b6a
authored
Dec 15, 2011
by
Yunqing Wang
Committed by
Gerrit Code Review
Dec 15, 2011
Browse files
Merge "Force realtime version 1 streams to only use simple loopfilter"
parents
72f459c7
55fbdd58
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/encoder/onyx_if.c
View file @
d7e09b6a
...
...
@@ -1196,10 +1196,17 @@ void vp8_set_speed_features(VP8_COMP *cpi)
cpi
->
mode_check_freq
[
THR_NEW1
]
=
1
<<
(
Tmp
-
1
);
}
cm
->
filter_type
=
NORMAL_LOOPFILTER
;
if
(
cm
->
version
==
0
)
{
cm
->
filter_type
=
NORMAL_LOOPFILTER
;
if
(
Speed
>=
14
)
if
(
Speed
>=
14
)
cm
->
filter_type
=
SIMPLE_LOOPFILTER
;
}
else
{
cm
->
filter_type
=
SIMPLE_LOOPFILTER
;
}
if
(
Speed
>=
15
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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