[FFmpeg-cvslog] binkaudio: set channel layout

Justin Ruggles git at videolan.org
Mon Nov 12 12:24:13 CET 2012


ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Sat Apr  7 12:10:59 2012 -0400| [faf340f60c18c0af282570eed156ec67c1d98f6f] | committer: Justin Ruggles

binkaudio: set channel layout

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

 libavcodec/binkaudio.c |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/libavcodec/binkaudio.c b/libavcodec/binkaudio.c
index af56526..3a138e5 100644
--- a/libavcodec/binkaudio.c
+++ b/libavcodec/binkaudio.c
@@ -28,6 +28,7 @@
  *  http://wiki.multimedia.cx/index.php?title=Bink_Audio
  */
 
+#include "libavutil/channel_layout.h"
 #include "avcodec.h"
 #define BITSTREAM_READER_LE
 #include "get_bits.h"
@@ -87,6 +88,8 @@ static av_cold int decode_init(AVCodecContext *avctx)
         av_log(avctx, AV_LOG_ERROR, "too many channels: %d\n", avctx->channels);
         return -1;
     }
+    avctx->channel_layout = avctx->channels == 1 ? AV_CH_LAYOUT_MONO :
+                                                   AV_CH_LAYOUT_STEREO;
 
     s->version_b = avctx->extradata && avctx->extradata[3] == 'b';
 



More information about the ffmpeg-cvslog mailing list