vlc | branch: master | Rémi Duraffort <[email protected]> | Thu Sep 23 21:33:28 2010 +0200| [400225775310c82d83a45dd34e7e5805ba4b3a9e] | committer: Rémi Duraffort
vlm: remove dead code (AFAIK a relative seek does exactly the same thing). > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=400225775310c82d83a45dd34e7e5805ba4b3a9e --- src/input/vlmshell.c | 37 ------------------------------------- 1 files changed, 0 insertions(+), 37 deletions(-) diff --git a/src/input/vlmshell.c b/src/input/vlmshell.c index fba0774..d3ba1b8 100644 --- a/src/input/vlmshell.c +++ b/src/input/vlmshell.c @@ -459,43 +459,6 @@ static int ExecuteControl( vlm_t *p_vlm, const char *psz_name, const int i_arg, i_result = VLC_EGENERIC; } } - else if( !strcmp( psz_control, "rewind" ) ) - { - if( psz_argument ) - { - const double d_scale = us_atof( psz_argument ); - double d_position; - - vlm_ControlInternal( p_vlm, VLM_GET_MEDIA_INSTANCE_POSITION, p_media->cfg.id, psz_instance, &d_position ); - d_position -= (d_scale / 1000.0); - if( d_position < 0.0 ) - d_position = 0.0; - i_result = vlm_ControlInternal( p_vlm, VLM_SET_MEDIA_INSTANCE_POSITION, p_media->cfg.id, psz_instance, d_position ); - } - else - { - i_result = VLC_EGENERIC; - } - } - else if( !strcmp( psz_control, "forward" ) ) - { - if( psz_argument ) - { - const double d_scale = us_atof( psz_argument ); - double d_position; - - vlm_ControlInternal( p_vlm, VLM_GET_MEDIA_INSTANCE_POSITION, p_media->cfg.id, psz_instance, &d_position ); - d_position += (d_scale / 1000.0); - if( d_position > 1.0 ) - d_position = 1.0; - i_result = vlm_ControlInternal( p_vlm, VLM_SET_MEDIA_INSTANCE_POSITION, p_media->cfg.id, psz_instance, d_position ); - - } - else - { - i_result = VLC_EGENERIC; - } - } else if( !strcmp( psz_control, "stop" ) ) { i_result = vlm_ControlInternal( p_vlm, VLM_STOP_MEDIA_INSTANCE, p_media->cfg.id, psz_instance ); _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
