summaryrefslogtreecommitdiff
path: root/libavcodec/dnxhddec.c
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2018-12-26 13:56:27 -0300
committerJames Almer <jamrial@gmail.com>2018-12-26 13:57:50 -0300
commitc268712895f6fd557e5affa6566983815046b9a8 (patch)
treee6ad40107b6013fa37a28c747d69f8a63352581d /libavcodec/dnxhddec.c
parent4d34205bec706aa25cb7f355786f97a72c7632b5 (diff)
downloadffmpeg-c268712895f6fd557e5affa6566983815046b9a8.tar.gz
avcodec/dnxhddec: fix block alignment
blockdsp requires 32 byte alignment. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/dnxhddec.c')
-rw-r--r--libavcodec/dnxhddec.c2
1 files changed, 1 insertions, 1 deletions
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;