Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-08-27 04:58:07 +0400
committerDiego Biurrun <diego@biurrun.de>2014-08-27 15:54:05 +0400
commitdcb7c868ec7af7d3a138b3254ef2e08f074d8ec5 (patch)
treeb52731e876c8a94fd631f12272b19945cdc35fc0 /libavcodec/xvididct.c
parent1f156af4274dc72d588620f6bedb4e9e66023c92 (diff)
cosmetics: Make naming scheme of Xvid IDCT consistent with other IDCTs
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);
}