diff options
author | Edgar Hucek <ebsi4711@gmail.com> | 2011-09-11 12:53:17 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-09-11 12:56:13 +0200 |
commit | 4909895afd6d6fcde672067c7f8066ddbd82a5d3 (patch) | |
tree | 154ecd22f12de303a236c59dd32e5530c0e00e03 | |
parent | 9e40946edfaad4561dfe697f34573168455259b5 (diff) | |
download | ffmpeg-4909895afd6d6fcde672067c7f8066ddbd82a5d3.tar.gz |
Fix VA-API decoding artefacts.
Fixes ticket #457.
(cherry picked from commit 3fec40b601827e75aae9f0baa47671af15de181a)
-rw-r--r-- | libavcodec/vaapi_h264.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/vaapi_h264.c b/libavcodec/vaapi_h264.c index 718e180942..01c42f5af1 100644 --- a/libavcodec/vaapi_h264.c +++ b/libavcodec/vaapi_h264.c @@ -282,7 +282,8 @@ static int start_frame(AVCodecContext *avctx, if (!iq_matrix) return -1; memcpy(iq_matrix->ScalingList4x4, h->pps.scaling_matrix4, sizeof(iq_matrix->ScalingList4x4)); - memcpy(iq_matrix->ScalingList8x8, h->pps.scaling_matrix8, sizeof(iq_matrix->ScalingList8x8)); + memcpy(iq_matrix->ScalingList8x8[0], h->pps.scaling_matrix8[0], sizeof(iq_matrix->ScalingList8x8[0])); + memcpy(iq_matrix->ScalingList8x8[1], h->pps.scaling_matrix8[3], sizeof(iq_matrix->ScalingList8x8[0])); return 0; } |