From 20de4c55a2ddfa802a01cc353884d73a934bf7ba Mon Sep 17 00:00:00 2001 From: Andree Buschmann Date: Mon, 23 Aug 2010 23:14:32 +0000 Subject: Fix libfaad error that was introduced with r27225. Noise bursts during playback of several files were reported in the forums. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27868 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/libfaad/specrec.c | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/apps/codecs/libfaad/specrec.c b/apps/codecs/libfaad/specrec.c index d21a923384..02eac11878 100644 --- a/apps/codecs/libfaad/specrec.c +++ b/apps/codecs/libfaad/specrec.c @@ -606,12 +606,19 @@ static uint8_t quant_to_spec(NeAACDecHandle hDecoder, #else wb = wa + bin; - - spec_data[wb+0] = MUL_C((iquant(quant_data[k+0], tab, &error)<=0) + { + spec_data[wb+0] = MUL_C((iquant(quant_data[k+0], tab, &error)<< exp), scf); + spec_data[wb+1] = MUL_C((iquant(quant_data[k+1], tab, &error)<< exp), scf); + spec_data[wb+2] = MUL_C((iquant(quant_data[k+2], tab, &error)<< exp), scf); + spec_data[wb+3] = MUL_C((iquant(quant_data[k+3], tab, &error)<< exp), scf); + } else { + spec_data[wb+0] = MUL_C((iquant(quant_data[k+0], tab, &error)>>-exp), scf); + spec_data[wb+1] = MUL_C((iquant(quant_data[k+1], tab, &error)>>-exp), scf); + spec_data[wb+2] = MUL_C((iquant(quant_data[k+2], tab, &error)>>-exp), scf); + spec_data[wb+3] = MUL_C((iquant(quant_data[k+3], tab, &error)>>-exp), scf); + } //#define SCFS_PRINT #ifdef SCFS_PRINT printf("%d\n", spec_data[gindex+(win*win_inc)+j+bin+0]); -- cgit v1.2.3