diff options
author | Kostya Shishkov | 2008-11-19 14:57:48 +0000 |
---|---|---|
committer | Kostya Shishkov | 2008-11-19 14:57:48 +0000 |
commit | eeee48b26b6cfc2e8595071a806a8641a99cd71f (patch) | |
tree | 05202af64fe8daf76adcc768d9ba92ee47ebe9c6 /libavcodec/apedec.c | |
parent | ff16d6e49557ce7bb939eb6b7e88de221608ffdc (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/apedec.c')
-rw-r--r-- | libavcodec/apedec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/apedec.c b/libavcodec/apedec.c index 82d567f4cf..8746724133 100644 --- a/libavcodec/apedec.c +++ b/libavcodec/apedec.c @@ -199,6 +199,7 @@ static av_cold int ape_decode_init(AVCodecContext * avctx) dsputil_init(&s->dsp, avctx); avctx->sample_fmt = SAMPLE_FMT_S16; + avctx->channel_layout = (avctx->channels==2) ? CH_LAYOUT_STEREO : CH_LAYOUT_MONO; return 0; } |