diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-10-12 19:54:45 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-08-28 23:59:24 +0200 |
commit | a519583991c38d38503ab08357716513facc5725 (patch) | |
tree | 680be0eb073b89921962a9215354256cb4b01ce4 /libswscale/x86/Makefile | |
parent | a64f6a04ac5773aeff2003897455dadb9609f18b (diff) | |
download | ffmpeg-a519583991c38d38503ab08357716513facc5725.tar.gz |
swscale: x86: Hide arch-specific initialization details
Also give consistent names to init functions.
Diffstat (limited to 'libswscale/x86/Makefile')
-rw-r--r-- | libswscale/x86/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libswscale/x86/Makefile b/libswscale/x86/Makefile index 5416d48a4c..b94b14abbb 100644 --- a/libswscale/x86/Makefile +++ b/libswscale/x86/Makefile @@ -1,9 +1,9 @@ -OBJS-$(CONFIG_XMM_CLOBBER_TEST) += x86/w64xmmtest.o - -MMX-OBJS += x86/rgb2rgb.o \ +OBJS += x86/rgb2rgb.o \ x86/swscale.o \ x86/yuv2rgb.o \ +OBJS-$(CONFIG_XMM_CLOBBER_TEST) += x86/w64xmmtest.o + YASM-OBJS += x86/input.o \ x86/output.o \ x86/scale.o \ |