[MPlayer-cvslog] r36942 - trunk/libvo/vo_direct3d.c

ib subversion at mplayerhq.hu
Tue Feb 25 18:21:56 CET 2014


Author: ib
Date: Tue Feb 25 18:21:56 2014
New Revision: 36942

Log:
Remove VOCTRLs that aren't implemented.

This is the return value for all VOCTRLs
that aren't in one of the case statements
anyway.

Modified:
   trunk/libvo/vo_direct3d.c

Modified: trunk/libvo/vo_direct3d.c
==============================================================================
--- trunk/libvo/vo_direct3d.c	Tue Feb 25 18:17:00 2014	(r36941)
+++ trunk/libvo/vo_direct3d.c	Tue Feb 25 18:21:56 2014	(r36942)
@@ -782,18 +782,12 @@ static int control(uint32_t request, voi
         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;


More information about the MPlayer-cvslog mailing list