[Mplayer-cvslog] CVS: main/libvo vesa_lvo.c,1.16,1.17 vo_dxr2.c,1.6,1.7 vo_ggi.c,1.23,1.24

Alex Beregszaszi alex at mplayerhq.hu
Fri Jul 26 14:42:46 CEST 2002


Update of /cvsroot/mplayer/main/libvo
In directory mail:/var/tmp.root/cvs-serv5697

Modified Files:
	vesa_lvo.c vo_dxr2.c vo_ggi.c 
Log Message:
removed query_vaa

Index: vesa_lvo.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vesa_lvo.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- vesa_lvo.c	9 Feb 2002 00:47:26 -0000	1.16
+++ vesa_lvo.c	26 Jul 2002 12:42:43 -0000	1.17
@@ -48,11 +48,6 @@
 
 extern vo_functions_t video_out_vesa;
 
-static void vlvo_query_vaa(vo_vaa_t *vaa)
-{
-  memset(vaa,0,sizeof(vo_vaa_t));
-}
-
 int vlvo_preinit(const char *drvname)
 {
   printf("vesa_lvo: This branch is no longer supported.\n"
@@ -300,9 +295,6 @@
 uint32_t vlvo_control(uint32_t request, void *data, ...)
 {
   switch (request) {
-  case VOCTRL_QUERY_VAA:
-    vlvo_query_vaa((vo_vaa_t*)data);
-    return VO_TRUE;
   case VOCTRL_QUERY_FORMAT:
     return vlvo_query_info(*((uint32_t*)data));
   }

Index: vo_dxr2.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_dxr2.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- vo_dxr2.c	28 May 2002 13:21:29 -0000	1.6
+++ vo_dxr2.c	26 Jul 2002 12:42:43 -0000	1.7
@@ -826,10 +826,6 @@
 }
 
 
-static void query_vaa(vo_vaa_t *vaa) {
-  memset(vaa,0,sizeof(vo_vaa_t));
-}
-
 static void uninit(void)
 {
   mp_msg(MSGT_VO,MSGL_DBG2, "VO: [dxr2] Uninitializing\n" );
@@ -1003,9 +999,6 @@
     }
     return VO_TRUE; 
   } 
-  case VOCTRL_QUERY_VAA:
-    query_vaa((vo_vaa_t*)data);
-    return VO_TRUE;
   }
   return VO_NOTIMPL;
 }

Index: vo_ggi.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_ggi.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- vo_ggi.c	27 May 2002 17:40:33 -0000	1.23
+++ vo_ggi.c	26 Jul 2002 12:42:43 -0000	1.24
@@ -39,7 +39,6 @@
 /* maximum buffers */
 #define GGI_FRAMES 4
 
-#undef GGI_GAMMA
 #undef GGI_FLIP
 
 #include "../libmpcodecs/mp_image.h"
@@ -526,30 +525,10 @@
     ggiExit();
 }
 
-#ifdef GGI_GAMMA
-/* GAMMA handling */
-static int ggi_get_video_eq(vidix_video_eq_t *info)
-{
-    memset(info, 0, sizeof(vidix_video_eq_t));
-}
-#endif
-
-static void query_vaa(vo_vaa_t *vaa)
-{
-    memset(vaa, 0, sizeof(vo_vaa_t));
-#ifdef GGI_GAMMA
-    vaa->get_video_eq = ggi_get_video_eq;
-    vaa->set_video_eq = ggi_set_video_eq;
-#endif
-}
-
 static uint32_t control(uint32_t request, void *data, ...)
 {
     switch(request)
     {
-	case VOCTRL_QUERY_VAA:
-	    query_vaa((vo_vaa_t*)data);
-	    return VO_TRUE;
 	case VOCTRL_QUERY_FORMAT:
 	    return query_format(*((uint32_t*)data));
 	case VOCTRL_GET_IMAGE:




More information about the MPlayer-cvslog mailing list