mirror of https://git.ffmpeg.org/ffmpeg.git
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:
parent
6aeaac3e1c
commit
b74e13711f
|
@ -112,7 +112,7 @@ typedef struct OpusStreamContext {
|
||||||
DECLARE_ALIGNED(32, float, celt_buf)[2][960];
|
DECLARE_ALIGNED(32, float, celt_buf)[2][960];
|
||||||
float *celt_output[2];
|
float *celt_output[2];
|
||||||
|
|
||||||
float redundancy_buf[2][960];
|
DECLARE_ALIGNED(32, float, redundancy_buf)[2][960];
|
||||||
float *redundancy_output[2];
|
float *redundancy_output[2];
|
||||||
|
|
||||||
/* data buffers for the final output data */
|
/* data buffers for the final output data */
|
||||||
|
|
Loading…
Reference in New Issue