Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stefan Westerfeld
ffmpeg
Commits
13fe148c
Commit
13fe148c
authored
Apr 11, 2022
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/f_ebur128: fix typos for swr chlayouts
parent
3bbbb09a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
f_ebur128.c
libavfilter/f_ebur128.c
+2
-2
No files found.
libavfilter/f_ebur128.c
View file @
13fe148c
...
...
@@ -487,11 +487,11 @@ static int config_audio_output(AVFilterLink *outlink)
!
ebur128
->
true_peaks_per_frame
||
!
ebur128
->
swr_ctx
)
return
AVERROR
(
ENOMEM
);
av_opt_set_chlayout
(
ebur128
->
swr_ctx
,
"in_ch
_layout"
,
&
outlink
->
ch_layout
,
0
);
av_opt_set_chlayout
(
ebur128
->
swr_ctx
,
"in_ch
layout"
,
&
outlink
->
ch_layout
,
0
);
av_opt_set_int
(
ebur128
->
swr_ctx
,
"in_sample_rate"
,
outlink
->
sample_rate
,
0
);
av_opt_set_sample_fmt
(
ebur128
->
swr_ctx
,
"in_sample_fmt"
,
outlink
->
format
,
0
);
av_opt_set_chlayout
(
ebur128
->
swr_ctx
,
"out_ch
_layout"
,
&
outlink
->
ch_layout
,
0
);
av_opt_set_chlayout
(
ebur128
->
swr_ctx
,
"out_ch
layout"
,
&
outlink
->
ch_layout
,
0
);
av_opt_set_int
(
ebur128
->
swr_ctx
,
"out_sample_rate"
,
192000
,
0
);
av_opt_set_sample_fmt
(
ebur128
->
swr_ctx
,
"out_sample_fmt"
,
outlink
->
format
,
0
);
...
...
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