mirror of https://github.com/mpv-player/mpv
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:
parent
d9c0228488
commit
b5ea65c04f
3
Makefile
3
Makefile
|
@ -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
|
||||
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue