summaryrefslogtreecommitdiff
path: root/libavcodec/smacker.c
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2008-11-19 14:57:48 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2008-11-19 14:57:48 +0000
commiteeee48b26b6cfc2e8595071a806a8641a99cd71f (patch)
tree05202af64fe8daf76adcc768d9ba92ee47ebe9c6 /libavcodec/smacker.c
parentff16d6e49557ce7bb939eb6b7e88de221608ffdc (diff)
Add channel layout to several audio decoders I maintain
Originally committed as revision 15884 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/smacker.c')
-rw-r--r--libavcodec/smacker.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/smacker.c b/libavcodec/smacker.c
index 1690518b6b..5de3769e3c 100644
--- a/libavcodec/smacker.c
+++ b/libavcodec/smacker.c
@@ -559,6 +559,7 @@ static av_cold int decode_end(AVCodecContext *avctx)
static av_cold int smka_decode_init(AVCodecContext *avctx)
{
avctx->sample_fmt = SAMPLE_FMT_S16;
+ avctx->channel_layout = (avctx->channels==2) ? CH_LAYOUT_STEREO : CH_LAYOUT_MONO;
return 0;
}