Commit c2687128 authored by Ramiro Polla's avatar Ramiro Polla Committed by James Almer

avcodec/dnxhddec: fix block alignment

blockdsp requires 32 byte alignment.
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent 4d34205b
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment