mirror of https://git.ffmpeg.org/ffmpeg.git
fix alac decoder on little endian
Originally committed as revision 5357 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
2d661e073e
commit
415d10d0a5
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue