From c268712895f6fd557e5affa6566983815046b9a8 Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Wed, 26 Dec 2018 13:56:27 -0300 Subject: [PATCH] avcodec/dnxhddec: fix block alignment blockdsp requires 32 byte alignment. Signed-off-by: James Almer --- libavcodec/dnxhddec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/dnxhddec.c b/libavcodec/dnxhddec.c index abda5c656d..1e95086696 100644 --- a/libavcodec/dnxhddec.c +++ b/libavcodec/dnxhddec.c @@ -37,7 +37,7 @@ #include "thread.h" typedef struct RowContext { - DECLARE_ALIGNED(16, int16_t, blocks)[12][64]; + DECLARE_ALIGNED(32, int16_t, blocks)[12][64]; int luma_scale[64]; int chroma_scale[64]; GetBitContext gb;