[FFmpeg-soc] [soc]: r5526 - aac-sbr/aacsbr.h
alexc
subversion at mplayerhq.hu
Fri Dec 11 22:25:06 CET 2009
Author: alexc
Date: Fri Dec 11 22:25:06 2009
New Revision: 5526
Log:
Make bs_data_env and bs_data_noise signed.
They can be negative after pulling off the lav see al_sbr_i_44_1_new.mp4
for an example.
Modified:
aac-sbr/aacsbr.h
Modified: aac-sbr/aacsbr.h
==============================================================================
--- aac-sbr/aacsbr.h Fri Dec 11 21:26:47 2009 (r5525)
+++ aac-sbr/aacsbr.h Fri Dec 11 22:25:06 2009 (r5526)
@@ -97,8 +97,8 @@ typedef struct {
uint8_t bs_df_env[5];
uint8_t bs_df_noise[2];
uint8_t bs_invf_mode[2][5];
- uint32_t bs_data_env[7][32];
- uint32_t bs_data_noise[2][5];
+ int32_t bs_data_env[7][32];
+ int32_t bs_data_noise[2][5];
uint8_t bs_add_harmonic[32];
uint8_t bs_amp_res;
float synthesis_filterbank_samples[1280];
More information about the FFmpeg-soc
mailing list