Mercurial > libavcodec.hg
diff nellymoserenc.c @ 10961:34a65026fa06 libavcodec
Move array specifiers outside DECLARE_ALIGNED() invocations
| author | mru |
|---|---|
| date | Fri, 22 Jan 2010 03:25:11 +0000 |
| parents | f175e643acff |
| children | 98970e51365a |
line wrap: on
line diff
--- a/nellymoserenc.c Fri Jan 22 01:59:17 2010 +0000 +++ b/nellymoserenc.c Fri Jan 22 03:25:11 2010 +0000 @@ -53,9 +53,9 @@ int have_saved; DSPContext dsp; FFTContext mdct_ctx; - DECLARE_ALIGNED_16(float, mdct_out[NELLY_SAMPLES]); - DECLARE_ALIGNED_16(float, in_buff[NELLY_SAMPLES]); - DECLARE_ALIGNED_16(float, buf[2][3 * NELLY_BUF_LEN]); ///< sample buffer + DECLARE_ALIGNED_16(float, mdct_out)[NELLY_SAMPLES]; + DECLARE_ALIGNED_16(float, in_buff)[NELLY_SAMPLES]; + DECLARE_ALIGNED_16(float, buf)[2][3 * NELLY_BUF_LEN]; ///< sample buffer float (*opt )[NELLY_BANDS]; uint8_t (*path)[NELLY_BANDS]; } NellyMoserEncodeContext;
