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/dct-test.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/dct-test.c')
-rw-r--r-- | libavcodec/x86/dct-test.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/x86/dct-test.c b/libavcodec/x86/dct-test.c index d97c53c7d1..9d4aaf5415 100644 --- a/libavcodec/x86/dct-test.c +++ b/libavcodec/x86/dct-test.c @@ -19,7 +19,7 @@ #include "config.h" #include "fdct.h" -#include "idct_xvid.h" +#include "xvididct.h" #include "simple_idct.h" static const struct algo fdct_tab_arch[] = { @@ -41,13 +41,13 @@ static const struct algo idct_tab_arch[] = { #endif #if CONFIG_MPEG4_DECODER #if HAVE_MMX_INLINE - { "XVID-MMX", ff_idct_xvid_mmx, FF_IDCT_PERM_NONE, AV_CPU_FLAG_MMX, 1 }, + { "XVID-MMX", ff_xvid_idct_mmx, FF_IDCT_PERM_NONE, AV_CPU_FLAG_MMX, 1 }, #endif #if HAVE_MMXEXT_INLINE - { "XVID-MMXEXT", ff_idct_xvid_mmxext, FF_IDCT_PERM_NONE, AV_CPU_FLAG_MMXEXT, 1 }, + { "XVID-MMXEXT", ff_xvid_idct_mmxext, FF_IDCT_PERM_NONE, AV_CPU_FLAG_MMXEXT, 1 }, #endif #if HAVE_SSE2_INLINE - { "XVID-SSE2", ff_idct_xvid_sse2, FF_IDCT_PERM_SSE2, AV_CPU_FLAG_SSE2, 1 }, + { "XVID-SSE2", ff_xvid_idct_sse2, FF_IDCT_PERM_SSE2, AV_CPU_FLAG_SSE2, 1 }, #endif #endif /* CONFIG_MPEG4_DECODER */ { 0 } |