# HG changeset patch # User alex # Date 1010878220 0 # Node ID 562b43b604d48eac44af24e66bcd3f5773f941b7 # Parent 467a7141f5c95f6d5e569fcfc693e2fcc9103492 added vo_xvidix diff -r 467a7141f5c9 -r 562b43b604d4 libvo/Makefile --- a/libvo/Makefile Sat Jan 12 23:28:22 2002 +0000 +++ b/libvo/Makefile Sat Jan 12 23:30:20 2002 +0000 @@ -7,7 +7,7 @@ OBJS=$(SRCS:.c=.o) ifeq ($(VIDIX),yes) -SRCS += vosub_vidix.c +SRCS += vosub_vidix.c vo_xvidix.c endif CFLAGS = $(OPTFLAGS) -I. -I.. $(SDL_INC) $(X11_INC) $(EXTRA_INC) $(DVB_INC) -DMPG12PLAY #-Wall diff -r 467a7141f5c9 -r 562b43b604d4 libvo/video_out.c --- a/libvo/video_out.c Sat Jan 12 23:28:22 2002 +0000 +++ b/libvo/video_out.c Sat Jan 12 23:30:20 2002 +0000 @@ -78,6 +78,10 @@ extern vo_functions_t video_out_vesa; #endif extern vo_functions_t video_out_directfb; +#ifdef CONFIG_VIDIX +extern vo_functions_t video_out_xvidix; +#endif + vo_functions_t* video_out_drivers[] = { #ifdef HAVE_XMGA @@ -142,5 +146,8 @@ #ifdef HAVE_DIRECTFB &video_out_directfb, #endif +#ifdef CONFIG_VIDIX + &video_out_xvidix, +#endif NULL };