summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2023-05-15 13:35:42 +0200
committerHendrik Leppkes <h.leppkes@gmail.com>2023-05-15 18:30:54 +0200
commit6b2ae90411ce8f6f90269655bf912355121c0749 (patch)
treea15a41e2440923c54ab89b2fdc1d1f19b4d1fb3e
parent308e4ae8e3a7dee551b9167a056b8983d48bcea4 (diff)
downloadffmpeg-6b2ae90411ce8f6f90269655bf912355121c0749.tar.gz
avcodec/vdpau_mpeg4: 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_mpeg4.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/vdpau_mpeg4.c b/libavcodec/vdpau_mpeg4.c
index 6e082eefc6..1211b1df2c 100644
--- a/libavcodec/vdpau_mpeg4.c
+++ b/libavcodec/vdpau_mpeg4.c
@@ -74,8 +74,9 @@ static int vdpau_mpeg4_start_frame(AVCodecContext *avctx,
info->alternate_vertical_scan_flag = s->alternate_scan;
info->top_field_first = s->top_field_first;
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];
}
ff_vdpau_common_start_frame(pic_ctx, buffer, size);