mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/nvdec_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.
This commit is contained in:
parent
f425361637
commit
c5d3d13e74
@ -86,8 +86,9 @@ static int nvdec_mpeg4_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];
|
||||
}
|
||||
|
||||
// We need to pass the full frame buffer and not just the slice
|
||||
|
Loading…
Reference in New Issue
Block a user