X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Featgq.c;h=34cb6428b015271b0931f53bb24a4b3ba75aa76d;hb=96cea6269ac378f848a054ba8cff532734653662;hp=100abe92ab249672dadeff768ecf714429fdf0d7;hpb=f6ed5df9c00c3fda2571ccc75e3055c215e4fc1a;p=ffmpeg diff --git a/libavcodec/eatgq.c b/libavcodec/eatgq.c index 100abe92ab2..34cb6428b01 100644 --- a/libavcodec/eatgq.c +++ b/libavcodec/eatgq.c @@ -51,7 +51,7 @@ static av_cold int tgq_decode_init(AVCodecContext *avctx) TgqContext *s = avctx->priv_data; uint8_t idct_permutation[64]; s->avctx = avctx; - ff_init_scantable_permutation(idct_permutation, FF_NO_IDCT_PERM); + ff_init_scantable_permutation(idct_permutation, FF_IDCT_PERM_NONE); ff_init_scantable(idct_permutation, &s->scantable, ff_zigzag_direct); avctx->time_base = (AVRational){1, 15}; avctx->pix_fmt = AV_PIX_FMT_YUV420P;