mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
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];
|
||||
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 */
|
||||
|
Loading…
Reference in New Issue
Block a user