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/x86/xvididct_init.c | |
parent | 1f156af4274dc72d588620f6bedb4e9e66023c92 (diff) | |
download | ffmpeg-dcb7c868ec7af7d3a138b3254ef2e08f074d8ec5.tar.gz |
cosmetics: Make naming scheme of Xvid IDCT consistent with other IDCTs
Diffstat (limited to 'libavcodec/x86/xvididct_init.c')
-rw-r--r-- | libavcodec/x86/xvididct_init.c | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/libavcodec/x86/xvididct_init.c b/libavcodec/x86/xvididct_init.c index d5d8ac9630..ce5f240aee 100644 --- a/libavcodec/x86/xvididct_init.c +++ b/libavcodec/x86/xvididct_init.c @@ -22,31 +22,32 @@ #include "libavutil/x86/cpu.h" #include "libavcodec/idctdsp.h" #include "libavcodec/xvididct.h" -#include "idct_xvid.h" + #include "idctdsp.h" +#include "xvididct.h" -av_cold void ff_xvididct_init_x86(IDCTDSPContext *c) +av_cold void ff_xvid_idct_init_x86(IDCTDSPContext *c) { int cpu_flags = av_get_cpu_flags(); if (INLINE_MMX(cpu_flags)) { - c->idct_put = ff_idct_xvid_mmx_put; - c->idct_add = ff_idct_xvid_mmx_add; - c->idct = ff_idct_xvid_mmx; + c->idct_put = ff_xvid_idct_mmx_put; + c->idct_add = ff_xvid_idct_mmx_add; + c->idct = ff_xvid_idct_mmx; c->perm_type = FF_IDCT_PERM_NONE; } if (INLINE_MMXEXT(cpu_flags)) { - c->idct_put = ff_idct_xvid_mmxext_put; - c->idct_add = ff_idct_xvid_mmxext_add; - c->idct = ff_idct_xvid_mmxext; + c->idct_put = ff_xvid_idct_mmxext_put; + c->idct_add = ff_xvid_idct_mmxext_add; + c->idct = ff_xvid_idct_mmxext; c->perm_type = FF_IDCT_PERM_NONE; } if (INLINE_SSE2(cpu_flags)) { - c->idct_put = ff_idct_xvid_sse2_put; - c->idct_add = ff_idct_xvid_sse2_add; - c->idct = ff_idct_xvid_sse2; + c->idct_put = ff_xvid_idct_sse2_put; + c->idct_add = ff_xvid_idct_sse2_add; + c->idct = ff_xvid_idct_sse2; c->perm_type = FF_IDCT_PERM_SSE2; } } |