comparison atrac1.c @ 10190:1b1ac77dee05 libavcodec

Align sample output buffer in atrac1.
author banan
date Sat, 19 Sep 2009 01:46:03 +0000
parents de34f74fb758
children 024dff84e511
comparison
equal deleted inserted replaced
10189:de34f74fb758 10190:1b1ac77dee05
76 76
77 DECLARE_ALIGNED_16(float, low[256]); 77 DECLARE_ALIGNED_16(float, low[256]);
78 DECLARE_ALIGNED_16(float, mid[256]); 78 DECLARE_ALIGNED_16(float, mid[256]);
79 DECLARE_ALIGNED_16(float,high[512]); 79 DECLARE_ALIGNED_16(float,high[512]);
80 float* bands[3]; 80 float* bands[3];
81 float out_samples[AT1_MAX_CHANNELS][AT1_SU_SAMPLES]; 81 DECLARE_ALIGNED_16(float,out_samples[AT1_MAX_CHANNELS][AT1_SU_SAMPLES]);
82 MDCTContext mdct_ctx[3]; 82 MDCTContext mdct_ctx[3];
83 int channels; 83 int channels;
84 DSPContext dsp; 84 DSPContext dsp;
85 } AT1Ctx; 85 } AT1Ctx;
86 86