Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
e0b3e213
Commit
e0b3e213
authored
Nov 26, 2014
by
Marco
Browse files
temporal_svc encoder: Change default setting for layering_mode = 0.
Change-Id: I5f723ada144d0bd82ee700ef28a4916fd64ba5e4
parent
10f62d07
Changes
1
Hide whitespace changes
Inline
Side-by-side
examples/vpx_temporal_svc_encoder.c
View file @
e0b3e213
...
...
@@ -671,7 +671,7 @@ int main(int argc, char **argv) {
vpx_codec_control
(
&
codec
,
VP9E_SET_AQ_MODE
,
3
);
vpx_codec_control
(
&
codec
,
VP9E_SET_FRAME_PERIODIC_BOOST
,
0
);
vpx_codec_control
(
&
codec
,
VP9E_SET_NOISE_SENSITIVITY
,
0
);
if
(
vpx_codec_control
(
&
codec
,
VP9E_SET_SVC
,
1
))
{
if
(
vpx_codec_control
(
&
codec
,
VP9E_SET_SVC
,
layering_mode
>
0
?
1
:
0
))
{
die_codec
(
&
codec
,
"Failed to set SVC"
);
}
}
...
...
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