summaryrefslogtreecommitdiff
path: root/libavcodec/mpeg4videodec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-08-27 02:58:07 +0200
committerDiego Biurrun <diego@biurrun.de>2014-08-27 04:54:05 -0700
commitdcb7c868ec7af7d3a138b3254ef2e08f074d8ec5 (patch)
treeb52731e876c8a94fd631f12272b19945cdc35fc0 /libavcodec/mpeg4videodec.c
parent1f156af4274dc72d588620f6bedb4e9e66023c92 (diff)
cosmetics: Make naming scheme of Xvid IDCT consistent with other IDCTs
Diffstat (limited to 'libavcodec/mpeg4videodec.c')
-rw-r--r--libavcodec/mpeg4videodec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4videodec.c
index 863dd29c7c..effbf6de5a 100644
--- a/libavcodec/mpeg4videodec.c
+++ b/libavcodec/mpeg4videodec.c
@@ -2068,7 +2068,7 @@ static int decode_user_data(Mpeg4DecContext *ctx, GetBitContext *gb)
}
if (CONFIG_MPEG4_DECODER && ctx->xvid_build >= 0)
- ff_xvididct_init(&s->idsp, s->avctx);
+ ff_xvid_idct_init(&s->idsp, s->avctx);
return 0;
}
@@ -2547,7 +2547,7 @@ static int mpeg4_update_thread_context(AVCodecContext *dst,
return ret;
if (CONFIG_MPEG4_DECODER && !init && s1->xvid_build >= 0)
- ff_xvididct_init(&s->m.idsp, dst);
+ ff_xvid_idct_init(&s->m.idsp, dst);
s->shape = s1->shape;
s->time_increment_bits = s1->time_increment_bits;