This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit cf359a79072459c0042747595418b618b620bd86 Author: Andreas Rheinhardt <[email protected]> AuthorDate: Sun Jan 25 23:32:14 2026 +0100 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Thu Jan 29 12:25:33 2026 +0100 avcodec/hevc/dsp: Add alignment for dequant Signed-off-by: Andreas Rheinhardt <[email protected]> --- 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); _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
