comparison mpc.h @ 10961:34a65026fa06 libavcodec

Move array specifiers outside DECLARE_ALIGNED() invocations
author mru
date Fri, 22 Jan 2010 03:25:11 +0000
parents 0dce4fe6e6f3
children 98970e51365a
comparison
equal deleted inserted replaced
10960:10759fd39860 10961:34a65026fa06
63 uint8_t *bits; 63 uint8_t *bits;
64 int buf_size; 64 int buf_size;
65 AVLFG rnd; 65 AVLFG rnd;
66 int frames_to_skip; 66 int frames_to_skip;
67 /* for synthesis */ 67 /* for synthesis */
68 DECLARE_ALIGNED_16(MPA_INT, synth_buf[MPA_MAX_CHANNELS][512*2]); 68 DECLARE_ALIGNED_16(MPA_INT, synth_buf)[MPA_MAX_CHANNELS][512*2];
69 int synth_buf_offset[MPA_MAX_CHANNELS]; 69 int synth_buf_offset[MPA_MAX_CHANNELS];
70 DECLARE_ALIGNED_16(int32_t, sb_samples[MPA_MAX_CHANNELS][36][SBLIMIT]); 70 DECLARE_ALIGNED_16(int32_t, sb_samples)[MPA_MAX_CHANNELS][36][SBLIMIT];
71 } MPCContext; 71 } MPCContext;
72 72
73 void ff_mpc_init(void); 73 void ff_mpc_init(void);
74 void ff_mpc_dequantize_and_synth(MPCContext *c, int maxband, void *dst); 74 void ff_mpc_dequantize_and_synth(MPCContext *c, int maxband, void *dst);
75 75