Commit 415d10d0 authored by Baptiste Coudurier's avatar Baptiste Coudurier

fix alac decoder on little endian

Originally committed as revision 5357 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 2d661e07
......@@ -602,7 +602,6 @@ static int alac_decode_frame(AVCodecContext *avctx,
int i;
for (i = 0; i < outputsamples; i++) {
int16_t sample = alac->outputsamples_buffer_a[i];
sample = be2me_16(sample);
((int16_t*)outbuffer)[i * alac->numchannels] = sample;
}
break;
......
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