From b4987f72197e0c62cf2633bf835a9c32d2a445ae Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 18 Feb 2014 11:30:55 +0100 Subject: idct: Convert IDCT permutation #defines to an enum Also rename the enum values to be consistent with other DCT permutations. --- libavcodec/eatgq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/eatgq.c') diff --git a/libavcodec/eatgq.c b/libavcodec/eatgq.c index d8320c9f1d..0e4ba2f958 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; -- cgit v1.2.3