avcodec/opus: make redundancy_buf 32 byte aligned

Fixes ff_opus_deemphasis_fma3 segmentation fault crashes on x86_32.

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2019-04-02 11:36:56 -03:00
parent 6aeaac3e1c
commit b74e13711f
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ typedef struct OpusStreamContext {
DECLARE_ALIGNED(32, float, celt_buf)[2][960];
float *celt_output[2];
float redundancy_buf[2][960];
DECLARE_ALIGNED(32, float, redundancy_buf)[2][960];
float *redundancy_output[2];
/* data buffers for the final output data */