diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-08-27 02:58:07 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-08-27 04:54:05 -0700 |
commit | dcb7c868ec7af7d3a138b3254ef2e08f074d8ec5 (patch) | |
tree | b52731e876c8a94fd631f12272b19945cdc35fc0 /libavcodec/xvididct.c | |
parent | 1f156af4274dc72d588620f6bedb4e9e66023c92 (diff) | |
download | ffmpeg-dcb7c868ec7af7d3a138b3254ef2e08f074d8ec5.tar.gz |
cosmetics: Make naming scheme of Xvid IDCT consistent with other IDCTs
Diffstat (limited to 'libavcodec/xvididct.c')
-rw-r--r-- | libavcodec/xvididct.c | 4 |
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); } |