From 415d10d0a500dabbdd9b83ef979f99cd5e9affc7 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Wed, 10 May 2006 11:59:09 +0000 Subject: fix alac decoder on little endian Originally committed as revision 5357 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/alac.c | 1 - 1 file changed, 1 deletion(-) (limited to 'libavcodec/alac.c') 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; -- cgit v1.2.3