summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2023-05-15 13:35:13 +0200
committerHendrik Leppkes <h.leppkes@gmail.com>2023-05-15 18:42:37 +0200
commit4015609fcdbd030a4f9332e003db10165de8f295 (patch)
tree32773f3fb577f234d60c772f7ba085727076e413
parenta4f995fa84b200c50e643fb6e038af6c3acce869 (diff)
downloadffmpeg-4015609fcdbd030a4f9332e003db10165de8f295.tar.gz
avcodec/vdpau_mpeg12: fix order of quant matrix coefficients
The matrix coefficients are stored permutated for the IDCT, rather then in plain raster order, and need to be un-permutated for the hardware.
-rw-r--r--libavcodec/vdpau_mpeg12.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/vdpau_mpeg12.c b/libavcodec/vdpau_mpeg12.c
index 354239cad5..79007aa1a8 100644
--- a/libavcodec/vdpau_mpeg12.c
+++ b/libavcodec/vdpau_mpeg12.c
@@ -75,8 +75,9 @@ static int vdpau_mpeg_start_frame(AVCodecContext *avctx,
info->f_code[1][0] = s->mpeg_f_code[1][0];
info->f_code[1][1] = s->mpeg_f_code[1][1];
for (i = 0; i < 64; ++i) {
- info->intra_quantizer_matrix[i] = s->intra_matrix[i];
- info->non_intra_quantizer_matrix[i] = s->inter_matrix[i];
+ int n = s->idsp.idct_permutation[i];
+ info->intra_quantizer_matrix[i] = s->intra_matrix[n];
+ info->non_intra_quantizer_matrix[i] = s->inter_matrix[n];
}
return ff_vdpau_common_start_frame(pic_ctx, buffer, size);