mirror of https://git.ffmpeg.org/ffmpeg.git
Remove redundant use of numchannels since it is 1 for mono.
Originally committed as revision 21655 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
e243eee43f
commit
b53ae8b6b1
|
@ -647,7 +647,7 @@ static int alac_decode_frame(AVCodecContext *avctx,
|
|||
int i;
|
||||
for (i = 0; i < outputsamples; i++) {
|
||||
int16_t sample = alac->outputsamples_buffer[0][i];
|
||||
((int16_t*)outbuffer)[i * alac->numchannels] = sample;
|
||||
((int16_t*)outbuffer)[i] = sample;
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue