Commit 68c51c44 authored by bellard's avatar bellard

enabled SSE fft (first code using GCC 3.2 vector builtins on x86 - please tell...

enabled SSE fft (first code using GCC 3.2 vector builtins on x86 - please tell me if you have better ideas for intrinsic naming or Makefile support)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1415 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 74ed8963
...@@ -50,7 +50,7 @@ ifeq ($(TARGET_MMX),yes) ...@@ -50,7 +50,7 @@ ifeq ($(TARGET_MMX),yes)
OBJS += i386/fdct_mmx.o i386/cputest.o \ OBJS += i386/fdct_mmx.o i386/cputest.o \
i386/dsputil_mmx.o i386/mpegvideo_mmx.o \ i386/dsputil_mmx.o i386/mpegvideo_mmx.o \
i386/idct_mmx.o i386/motion_est_mmx.o \ i386/idct_mmx.o i386/motion_est_mmx.o \
i386/simple_idct_mmx.o i386/simple_idct_mmx.o i386/fft_sse.o
endif endif
# armv4l specific stuff # armv4l specific stuff
...@@ -110,14 +110,6 @@ $(SLIB): $(OBJS) ...@@ -110,14 +110,6 @@ $(SLIB): $(OBJS)
dsputil.o: dsputil.c dsputil.h dsputil.o: dsputil.c dsputil.h
# specific sse code
%_sse.o : %_sse.c
$(CC) $(CFLAGS) -msse -c -o $@ $<
# specific 3dnow code
%_3dnow.o : %_3dnow.c
$(CC) $(CFLAGS) -m3dnow -c -o $@ $<
%.o: %.c %.o: %.c
$(CC) $(CFLAGS) -c -o $@ $< $(CC) $(CFLAGS) -c -o $@ $<
...@@ -174,7 +166,7 @@ dct-test: dct-test.o jfdctfst.o jfdctint.o i386/fdct_mmx.o\ ...@@ -174,7 +166,7 @@ dct-test: dct-test.o jfdctfst.o jfdctint.o i386/fdct_mmx.o\
motion-test: motion_test.o $(LIB) motion-test: motion_test.o $(LIB)
$(CC) -o $@ $^ -lm $(CC) -o $@ $^ -lm
fft-test: fft-test.o fft.o mdct.o fft-test: fft-test.o $(LIB)
$(CC) -o $@ $^ -lm $(CC) -o $@ $^ -lm
install: all install: all
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment