Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
libvpx
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
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
vp8/encoder/onyx_if.c
vp8/encoder/onyx_if.c
+9
-2
No files found.
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
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