[FFmpeg-soc] [soc]: r3986 - wmapro/wma3.h
faust3
subversion at mplayerhq.hu
Sat Jan 17 19:21:26 CET 2009
Author: faust3
Date: Sat Jan 17 19:21:26 2009
New Revision: 3986
Log:
use BLOCK_MAX_SIZE for the buffer declarations
Modified:
wmapro/wma3.h
Modified: wmapro/wma3.h
==============================================================================
--- wmapro/wma3.h Sat Jan 17 19:19:09 2009 (r3985)
+++ wmapro/wma3.h Sat Jan 17 19:21:26 2009 (r3986)
@@ -50,7 +50,7 @@ typedef struct {
uint8_t cur_subframe;
uint8_t grouped; //< true if the channel is contained in a channel group
- DECLARE_ALIGNED_16(float, coeffs[4096]); //< MAX_COEF
+ DECLARE_ALIGNED_16(float, coeffs[BLOCK_MAX_SIZE]); //< MAX_COEF
int scale_factors[MAX_BANDS]; //< initial scale factor values
int resampled_scale_factors[MAX_BANDS]; //< resampled scale factors from the previous block
@@ -62,7 +62,7 @@ typedef struct {
int quant_step_modifier;
int max_scale_factor;
int scale_factor_block_len; //< block len of the frame for which the scale factors were transmitted
- DECLARE_ALIGNED_16(float, out[8192]);
+ DECLARE_ALIGNED_16(float, out[2*BLOCK_MAX_SIZE]);
} WMA3ChannelCtx;
More information about the FFmpeg-soc
mailing list