mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-16 12:21:18 +00:00
Make windowed_samples 16-byte aligned.
This will allow future SIMD optimization of the window function. Originally committed as revision 26025 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
e8d21fba3f
commit
aa645b9888
@ -121,9 +121,10 @@ typedef struct AC3EncodeContext {
|
||||
uint16_t *qmant1_ptr, *qmant2_ptr, *qmant4_ptr; ///< mantissa pointers for bap=1,2,4
|
||||
|
||||
int16_t **planar_samples;
|
||||
int16_t windowed_samples[AC3_WINDOW_SIZE];
|
||||
uint8_t *bap_buffer;
|
||||
uint8_t *bap1_buffer;
|
||||
|
||||
DECLARE_ALIGNED(16, int16_t, windowed_samples)[AC3_WINDOW_SIZE];
|
||||
} AC3EncodeContext;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user