]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/dnxhddec: fix block alignment
authorRamiro Polla <ramiro.polla@gmail.com>
Wed, 26 Dec 2018 16:56:27 +0000 (13:56 -0300)
committerJames Almer <jamrial@gmail.com>
Wed, 26 Dec 2018 16:57:50 +0000 (13:57 -0300)
blockdsp requires 32 byte alignment.

Signed-off-by: James Almer <jamrial@gmail.com>
libavcodec/dnxhddec.c

index abda5c656de39a4b695c674994b6672583867f18..1e95086696703b390636f237a2d58ea32c014472 100644 (file)
@@ -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;