[FFmpeg-cvslog] avcodec/nvdec_mpeg2: fix order of quant matrix coefficients
Hendrik Leppkes
git at videolan.org
Mon May 15 19:32:16 EEST 2023
ffmpeg | branch: master | Hendrik Leppkes <h.leppkes at gmail.com> | Mon May 15 12:49:21 2023 +0200| [af8affb77efe8e1b9cfb4a288aec8feb8c25f569] | committer: Hendrik Leppkes
avcodec/nvdec_mpeg2: 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.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=af8affb77efe8e1b9cfb4a288aec8feb8c25f569
---
libavcodec/nvdec_mpeg12.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/libavcodec/nvdec_mpeg12.c b/libavcodec/nvdec_mpeg12.c
index e10735587d..3b9ff60734 100644
--- a/libavcodec/nvdec_mpeg12.c
+++ b/libavcodec/nvdec_mpeg12.c
@@ -83,8 +83,9 @@ static int nvdec_mpeg12_start_frame(AVCodecContext *avctx, const uint8_t *buffer
};
for (i = 0; i < 64; ++i) {
- ppc->QuantMatrixIntra[i] = s->intra_matrix[i];
- ppc->QuantMatrixInter[i] = s->inter_matrix[i];
+ int n = s->idsp.idct_permutation[i];
+ ppc->QuantMatrixIntra[i] = s->intra_matrix[n];
+ ppc->QuantMatrixInter[i] = s->inter_matrix[n];
}
return 0;
More information about the ffmpeg-cvslog
mailing list