This patch enables the compilation and linking of vo_md5sum to libvo.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13399 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
ivo 2004-09-20 01:35:43 +00:00
parent e5029c75b6
commit a63a6ac5cb
2 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,7 @@ include config.mak
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)

View File

@ -125,6 +125,7 @@ extern vo_functions_t video_out_tga;
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 @@ vo_functions_t* video_out_drivers[] =
&video_out_tga,
#endif
&video_out_pnm,
&video_out_md5sum,
NULL
};