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
3a7bc161
Commit
3a7bc161
authored
Apr 29, 2015
by
Marco
Committed by
Gerrit Code Review
Apr 29, 2015
Browse files
Merge "vpx_temporal_svc_encoder: Keep static_threshold off as default."
parents
4aec4406
ee3d42bf
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
examples/vpx_temporal_svc_encoder.c
examples/vpx_temporal_svc_encoder.c
+1
-1
No files found.
examples/vpx_temporal_svc_encoder.c
View file @
3a7bc161
...
...
@@ -675,7 +675,7 @@ int main(int argc, char **argv) {
if
(
strncmp
(
encoder
->
name
,
"vp8"
,
3
)
==
0
)
{
vpx_codec_control
(
&
codec
,
VP8E_SET_CPUUSED
,
-
speed
);
vpx_codec_control
(
&
codec
,
VP8E_SET_NOISE_SENSITIVITY
,
kDenoiserOff
);
vpx_codec_control
(
&
codec
,
VP8E_SET_STATIC_THRESHOLD
,
1
);
vpx_codec_control
(
&
codec
,
VP8E_SET_STATIC_THRESHOLD
,
0
);
}
else
if
(
strncmp
(
encoder
->
name
,
"vp9"
,
3
)
==
0
)
{
vpx_codec_control
(
&
codec
,
VP8E_SET_CPUUSED
,
speed
);
vpx_codec_control
(
&
codec
,
VP9E_SET_AQ_MODE
,
3
);
...
...
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