comparison mpc.h @ 11369:98970e51365a libavcodec

Remove DECLARE_ALIGNED_{8,16} macros These macros are redundant. All uses are replaced with the generic DECLARE_ALIGNED macro instead.
author mru
date Sat, 06 Mar 2010 14:24:59 +0000
parents 34a65026fa06
children 7dd2a45249a9
comparison
equal deleted inserted replaced
11368:3d4f64b8fb10 11369:98970e51365a
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