Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
065851ff
Commit
065851ff
authored
Jun 21, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lswr/rematrix: specify explicitly the name of the unsupported channel layouts
Help debugging.
parent
6d887eca
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
rematrix.c
libswresample/rematrix.c
+5
-2
No files found.
libswresample/rematrix.c
View file @
065851ff
...
@@ -125,6 +125,7 @@ static int auto_matrix(SwrContext *s)
...
@@ -125,6 +125,7 @@ static int auto_matrix(SwrContext *s)
double
matrix
[
64
][
64
]
=
{{
0
}};
double
matrix
[
64
][
64
]
=
{{
0
}};
int64_t
unaccounted
=
s
->
in_ch_layout
&
~
s
->
out_ch_layout
;
int64_t
unaccounted
=
s
->
in_ch_layout
&
~
s
->
out_ch_layout
;
double
maxcoef
=
0
;
double
maxcoef
=
0
;
char
buf
[
128
];
memset
(
s
->
matrix
,
0
,
sizeof
(
s
->
matrix
));
memset
(
s
->
matrix
,
0
,
sizeof
(
s
->
matrix
));
for
(
i
=
0
;
i
<
64
;
i
++
){
for
(
i
=
0
;
i
<
64
;
i
++
){
...
@@ -133,11 +134,13 @@ static int auto_matrix(SwrContext *s)
...
@@ -133,11 +134,13 @@ static int auto_matrix(SwrContext *s)
}
}
if
(
!
sane_layout
(
s
->
in_ch_layout
)){
if
(
!
sane_layout
(
s
->
in_ch_layout
)){
av_log
(
s
,
AV_LOG_ERROR
,
"Input channel layout isnt supported
\n
"
);
av_get_channel_layout_string
(
buf
,
sizeof
(
buf
),
-
1
,
s
->
in_ch_layout
);
av_log
(
s
,
AV_LOG_ERROR
,
"Input channel layout '%s' is not supported
\n
"
,
buf
);
return
AVERROR
(
EINVAL
);
return
AVERROR
(
EINVAL
);
}
}
if
(
!
sane_layout
(
s
->
out_ch_layout
)){
if
(
!
sane_layout
(
s
->
out_ch_layout
)){
av_log
(
s
,
AV_LOG_ERROR
,
"Output channel layout isnt supported
\n
"
);
av_get_channel_layout_string
(
buf
,
sizeof
(
buf
),
-
1
,
s
->
out_ch_layout
);
av_log
(
s
,
AV_LOG_ERROR
,
"Output channel layout '%s' is not supported
\n
"
,
buf
);
return
AVERROR
(
EINVAL
);
return
AVERROR
(
EINVAL
);
}
}
...
...
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