Fix VA-API decoding artefacts.

Fixes ticket #457.
This commit is contained in:
Edgar Hucek 2011-09-11 12:53:17 +02:00 committed by Carl Eugen Hoyos
parent ea0ac11e52
commit 3fec40b601
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}