Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
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
Hide 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