[MPlayer-cvslog] r36327 - trunk/libvo/vo_matrixview.c

reimar subversion at mplayerhq.hu
Mon Jun 10 00:30:25 CEST 2013


Author: reimar
Date: Mon Jun 10 00:30:25 2013
New Revision: 36327

Log:
Remove some now unused code.

Modified:
   trunk/libvo/vo_matrixview.c

Modified: trunk/libvo/vo_matrixview.c
==============================================================================
--- trunk/libvo/vo_matrixview.c	Mon Jun 10 00:27:59 2013	(r36326)
+++ trunk/libvo/vo_matrixview.c	Mon Jun 10 00:30:25 2013	(r36327)
@@ -50,7 +50,6 @@ const LIBVO_EXTERN(matrixview)
 
 static MPGLContext glctx;
 
-static int int_pause;
 static int eq_contrast;
 static int eq_brightness;
 static uint32_t image_width;
@@ -106,8 +105,6 @@ static int config(uint32_t width, uint32
     image_width  = width;
     image_format = format;
 
-    int_pause = 0;
-
     flags |= VOFLAG_DEPTH;
     if (mpglcontext_create_window(&glctx, d_width, d_height, flags, title) < 0)
         return -1;
@@ -259,10 +256,6 @@ static int preinit(const char *arg)
 static int control(uint32_t request, void *data)
 {
     switch (request) {
-    case VOCTRL_PAUSE:
-    case VOCTRL_RESUME:
-        int_pause = (request == VOCTRL_PAUSE);
-        return VO_TRUE;
     case VOCTRL_QUERY_FORMAT:
         return query_format(*(uint32_t*)data);
     case VOCTRL_ONTOP:


More information about the MPlayer-cvslog mailing list