diff options
author | James Almer <jamrial@gmail.com> | 2017-11-15 21:13:07 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-12-01 01:27:24 -0300 |
commit | bcfbcbec481c26d4b4a815d390c594c8c13fd647 (patch) | |
tree | e53b89362a4b3130768854247b0f1c07b4520251 | |
parent | 2940b3e17cd352fc22152909843867771922b4dd (diff) | |
download | ffmpeg-bcfbcbec481c26d4b4a815d390c594c8c13fd647.tar.gz |
avcodec/proresdec: align dequantization matrix buffers
Should fix ticket #6838
Signed-off-by: James Almer <jamrial@gmail.com>
(cherry picked from commit f399172d6e842fbdd05c599cdbbb1668c8c354be)
-rw-r--r-- | libavcodec/proresdec2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/proresdec2.c b/libavcodec/proresdec2.c index 0f791de97b..2ebda78a7a 100644 --- a/libavcodec/proresdec2.c +++ b/libavcodec/proresdec2.c @@ -517,8 +517,8 @@ static int decode_slice_thread(AVCodecContext *avctx, void *arg, int jobnr, int int luma_stride, chroma_stride; int y_data_size, u_data_size, v_data_size, a_data_size; uint8_t *dest_y, *dest_u, *dest_v, *dest_a; - int16_t qmat_luma_scaled[64]; - int16_t qmat_chroma_scaled[64]; + LOCAL_ALIGNED_16(int16_t, qmat_luma_scaled, [64]); + LOCAL_ALIGNED_16(int16_t, qmat_chroma_scaled,[64]); int mb_x_shift; int ret; |