Merge remote-tracking branch 'qatar/master'
* qatar/master: binkaudio: set channel layout Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
4d60e5051e
@ -28,6 +28,7 @@
|
|||||||
* http://wiki.multimedia.cx/index.php?title=Bink_Audio
|
* http://wiki.multimedia.cx/index.php?title=Bink_Audio
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "libavutil/channel_layout.h"
|
||||||
#include "avcodec.h"
|
#include "avcodec.h"
|
||||||
#define BITSTREAM_READER_LE
|
#define BITSTREAM_READER_LE
|
||||||
#include "get_bits.h"
|
#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);
|
av_log(avctx, AV_LOG_ERROR, "invalid number of channels: %d\n", avctx->channels);
|
||||||
return AVERROR_INVALIDDATA;
|
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';
|
s->version_b = avctx->extradata_size >= 4 && avctx->extradata[3] == 'b';
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user