# HG changeset patch # User arpi # Date 1013218235 0 # Node ID 88843786301e538753f6ce48e5f28846461dcbd0 # Parent badb76094897fe493ef35cda599fffea30e7970d vo_yuv4mpeg added diff -r badb76094897 -r 88843786301e libvo/Makefile --- a/libvo/Makefile Sat Feb 09 01:29:11 2002 +0000 +++ b/libvo/Makefile Sat Feb 09 01:30:35 2002 +0000 @@ -3,7 +3,7 @@ LIBNAME = libvo.a -SRCS=aspect.c aclib.c osd.c font_load.c video_out.c vo_null.c vo_pgm.c vo_md5.c vo_mpegpes.c x11_common.c $(OPTIONAL_SRCS) img_format.c sub.c +SRCS=aspect.c aclib.c osd.c font_load.c video_out.c vo_null.c vo_pgm.c vo_md5.c vo_mpegpes.c x11_common.c vo_yuv4mpeg.c $(OPTIONAL_SRCS) img_format.c sub.c OBJS=$(SRCS:.c=.o) ifeq ($(VIDIX),yes) diff -r badb76094897 -r 88843786301e libvo/video_out.c --- a/libvo/video_out.c Sat Feb 09 01:29:11 2002 +0000 +++ b/libvo/video_out.c Sat Feb 09 01:30:35 2002 +0000 @@ -84,6 +84,7 @@ extern vo_functions_t video_out_ggi; extern vo_functions_t video_out_aa; extern vo_functions_t video_out_mpegpes; +extern vo_functions_t video_out_yuv4mpeg; extern vo_functions_t video_out_dxr3; #ifdef HAVE_VESA extern vo_functions_t video_out_vesa; @@ -154,6 +155,7 @@ &video_out_pgm, &video_out_md5, &video_out_mpegpes, + &video_out_yuv4mpeg, #ifdef HAVE_VESA &video_out_vesa, #endif