Mercurial > mplayer.hg
changeset 4124:562b43b604d4
added vo_xvidix
author | alex |
---|---|
date | Sat, 12 Jan 2002 23:30:20 +0000 |
parents | 467a7141f5c9 |
children | 88de258b3ea9 |
files | libvo/Makefile libvo/video_out.c |
diffstat | 2 files changed, 8 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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
--- 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 };