1 --- libfaad2.orig/bits.h 2006-03-16 20:15:04.000000000 +0100
2 +++ libfaad2/bits.h 2006-03-16 20:37:21.000000000 +0100
5 #if defined (_WIN32) && !defined(_WIN32_WCE) && !defined(__MINGW32__)
6 #define BSWAP(a) __asm mov eax,a __asm bswap eax __asm mov a, eax
7 -#elif defined(LINUX) || defined(DJGPP) || defined(__MINGW32__)
8 +#elif defined(LINUX) || defined(DJGPP)
9 #define BSWAP(a) __asm__ ( "bswapl %0\n" : "=r" (a) : "0" (a) )
12 --- libfaad2.orig/common.h 2006-03-16 20:15:04.000000000 +0100
13 +++ libfaad2/common.h 2006-03-16 20:56:56.000000000 +0100
17 # include "../config.h"
20 +/* Allow build on Cygwin*/
21 +#if defined(__CYGWIN__)
22 +#define __STRICT_ANSI__
25 #define INLINE __inline
26 #if 0 //defined(_WIN32) && !defined(_WIN32_WCE)
27 #define ALIGN __declspec(align(16))
29 /* Use if target platform has address generators with autoincrement */
30 //#define PREFER_POINTERS
33 +#if defined(_WIN32_WCE) || defined(__arm__) || defined(__avr32__)
52 typedef unsigned __int64 uint64_t;
53 typedef unsigned __int32 uint32_t;
54 typedef unsigned __int16 uint16_t;
56 typedef __int32 int32_t;
57 typedef __int16 int16_t;
58 typedef __int8 int8_t;
60 +#include <inttypes.h>
63 typedef float float32_t;
69 -#ifdef WORDS_BIGENDIAN
71 #define ARCH_IS_BIG_ENDIAN
78 - #if defined(_WIN32) && !defined(__MINGW32__)
79 + #if defined(_WIN32) && !defined(__MINGW32__) && !HAVE_LRINTF
81 static INLINE int lrintf(float f)
87 - #elif (defined(__i386__) && defined(__GNUC__))
88 + #elif (defined(__i386__) && defined(__GNUC__)) && !HAVE_LRINTF
90 // from http://www.stereopsis.com/FPU.html
91 static INLINE int lrintf(float f)
101 # define _ISOC9X_SOURCE 1
103 # define __USE_ISOC99 1
111 --- libfaad2.orig/output.c 2006-03-16 20:15:04.000000000 +0100
112 +++ libfaad2/output.c 2006-04-18 19:50:26.000000000 +0200
117 -void* output_to_PCM(NeAACDecHandle hDecoder,
118 +void* output_to_PCM_sux(NeAACDecHandle hDecoder,
119 real_t **input, void *sample_buffer, uint8_t channels,
120 uint16_t frame_len, uint8_t format)
123 return sample_buffer;
126 +void* output_to_PCM(NeAACDecHandle hDecoder,
127 + real_t **input, void *sample_buffer, uint8_t channels,
128 + uint16_t frame_len, uint8_t format)
132 + int16_t *short_sample_buffer = (int16_t*)sample_buffer;
133 + real_t *ch0 = input[hDecoder->internal_channel[0]];
134 + real_t *ch1 = input[hDecoder->internal_channel[1]];
135 + real_t *ch2 = input[hDecoder->internal_channel[2]];
136 + real_t *ch3 = input[hDecoder->internal_channel[3]];
137 + real_t *ch4 = input[hDecoder->internal_channel[4]];
139 + if (format != FAAD_FMT_16BIT)
140 + return output_to_PCM_sux(hDecoder, input, sample_buffer, channels, frame_len, format);
142 + if (hDecoder->downMatrix) {
143 + for(i = 0; i < frame_len; i++)
146 + tmp = (ch1[i] + ((ch0[i]+ch3[i])>>1) + ((ch0[i]+ch3[i])>>2) + (1<<(REAL_BITS))) >> (REAL_BITS+1);
147 + if ((tmp+0x8000) & ~0xffff) tmp = ~(tmp>>31)-0x8000;
148 + short_sample_buffer[0] = tmp;
149 + tmp = (ch2[i] + ((ch0[i]+ch4[i])>>1) + ((ch0[i]+ch4[i])>>2) + (1<<(REAL_BITS))) >> (REAL_BITS+1);
150 + if ((tmp+0x8000) & ~0xffff) tmp = ~(tmp>>31)-0x8000;
151 + short_sample_buffer[1] = tmp;
152 + short_sample_buffer += channels;
154 + return sample_buffer;
157 + /* Copy output to a standard PCM buffer */
158 + for(i = 0; i < frame_len; i++)
160 + for (ch = 0; ch < channels; ch++)
162 + int32_t tmp = input[hDecoder->internal_channel[ch]][i];
163 + tmp += (1 << (REAL_BITS-1));
165 + if ((tmp+0x8000) & ~0xffff) tmp = ~(tmp>>31)-0x8000;
166 + *(short_sample_buffer++) = tmp;
170 + return sample_buffer;
174 --- libfaad2.orig/ps_dec.c 2006-03-16 20:15:04.000000000 +0100
175 +++ libfaad2/ps_dec.c 2006-04-18 20:29:38.000000000 +0200
178 /* static function declarations */
179 static void ps_data_decode(ps_info *ps);
180 -static hyb_info *hybrid_init();
181 +static hyb_info *hybrid_init(void);
182 static void channel_filter2(hyb_info *hyb, uint8_t frame_len, const real_t *filter,
183 qmf_t *buffer, qmf_t **X_hybrid);
184 static void INLINE DCT3_4_unscaled(real_t *y, real_t *x);
189 -static hyb_info *hybrid_init()
190 +static hyb_info *hybrid_init(void)
194 @@ -1935,8 +1938,8 @@
195 /* main Parametric Stereo decoding function */
196 uint8_t ps_decode(ps_info *ps, qmf_t X_left[38][64], qmf_t X_right[38][64])
198 - qmf_t X_hybrid_left[32][32] = {{0}};
199 - qmf_t X_hybrid_right[32][32] = {{0}};
200 + qmf_t X_hybrid_left[32][32] = {{{0}}};
201 + qmf_t X_hybrid_right[32][32] = {{{0}}};
203 /* delta decoding of the bitstream data */
205 --- libfaad2.orig/sbr_dec.c 2006-03-16 20:15:04.000000000 +0100
206 +++ libfaad2/sbr_dec.c 2006-04-18 20:33:57.000000000 +0200
209 uint8_t dont_process = 0;
211 - ALIGN qmf_t X_left[38][64] = {{0}};
212 - ALIGN qmf_t X_right[38][64] = {{0}}; /* must set this to 0 */
213 + ALIGN qmf_t X_left[38][64] = {{{0}}};
214 + ALIGN qmf_t X_right[38][64] = {{{0}}}; /* must set this to 0 */
218 --- libfaad2.orig/specrec.c 2006-03-16 20:15:04.000000000 +0100
219 +++ libfaad2/specrec.c 2006-04-18 20:38:09.000000000 +0200
220 @@ -673,29 +673,19 @@
221 /* MAIN object type prediction */
222 if (hDecoder->object_type == MAIN)
224 - /* allocate the state only when needed */
225 - if (hDecoder->pred_stat[channel] == NULL)
227 - hDecoder->pred_stat[channel] = (pred_state*)faad_malloc(hDecoder->frameLength * sizeof(pred_state));
228 + hDecoder->pred_stat[channel] = (pred_state*)realloc(hDecoder->pred_stat[channel], hDecoder->frameLength * sizeof(pred_state));
229 reset_all_predictors(hDecoder->pred_stat[channel], hDecoder->frameLength);
235 if (is_ltp_ot(hDecoder->object_type))
237 - /* allocate the state only when needed */
238 - if (hDecoder->lt_pred_stat[channel] == NULL)
240 - hDecoder->lt_pred_stat[channel] = (int16_t*)faad_malloc(hDecoder->frameLength*4 * sizeof(int16_t));
241 + hDecoder->lt_pred_stat[channel] = (int16_t*)realloc(hDecoder->lt_pred_stat[channel], hDecoder->frameLength*4 * sizeof(int16_t));
242 memset(hDecoder->lt_pred_stat[channel], 0, hDecoder->frameLength*4 * sizeof(int16_t));
247 - if (hDecoder->time_out[channel] == NULL)
251 hDecoder->sbr_alloced[hDecoder->fr_ch_ele] = 0;
252 @@ -706,41 +696,28 @@
253 hDecoder->sbr_alloced[hDecoder->fr_ch_ele] = 1;
256 - hDecoder->time_out[channel] = (real_t*)faad_malloc(mul*hDecoder->frameLength*sizeof(real_t));
257 + hDecoder->time_out[channel] = (real_t*)realloc(hDecoder->time_out[channel], mul*hDecoder->frameLength*sizeof(real_t));
258 memset(hDecoder->time_out[channel], 0, mul*hDecoder->frameLength*sizeof(real_t));
260 #if (defined(PS_DEC) || defined(DRM_PS))
261 if (output_channels == 2)
263 - if (hDecoder->time_out[channel+1] == NULL)
265 - hDecoder->time_out[channel+1] = (real_t*)faad_malloc(mul*hDecoder->frameLength*sizeof(real_t));
266 + hDecoder->time_out[channel+1] = (real_t*)realloc(hDecoder->time_out[channel+1], mul*hDecoder->frameLength*sizeof(real_t));
267 memset(hDecoder->time_out[channel+1], 0, mul*hDecoder->frameLength*sizeof(real_t));
272 - if (hDecoder->fb_intermed[channel] == NULL)
274 - hDecoder->fb_intermed[channel] = (real_t*)faad_malloc(hDecoder->frameLength*sizeof(real_t));
275 + hDecoder->fb_intermed[channel] = (real_t*)realloc(hDecoder->fb_intermed[channel], hDecoder->frameLength*sizeof(real_t));
276 memset(hDecoder->fb_intermed[channel], 0, hDecoder->frameLength*sizeof(real_t));
280 if (hDecoder->object_type == SSR)
282 - if (hDecoder->ssr_overlap[channel] == NULL)
284 - hDecoder->ssr_overlap[channel] = (real_t*)faad_malloc(2*hDecoder->frameLength*sizeof(real_t));
285 - memset(hDecoder->ssr_overlap[channel], 0, 2*hDecoder->frameLength*sizeof(real_t));
287 - if (hDecoder->prev_fmd[channel] == NULL)
290 - hDecoder->prev_fmd[channel] = (real_t*)faad_malloc(2*hDecoder->frameLength*sizeof(real_t));
291 + hDecoder->ssr_overlap[channel] = (real_t*)realloc(hDecoder->ssr_overlap[channel], 2*hDecoder->frameLength*sizeof(real_t));
292 + memset(hDecoder->ssr_overlap[channel], 0, 2*hDecoder->frameLength*sizeof(real_t));
293 + hDecoder->prev_fmd[channel] = (real_t*)realloc(hDecoder->prev_fmd[channel], 2*hDecoder->frameLength*sizeof(real_t));
294 for (k = 0; k < 2*hDecoder->frameLength; k++)
295 hDecoder->prev_fmd[channel][k] = REAL_CONST(-1);
300 @@ -865,22 +842,14 @@
302 /* always allocate 2 channels, PS can always "suddenly" turn up */
303 #if (defined(PS_DEC) || defined(DRM_PS))
304 - output_channels = 2;
305 + output_channels = hDecoder->ps_used[hDecoder->fr_ch_ele] ? 2 : 1;
310 - if (hDecoder->element_output_channels[hDecoder->fr_ch_ele] == 0)
312 - /* element_output_channels not set yet */
313 + if (hDecoder->element_alloced[hDecoder->fr_ch_ele] == 0 ||
314 + hDecoder->element_output_channels[hDecoder->fr_ch_ele] < output_channels) {
315 hDecoder->element_output_channels[hDecoder->fr_ch_ele] = output_channels;
316 - } else if (hDecoder->element_output_channels[hDecoder->fr_ch_ele] != output_channels) {
317 - /* element inconsistency */
321 - if (hDecoder->element_alloced[hDecoder->fr_ch_ele] == 0)
323 retval = allocate_single_channel(hDecoder, sce->channel, output_channels);
326 @@ -1026,11 +995,10 @@
332 /* copy L to R when no PS is used */
333 #if (defined(PS_DEC) || defined(DRM_PS))
334 - if ((hDecoder->ps_used[hDecoder->fr_ch_ele] == 0))
335 + if ((hDecoder->ps_used[hDecoder->fr_ch_ele] == 0) && (output_channels == 2))
337 uint8_t ele = hDecoder->fr_ch_ele;
338 uint8_t ch = sce->channel;
339 @@ -1040,6 +1008,7 @@
340 memcpy(hDecoder->time_out[ch+1], hDecoder->time_out[ch], frame_size);