summaryrefslogtreecommitdiffstats
path: root/libavcodec/dnxhdenc.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-11-01 02:31:10 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2016-11-01 21:02:26 +0100
commit7ddfa0be6298d1713b809eadbc91820bca1a99be (patch)
treebd9d355218bd78f3f3614c1e8c75633a2f677ccd /libavcodec/dnxhdenc.h
parent719c15aa9ad6983200b78e5dbc17443f649c8af9 (diff)
downloadffmpeg-streaming-7ddfa0be6298d1713b809eadbc91820bca1a99be.zip
ffmpeg-streaming-7ddfa0be6298d1713b809eadbc91820bca1a99be.tar.gz
avcodec/dnxhdenc: Fix alignment of edge_buf*
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/dnxhdenc.h')
-rw-r--r--libavcodec/dnxhdenc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dnxhdenc.h b/libavcodec/dnxhdenc.h
index 91ef6d0..eb9da12 100644
--- a/libavcodec/dnxhdenc.h
+++ b/libavcodec/dnxhdenc.h
@@ -71,8 +71,8 @@ typedef struct DNXHDEncContext {
int intra_quant_bias;
DECLARE_ALIGNED(16, int16_t, blocks)[8][64];
- uint8_t edge_buf_y[256];
- uint8_t edge_buf_uv[2][128];
+ DECLARE_ALIGNED(16, uint8_t, edge_buf_y)[256];
+ DECLARE_ALIGNED(16, uint8_t, edge_buf_uv)[2][128];
int (*qmatrix_c) [64];
int (*qmatrix_l) [64];
OpenPOWER on IntegriCloud