summaryrefslogtreecommitdiff
path: root/libavcodec/xvididct.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/xvididct.c')
-rw-r--r--libavcodec/xvididct.c4
1 files changed, 2 insertions, 2 deletions
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);
}