changeset 36231:b5d3d146ecbe

Remove some now unused code.
author reimar
date Sun, 09 Jun 2013 22:30:25 +0000
parents a1e1633fd45b
children 598767b14852
files libvo/vo_matrixview.c
diffstat 1 files changed, 0 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/vo_matrixview.c	Sun Jun 09 22:27:59 2013 +0000
+++ b/libvo/vo_matrixview.c	Sun Jun 09 22:30:25 2013 +0000
@@ -50,7 +50,6 @@
 
 static MPGLContext glctx;
 
-static int int_pause;
 static int eq_contrast;
 static int eq_brightness;
 static uint32_t image_width;
@@ -106,8 +105,6 @@
     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 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: