diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2008-11-19 14:57:48 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2008-11-19 14:57:48 +0000 |
commit | eeee48b26b6cfc2e8595071a806a8641a99cd71f (patch) | |
tree | 05202af64fe8daf76adcc768d9ba92ee47ebe9c6 /libavcodec/mpc7.c | |
parent | ff16d6e49557ce7bb939eb6b7e88de221608ffdc (diff) | |
download | ffmpeg-eeee48b26b6cfc2e8595071a806a8641a99cd71f.tar.gz |
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/mpc7.c')
-rw-r--r-- | libavcodec/mpc7.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpc7.c b/libavcodec/mpc7.c index 565b8589ec..2db417280c 100644 --- a/libavcodec/mpc7.c +++ b/libavcodec/mpc7.c @@ -109,6 +109,7 @@ static av_cold int mpc7_decode_init(AVCodecContext * avctx) } vlc_initialized = 1; avctx->sample_fmt = SAMPLE_FMT_S16; + avctx->channel_layout = (avctx->channels==2) ? CH_LAYOUT_STEREO : CH_LAYOUT_MONO; return 0; } |