[FFmpeg-devel] [PATCH]Multiple channel layouts in one file

Carl Eugen Hoyos cehoyos at ag.or.at
Wed Jun 29 18:48:59 CEST 2011


Hi!

I was convinced this has already been fixed, but this patch is still necessary 
for me if an input file contains multiple channel_layouts.

Please comment, Carl Eugen
-------------- next part --------------
diff --git a/ffmpeg.c b/ffmpeg.c
index f2716a3..295d710 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2282,8 +2282,10 @@ static int transcode(AVFormatContext **output_files,
                 }
                 choose_sample_rate(ost->st, ost->enc);
                 codec->time_base = (AVRational){1, codec->sample_rate};
-                if (!codec->channels)
+                if (!codec->channels) {
                     codec->channels = icodec->channels;
+                    codec->channel_layout = icodec->channel_layout;
+                }
                 if (av_get_channel_layout_nb_channels(codec->channel_layout) != codec->channels)
                     codec->channel_layout = 0;
                 ost->audio_resample = codec->sample_rate != icodec->sample_rate || audio_sync_method > 1;


More information about the ffmpeg-devel mailing list