From dcb7c868ec7af7d3a138b3254ef2e08f074d8ec5 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 27 Aug 2014 02:58:07 +0200 Subject: cosmetics: Make naming scheme of Xvid IDCT consistent with other IDCTs --- libavcodec/xvididct.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/xvididct.c') diff --git a/libavcodec/xvididct.c b/libavcodec/xvididct.c index 9d38662037..0562fdbb63 100644 --- a/libavcodec/xvididct.c +++ b/libavcodec/xvididct.c @@ -22,7 +22,7 @@ #include "idctdsp.h" #include "xvididct.h" -av_cold void ff_xvididct_init(IDCTDSPContext *c, AVCodecContext *avctx) +av_cold void ff_xvid_idct_init(IDCTDSPContext *c, AVCodecContext *avctx) { const unsigned high_bit_depth = avctx->bits_per_raw_sample > 8; @@ -32,7 +32,7 @@ av_cold void ff_xvididct_init(IDCTDSPContext *c, AVCodecContext *avctx) return; if (ARCH_X86) - ff_xvididct_init_x86(c); + ff_xvid_idct_init_x86(c); ff_init_scantable_permutation(c->idct_permutation, c->perm_type); } -- cgit v1.2.3