Commit b74e1371 authored by James Almer's avatar James Almer

avcodec/opus: make redundancy_buf 32 byte aligned

Fixes ff_opus_deemphasis_fma3 segmentation fault crashes on x86_32.
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent 6aeaac3e
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment