[Mplayer-cvslog] CVS: main/libvo Makefile, 1.44, 1.45 video_out.c, 1.89, 1.90
Ivo van Poorten CVS
syncmail at mplayerhq.hu
Mon Sep 20 03:35:46 CEST 2004
CVS change done by Ivo van Poorten CVS
Update of /cvsroot/mplayer/main/libvo
In directory mail:/var2/tmp/cvs-serv22645
Modified Files:
Makefile video_out.c
Log Message:
This patch enables the compilation and linking of vo_md5sum to libvo.
Index: Makefile
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/Makefile,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- Makefile 20 Sep 2004 01:31:26 -0000 1.44
+++ Makefile 20 Sep 2004 01:35:43 -0000 1.45
@@ -3,7 +3,7 @@
LIBNAME = libvo.a
-SRCS=geometry.c aspect.c aclib.c osd.c font_load.c gtf.c spuenc.c video_out.c vo_null.c vo_pgm.c vo_md5.c vo_mpegpes.c vo_yuv4mpeg.c $(OPTIONAL_SRCS) sub.c font_load_ft.c vo_pnm.c
+SRCS=geometry.c aspect.c aclib.c osd.c font_load.c gtf.c spuenc.c video_out.c vo_null.c vo_pgm.c vo_md5.c vo_mpegpes.c vo_yuv4mpeg.c $(OPTIONAL_SRCS) sub.c font_load_ft.c vo_pnm.c vo_md5sum.c md5sum.c
OBJS=$(SRCS:.c=.o)
ifeq ($(VIDIX),yes)
Index: video_out.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/video_out.c,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- video_out.c 20 Sep 2004 01:31:26 -0000 1.89
+++ video_out.c 20 Sep 2004 01:35:43 -0000 1.90
@@ -125,6 +125,7 @@
extern vo_functions_t video_out_quartz;
#endif
extern vo_functions_t video_out_pnm;
+extern vo_functions_t video_out_md5sum;
vo_functions_t* video_out_drivers[] =
{
@@ -242,6 +243,7 @@
&video_out_tga,
#endif
&video_out_pnm,
+ &video_out_md5sum,
NULL
};
More information about the MPlayer-cvslog
mailing list