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
e0b3e213
Commit
e0b3e213
authored
Nov 26, 2014
by
Marco
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
temporal_svc encoder: Change default setting for layering_mode = 0.
Change-Id: I5f723ada144d0bd82ee700ef28a4916fd64ba5e4
parent
10f62d07
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 @
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