diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-05-10 11:59:09 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-05-10 11:59:09 +0000 |
commit | 415d10d0a500dabbdd9b83ef979f99cd5e9affc7 (patch) | |
tree | 1fd6dd168b2f4e26c828b6d35797025a6aa228c5 /libavcodec/alac.c | |
parent | 2d661e073e27124545a33642fca1a9db20afdd7e (diff) | |
download | ffmpeg-415d10d0a500dabbdd9b83ef979f99cd5e9affc7.tar.gz |
fix alac decoder on little endian
Originally committed as revision 5357 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/alac.c')
-rw-r--r-- | libavcodec/alac.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/alac.c b/libavcodec/alac.c index ab2ffb9e59..f0de9e9001 100644 --- a/libavcodec/alac.c +++ b/libavcodec/alac.c @@ -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; |