]> git.sesse.net Git - vlc/commitdiff
* rc: Fixed a bug with seek command.
authorLaurent Aimar <fenrir@videolan.org>
Mon, 28 Jul 2003 07:16:50 +0000 (07:16 +0000)
committerLaurent Aimar <fenrir@videolan.org>
Mon, 28 Jul 2003 07:16:50 +0000 (07:16 +0000)
       Added support of "seek n%" (Usefull when mux_rate is nul )

modules/control/rc/rc.c

index b70e08cc821c25f2a832d6129e83c743110ea307..4d2530a000560ed3c51cad013ef06709de8a85c5 100644 (file)
@@ -2,7 +2,7 @@
  * rc.c : remote control stdin/stdout plugin for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: rc.c,v 1.36 2003/07/23 01:13:47 gbazin Exp $
+ * $Id: rc.c,v 1.37 2003/07/28 07:16:50 fenrir Exp $
  *
  * Authors: Peter Surda <shurdeek@panorama.sth.ac.at>
  *
@@ -527,8 +527,19 @@ static int Input( vlc_object_t *p_this, char const *psz_cmd,
     }
     else if( !strcmp( psz_cmd, "seek" ) )
     {
-        input_Seek( p_input, atoi( newval.psz_string ),
-                    INPUT_SEEK_SECONDS | INPUT_SEEK_SET );
+        if( strlen( newval.psz_string ) > 0 &&
+            newval.psz_string[strlen( newval.psz_string ) - 1] == '%' )
+        {
+            input_Seek( p_input, atoi( newval.psz_string ),
+                        INPUT_SEEK_PERCENT | INPUT_SEEK_SET );
+        }
+        else
+        {
+            input_Seek( p_input, atoi( newval.psz_string ),
+                        INPUT_SEEK_SECONDS | INPUT_SEEK_SET );
+        }
+        vlc_object_release( p_input );
+        return VLC_SUCCESS;
     }
     else if( !strcmp( psz_cmd, "chapter" ) ||
              !strcmp( psz_cmd, "chapter_n" ) ||