You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec/dnxhddec: fix block alignment
blockdsp requires 32 byte alignment. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
committed by
James Almer
parent
4d34205bec
commit
c268712895
@@ -37,7 +37,7 @@
|
|||||||
#include "thread.h"
|
#include "thread.h"
|
||||||
|
|
||||||
typedef struct RowContext {
|
typedef struct RowContext {
|
||||||
DECLARE_ALIGNED(16, int16_t, blocks)[12][64];
|
DECLARE_ALIGNED(32, int16_t, blocks)[12][64];
|
||||||
int luma_scale[64];
|
int luma_scale[64];
|
||||||
int chroma_scale[64];
|
int chroma_scale[64];
|
||||||
GetBitContext gb;
|
GetBitContext gb;
|
||||||
|
Reference in New Issue
Block a user