mirror of
https://github.com/mpv-player/mpv
synced 2025-02-22 07:46:55 +00:00
removed obsoleted (or never ending) code
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11242 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
cf069df98e
commit
44792402b2
@ -13,10 +13,6 @@ SRCS += decode_i586.c
|
||||
OBJS += decode_i586.o
|
||||
SRCS += decode_MMX.c dct64_MMX.c tabinit_MMX.c
|
||||
OBJS += decode_MMX.o dct64_MMX.o tabinit_MMX.o
|
||||
#ifeq ($(TARGET_SSE),yes)
|
||||
#SRCS += dct64_sse.s
|
||||
#OBJS += dct64_sse.o
|
||||
#endif
|
||||
SRCS += dct36_3dnow.c dct64_3dnow.c
|
||||
OBJS += dct36_3dnow.o dct64_3dnow.o
|
||||
SRCS += dct36_k7.c dct64_k7.c
|
||||
@ -67,7 +63,7 @@ test2: libMP3.a test2.c
|
||||
$(CC) $(CFLAGS) test2.c ../libvo/aclib.c -o test2 -I.. ./libMP3.a ../mp_msg-mencoder.o ../cpudetect.o -lm
|
||||
|
||||
clean:
|
||||
rm -f *~ *.o *.a
|
||||
rm -f *~ *.o *.a test1 test2
|
||||
|
||||
distclean:
|
||||
rm -f *~ *.o *.a Makefile.bak .depend
|
||||
|
2221
mp3lib/dct64_sse.s
2221
mp3lib/dct64_sse.s
File diff suppressed because it is too large
Load Diff
@ -1,19 +0,0 @@
|
||||
#!/bin/sh
|
||||
# This script fixes up symbol mangling in GNU as code of mp3lib.
|
||||
# (c)2001-2002 by Felix Buenemann <atmosfear at users.sourceforge.net>A
|
||||
# This file is licensed under the GPL, more info at http://www.fsf.org/
|
||||
for i in \
|
||||
"CpuDetect" \
|
||||
"ipentium" \
|
||||
"a3dnow" \
|
||||
"isse" \
|
||||
"dct36_3dnowex" \
|
||||
"dct36_3dnow" \
|
||||
"x_plus_minus_3dnow" \
|
||||
"tfcos36" \
|
||||
"COS9"
|
||||
do
|
||||
echo "fixing: $i=_$i"
|
||||
objcopy --redefine-sym "$i=_$i" libMP3.a
|
||||
done
|
||||
|
10
mp3lib/sr1.c
10
mp3lib/sr1.c
@ -386,7 +386,6 @@ int _has_mmx = 0; // used by layer2.c, layer3.c to pre-scale coeffs
|
||||
extern void dct64_MMX(real *, real *, real *);
|
||||
extern void dct64_MMX_3dnow(real *, real *, real *);
|
||||
extern void dct64_MMX_3dnowex(real *, real *, real *);
|
||||
extern void dct64_MMX_sse(real *, real *, real *);
|
||||
void (*dct64_MMX_func)(real *, real *, real *);
|
||||
|
||||
#include "../cpudetect.h"
|
||||
@ -415,15 +414,6 @@ void MP3_Init(){
|
||||
synth_func = synth_1to1_MMX;
|
||||
}
|
||||
|
||||
#if 0
|
||||
if(gCpuCaps.hasSSE)
|
||||
{
|
||||
/* SSE version is buggy */
|
||||
dct64_MMX_func = dct64_MMX_sse;
|
||||
mp_msg(MSGT_DECAUDIO,MSGL_V,"mp3lib: using SSE optimized decore!\n");
|
||||
}
|
||||
else
|
||||
#endif
|
||||
if (gCpuCaps.has3DNowExt)
|
||||
{
|
||||
dct36_func=dct36_3dnowex;
|
||||
|
Loading…
Reference in New Issue
Block a user