1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avcodec/g728dec: align static arrays to 32-byte boundary

fixes crash observed on x86_64-apple-darwin23.6.0 / clang-1500.3.9.4

Signed-off-by: Peter Ross <pross@xvid.org>
This commit is contained in:
Peter Ross
2025-07-28 07:59:33 +10:00
parent aca41d3d93
commit 518d9f0dd4

View File

@ -44,9 +44,9 @@
static float g728_gq_db[8];
static float g728_y_db[128];
static float g728_wnr_r[FFALIGN(NSBSZ,16)];
static float g728_wnrg_r[FFALIGN(NSBGSZ, 16)];
static float g728_facv_f[FFALIGN(LPC, 16)];
static DECLARE_ALIGNED(32, float, g728_wnr_r)[FFALIGN(NSBSZ,16)];
static DECLARE_ALIGNED(32, float, g728_wnrg_r)[FFALIGN(NSBGSZ, 16)];
static DECLARE_ALIGNED(32, float, g728_facv_f)[FFALIGN(LPC, 16)];
static av_cold void g728_init_static_data(void)
{