changeset 36846:a3deb427384c

Remove VOCTRLs that aren't implemented. This is the return value for all VOCTRLs that aren't in one of the case statements anyway.
author ib
date Tue, 25 Feb 2014 17:21:56 +0000
parents 2a135c4385bf
children 85fe1bbe2d53
files libvo/vo_direct3d.c
diffstat 1 files changed, 0 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/vo_direct3d.c	Tue Feb 25 17:17:00 2014 +0000
+++ b/libvo/vo_direct3d.c	Tue Feb 25 17:21:56 2014 +0000
@@ -782,18 +782,12 @@
         vo_w32_fullscreen();
         resize_d3d();
         return VO_TRUE;
-    case VOCTRL_RESET:
-        return VO_NOTIMPL;
     case VOCTRL_PAUSE:
         priv->is_paused = 1;
         return VO_TRUE;
     case VOCTRL_RESUME:
         priv->is_paused = 0;
         return VO_TRUE;
-    case VOCTRL_SET_EQUALIZER:
-        return VO_NOTIMPL;
-    case VOCTRL_GET_EQUALIZER:
-        return VO_NOTIMPL;
     case VOCTRL_ONTOP:
         vo_w32_ontop();
         return VO_TRUE;