diff options
author | Ramiro Polla | 2018-12-26 13:56:27 -0300 |
---|---|---|
committer | James Almer | 2018-12-26 13:57:50 -0300 |
commit | c268712895f6fd557e5affa6566983815046b9a8 (patch) | |
tree | e6ad40107b6013fa37a28c747d69f8a63352581d /libavcodec/dnxhddec.c | |
parent | 4d34205bec706aa25cb7f355786f97a72c7632b5 (diff) |
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.c | 2 |
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; |