comparison aac.h @ 7608:850a1625bee4 libavcodec

More OKed AAC decoder code hunks
author superdump
date Mon, 18 Aug 2008 19:39:08 +0000
parents 6fdffa4836a7
children 3f6fc60f1ed3
comparison
equal deleted inserted replaced
7607:87f68803080a 7608:850a1625bee4
230 */ 230 */
231 ChannelElement * che[4][MAX_ELEM_ID]; 231 ChannelElement * che[4][MAX_ELEM_ID];
232 /** @} */ 232 /** @} */
233 233
234 /** 234 /**
235 * @defgroup temporary aligned temporary buffers (We do not want to have these on the stack.)
236 * @{
237 */
238 DECLARE_ALIGNED_16(float, buf_mdct[2048]);
239 DECLARE_ALIGNED_16(float, revers[1024]);
240 /** @} */
241
242 /**
235 * @defgroup tables Computed / set up during initialization. 243 * @defgroup tables Computed / set up during initialization.
236 * @{ 244 * @{
237 */ 245 */
238 MDCTContext mdct; 246 MDCTContext mdct;
239 MDCTContext mdct_small; 247 MDCTContext mdct_small;