# HG changeset patch # User ib # Date 1393348916 0 # Node ID a3deb427384c676ddd285e8511cc0c9198bd42e9 # Parent 2a135c4385bf416f8ee7e0795020e4bb10b262ab Remove VOCTRLs that aren't implemented. This is the return value for all VOCTRLs that aren't in one of the case statements anyway. diff -r 2a135c4385bf -r a3deb427384c libvo/vo_direct3d.c --- 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;