]> git.sesse.net Git - vlc/blobdiff - src/video_output/vout_intf.c
Remove useless vout_vaControlDefault
[vlc] / src / video_output / vout_intf.c
index 6cb8459bdc17a61c3a8d90f2c6b236e9044612af..8160e854a4a3674f53eb0c1b7b8ea4646a94ddfb 100644 (file)
@@ -898,20 +898,6 @@ void vout_EnableFilter( vout_thread_t *p_vout, char *psz_name,
     free( psz_string );
 }
 
-/*****************************************************************************
- * vout_ControlDefault: default methods for video output control.
- *****************************************************************************/
-int vout_vaControlDefault( vout_thread_t *p_vout, int i_query, va_list args )
-{
-    (void)args;
-    switch( i_query )
-    {
-    default:
-        msg_Dbg( p_vout, "control query not supported" );
-    }
-    return VLC_EGENERIC;
-}
-
 /*****************************************************************************
  * InitWindowSize: find the initial dimensions the video window should have.
  *****************************************************************************