[FFmpeg-cvslog] rmdec: set channel layout for RA version 3

Justin Ruggles git at videolan.org
Tue Nov 13 11:18:04 CET 2012


ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Sat Apr  7 18:01:27 2012 -0400| [60a585304c285f44a233a4721238d5ad81697627] | committer: Justin Ruggles

rmdec: set channel layout for RA version 3

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=60a585304c285f44a233a4721238d5ad81697627
---

 libavformat/rmdec.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c
index 07d218e..aff21fb 100644
--- a/libavformat/rmdec.c
+++ b/libavformat/rmdec.c
@@ -20,6 +20,7 @@
  */
 
 #include "libavutil/avstring.h"
+#include "libavutil/channel_layout.h"
 #include "libavutil/intreadwrite.h"
 #include "libavutil/dict.h"
 #include "avformat.h"
@@ -140,6 +141,7 @@ static int rm_read_audio_stream_info(AVFormatContext *s, AVIOContext *pb,
             avio_skip(pb, header_size + startpos - avio_tell(pb));
         st->codec->sample_rate = 8000;
         st->codec->channels = 1;
+        st->codec->channel_layout = AV_CH_LAYOUT_MONO;
         st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
         st->codec->codec_id = AV_CODEC_ID_RA_144;
         ast->deint_id = DEINT_ID_INT0;



More information about the ffmpeg-cvslog mailing list