From cf359a79072459c0042747595418b618b620bd86 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Sun, 25 Jan 2026 23:32:14 +0100 Subject: [PATCH] avcodec/hevc/dsp: Add alignment for dequant Signed-off-by: Andreas Rheinhardt --- libavcodec/hevc/dsp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/hevc/dsp.h b/libavcodec/hevc/dsp.h index a63586c3a2..b884cd36be 100644 --- a/libavcodec/hevc/dsp.h +++ b/libavcodec/hevc/dsp.h @@ -50,7 +50,7 @@ typedef struct HEVCDSPContext { void (*add_residual[4])(uint8_t *dst, const int16_t *res, ptrdiff_t stride); - void (*dequant)(int16_t *coeffs, int16_t log2_size); + void (*dequant)(int16_t *coeffs /* align 32 */, int16_t log2_size); void (*transform_rdpcm)(int16_t *coeffs, int16_t log2_size, int mode);