diff options
author | Timothy Gu <timothygu99@gmail.com> | 2016-02-01 20:50:22 -0800 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2016-02-05 19:29:43 -0800 |
commit | 17ab8f7e6852a9db46aec3267bc8a7e40dde849f (patch) | |
tree | b079118165931a0bbc7ea8a62db051bc7f102b8a /libavcodec/diracdsp.c | |
parent | 1c40bccc0949f24bde1cd51194367a4a9fd490c5 (diff) | |
download | ffmpeg-17ab8f7e6852a9db46aec3267bc8a7e40dde849f.tar.gz |
diracdsp: Make x86 files/functions names consistent
Diffstat (limited to 'libavcodec/diracdsp.c')
-rw-r--r-- | libavcodec/diracdsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/diracdsp.c b/libavcodec/diracdsp.c index 12f27ce684..ab8d1497f7 100644 --- a/libavcodec/diracdsp.c +++ b/libavcodec/diracdsp.c @@ -20,7 +20,6 @@ #include "avcodec.h" #include "diracdsp.h" -#include "libavcodec/x86/diracdsp_mmx.h" #define FILTER(src, stride) \ ((21*((src)[ 0*stride] + (src)[1*stride]) \ @@ -222,5 +221,6 @@ av_cold void ff_diracdsp_init(DiracDSPContext *c) PIXFUNC(avg, 16); PIXFUNC(avg, 32); - if (HAVE_MMX && HAVE_YASM) ff_diracdsp_init_mmx(c); + if (ARCH_X86) + ff_diracdsp_init_x86(c); } |