Mercurial > mplayer.hg
changeset 4599:88843786301e
vo_yuv4mpeg added
author | arpi |
---|---|
date | Sat, 09 Feb 2002 01:30:35 +0000 |
parents | badb76094897 |
children | bcaeff069237 |
files | libvo/Makefile libvo/video_out.c |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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)
--- 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