Commit 4efbd755 authored by Peter Ross's avatar Peter Ross

Fix PCM_S16LE_PLANAR channel-address calculation bug introduced in r14659.

Originally committed as revision 14831 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6ec87fbd
...@@ -384,8 +384,8 @@ static int pcm_decode_frame(AVCodecContext *avctx, ...@@ -384,8 +384,8 @@ static int pcm_decode_frame(AVCodecContext *avctx,
case CODEC_ID_PCM_S16LE_PLANAR: case CODEC_ID_PCM_S16LE_PLANAR:
n /= avctx->channels; n /= avctx->channels;
for(c=0;c<avctx->channels;c++) for(c=0;c<avctx->channels;c++)
src2[c] = &src[c*n]; src2[c] = &src[c*n*2];
for(n>>=1;n>0;n--) for(;n>0;n--)
for(c=0;c<avctx->channels;c++) for(c=0;c<avctx->channels;c++)
*samples++ = bytestream_get_le16(&src2[c]); *samples++ = bytestream_get_le16(&src2[c]);
src = src2[avctx->channels-1]; src = src2[avctx->channels-1];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment