[FFmpeg-devel] [PATCH] Use channel count if channel layout is undefined
Marcin Gorzel
gorzel at google.com
Fri Jul 6 17:15:58 EEST 2018
Rematrixing supports up to 64 channels but there is only a limited number of channel layouts defined. Currently, in/out channel count is obtained from the channel layout so if the channel layout is undefined (e.g. for 9, 10, 11 channels etc.) the in/out channel count will be 0 and the rematrixing will fail. This change adds a check if the channel layout is non-zero, and if not, prefers to use the in|out_ch_count instead. This seems to be related to ticket #6790.
---
libswresample/rematrix.c | 18 ++++++++++++------
libswresample/x86/rematrix_init.c | 8 ++++++--
2 files changed, 18 insertions(+), 8 deletions(-)
diff --git a/libswresample/rematrix.c b/libswresample/rematrix.c
index 8227730056..45e84eb2df 100644
--- a/libswresample/rematrix.c
+++ b/libswresample/rematrix.c
@@ -69,10 +69,12 @@ int swr_set_matrix(struct SwrContext *s, const double *matrix, int stride)
return AVERROR(EINVAL);
memset(s->matrix, 0, sizeof(s->matrix));
memset(s->matrix_flt, 0, sizeof(s->matrix_flt));
- nb_in = (s->user_in_ch_count > 0) ? s->user_in_ch_count :
- av_get_channel_layout_nb_channels(s->user_in_ch_layout);
- nb_out = (s->user_out_ch_count > 0) ? s->user_out_ch_count :
- av_get_channel_layout_nb_channels(s->user_out_ch_layout);
+ nb_in = s->user_in_ch_layout != 0
+ ? av_get_channel_layout_nb_channels(s->user_in_ch_layout)
+ : FFMIN(s->user_in_ch_count, SWR_CH_MAX);
+ nb_out = s->user_out_ch_layout != 0
+ ? av_get_channel_layout_nb_channels(s->user_out_ch_layout)
+ : FFMIN(s->user_out_ch_count, SWR_CH_MAX);
for (out = 0; out < nb_out; out++) {
for (in = 0; in < nb_in; in++)
s->matrix_flt[out][in] = s->matrix[out][in] = matrix[in];
@@ -384,8 +386,12 @@ av_cold static int auto_matrix(SwrContext *s)
av_cold int swri_rematrix_init(SwrContext *s){
int i, j;
- int nb_in = av_get_channel_layout_nb_channels(s->in_ch_layout);
- int nb_out = av_get_channel_layout_nb_channels(s->out_ch_layout);
+ int nb_in = s->in_ch_layout != 0
+ ? av_get_channel_layout_nb_channels(s->in_ch_layout)
+ : FFMIN(s->user_in_ch_count, SWR_CH_MAX);
+ int nb_out = s->out_ch_layout != 0
+ ? av_get_channel_layout_nb_channels(s->out_ch_layout)
+ : FFMIN(s->user_out_ch_count, SWR_CH_MAX);
s->mix_any_f = NULL;
diff --git a/libswresample/x86/rematrix_init.c b/libswresample/x86/rematrix_init.c
index d71b41a73e..f3363567cd 100644
--- a/libswresample/x86/rematrix_init.c
+++ b/libswresample/x86/rematrix_init.c
@@ -33,8 +33,12 @@ D(int16, sse2)
av_cold int swri_rematrix_init_x86(struct SwrContext *s){
#if HAVE_X86ASM
int mm_flags = av_get_cpu_flags();
- int nb_in = av_get_channel_layout_nb_channels(s->in_ch_layout);
- int nb_out = av_get_channel_layout_nb_channels(s->out_ch_layout);
+ int nb_in = s->in_ch_layout != 0
+ ? av_get_channel_layout_nb_channels(s->in_ch_layout)
+ : FFMIN(s->user_in_ch_count, SWR_CH_MAX);
+ int nb_out = s->out_ch_layout != 0
+ ? av_get_channel_layout_nb_channels(s->out_ch_layout)
+ : FFMIN(s->user_out_ch_count, SWR_CH_MAX);
int num = nb_in * nb_out;
int i,j;
--
2.18.0.399.gad0ab374a1-goog
More information about the ffmpeg-devel
mailing list