summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
Diffstat (limited to 'libvo')
-rw-r--r--libvo/Makefile2
-rw-r--r--libvo/video_out.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/libvo/Makefile b/libvo/Makefile
index 46409134a4..c2506871f7 100644
--- a/libvo/Makefile
+++ b/libvo/Makefile
@@ -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)
diff --git a/libvo/video_out.c b/libvo/video_out.c
index ecb751e12e..446823aa86 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -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
};