Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-11-12 15:18:53 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-11-12 15:18:58 +0400
commit4d60e5051e66c6e79645efec1376b98caf41ad03 (patch)
treecd3cac5dce89799a1f1f0254ba33f73ff35167d0 /libavcodec/binkaudio.c
parent8c0a14d221af1add009829d65a5beb0e5d5d8770 (diff)
parentfaf340f60c18c0af282570eed156ec67c1d98f6f (diff)
Merge remote-tracking branch 'qatar/master'
* qatar/master: binkaudio: set channel layout Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/binkaudio.c')
-rw-r--r--libavcodec/binkaudio.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/binkaudio.c b/libavcodec/binkaudio.c
index 000895b9e3..a1a91ebfb0 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, "invalid number of channels: %d\n", avctx->channels);
return AVERROR_INVALIDDATA;
}
+ avctx->channel_layout = avctx->channels == 1 ? AV_CH_LAYOUT_MONO :
+ AV_CH_LAYOUT_STEREO;
s->version_b = avctx->extradata_size >= 4 && avctx->extradata[3] == 'b';