[MPlayer-cvslog] CVS: main/libvo mga_common.c, 1.60, 1.61 vesa_lvo.c, 1.18, 1.19 vo_aa.c, 1.45, 1.46 vo_bl.c, 1.9, 1.10 vo_caca.c, 1.1, 1.2 vo_cvidix.c, 1.13, 1.14 vo_dfbmga.c, 1.26, 1.27 vo_dga.c, 1.71, 1.72 vo_directfb2.c, 1.17, 1.18 vo_dxr3.c, 1.123, 1.124 vo_fbdev.c, 1.90, 1.91 vo_fbdev2.c, 1.5, 1.6 vo_gif89a.c, 1.12, 1.13 vo_gl.c, 1.67, 1.68 vo_jpeg.c, 1.27, 1.28 vo_md5sum.c, 1.4, 1.5 vo_mga.c, 1.38, 1.39 vo_mpegpes.c, 1.40, 1.41 vo_null.c, 1.12, 1.13 vo_png.c, 1.25, 1.26 vo_pnm.c, 1.7, 1.8 vo_sdl.c, 1.120, 1.121 vo_svga.c, 1.77, 1.78 vo_syncfb.c, 1.14, 1.15 vo_tdfx_vid.c, 1.4, 1.5 vo_tga.c, 1.2, 1.3 vo_vesa.c, 1.104, 1.105 vo_winvidix.c, 1.5, 1.6 vo_x11.c, 1.141, 1.142 vo_xmga.c, 1.91, 1.92 vo_xover.c, 1.11, 1.12 vo_xv.c, 1.164, 1.165 vo_xvidix.c, 1.71, 1.72 vo_xvmc.c, 1.19, 1.20 vo_yuv4mpeg.c, 1.21, 1.22 vo_zr.c, 1.30, 1.31

Dominik 'Rathann' Mierzejewski dominik at rangers.eu.org
Wed Apr 20 00:13:28 CEST 2005


On Monday, 18 April 2005 at 17:52, Jindrich Makovicka CVS wrote:
> CVS change done by Jindrich Makovicka CVS
> 
> Update of /cvsroot/mplayer/main/libvo
> In directory mail:/var2/tmp/cvs-serv29755/libvo
> 
> Modified Files:
> 	mga_common.c vesa_lvo.c vo_aa.c vo_bl.c vo_caca.c vo_cvidix.c 
> 	vo_dfbmga.c vo_dga.c vo_directfb2.c vo_dxr3.c vo_fbdev.c 
> 	vo_fbdev2.c vo_gif89a.c vo_gl.c vo_jpeg.c vo_md5sum.c vo_mga.c 
> 	vo_mpegpes.c vo_null.c vo_png.c vo_pnm.c vo_sdl.c vo_svga.c 
> 	vo_syncfb.c vo_tdfx_vid.c vo_tga.c vo_vesa.c vo_winvidix.c 
> 	vo_x11.c vo_xmga.c vo_xover.c vo_xv.c vo_xvidix.c vo_xvmc.c 
> 	vo_yuv4mpeg.c vo_zr.c 
> Log Message:
> replace VO and VF numeric flags with #defined identifiers
[...]
> Index: vo_mga.c
> ===================================================================
> RCS file: /cvsroot/mplayer/main/libvo/vo_mga.c,v
> retrieving revision 1.38
> retrieving revision 1.39
> diff -u -r1.38 -r1.39
> --- vo_mga.c	3 Dec 2004 20:55:00 -0000	1.38
> +++ vo_mga.c	18 Apr 2005 15:52:38 -0000	1.39
> @@ -34,7 +34,7 @@
>  
>  #define FBDEV	"/dev/fb0"
>  
> -static uint32_t config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t fullscreen, char *title, uint32_t format)
> +static uint32_t config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t flags, char *title, uint32_t format)
>  {
>  
>  //	if (f >= 0) mga_uninit();
> @@ -60,7 +60,7 @@
>  		aspect_save_prescale(d_width,d_height);
>  		aspect_save_screenres(vo_screenwidth,vo_screenheight);
>  	
> -		if(fullscreen&0x01) { /* -fs */
> +		if(fullscreen&VOFLAG_FULLSCREEN) { /* -fs */

100l!
vo_mga.c: In function `config':
vo_mga.c:63: error: `fullscreen' undeclared (first use in this function)
vo_mga.c:63: error: (Each undeclared identifier is reported only once
vo_mga.c:63: error: for each function it appears in.)

At least compile the code before commiting, please.

Fixed.

R.

-- 
MPlayer RPMs maintainer: http://rpm.greysector.net/mplayer/
"I am Grey. I stand between the candle and the star. We are Grey.
 We stand between the darkness ... and the light."
        -- Delenn in Grey Council in Babylon 5:"Babylon Squared"




More information about the MPlayer-cvslog mailing list