Remove unused fast_memcpy() function and link against the object that

contains fast_memcpy() instead.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26610 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-04-30 14:00:32 +00:00
parent d9c0228488
commit b5ea65c04f
2 changed files with 2 additions and 7 deletions

View File

@ -929,7 +929,8 @@ TOOLS_COMMON_LIBS = mp_msg-mencoder.o mp_fifo.o osdep/$(TIMER) osdep/$(GETCH) \
TOOLS/bmovl-test$(EXESUF): TOOLS/bmovl-test.c -lSDL_image
TOOLS/subrip$(EXESUF): TOOLS/subrip.c vobsub.o spudec.o unrar_exec.o \
libswscale/libswscale.a libavutil/libavutil.a $(TOOLS_COMMON_LIBS)
libvo/aclib.o libswscale/libswscale.a libavutil/libavutil.a \
$(TOOLS_COMMON_LIBS)
TOOLS/vfw2menc$(EXESUF): TOOLS/vfw2menc.c -lwinmm -lole32

View File

@ -187,12 +187,6 @@ draw_alpha(int x0, int y0, int w, int h, unsigned char *src, unsigned char *srca
unlink(tmpfname);
}
static void
fast_memcpy(void *a, void *b, int s)
{ //FIXME
memcpy(a, b, s);
}
int
main(int argc, char **argv)
{