]> git.sesse.net Git - vlc/blobdiff - src/input/input_ext-intf.c
* input.c: don't add subtitle track twice when using --sub-file and
[vlc] / src / input / input_ext-intf.c
index 307541e10e3d791e6ef3025ebb7a9fe26e42a72b..785af38b5613a92c67c0711e61bc8a3973c3c32d 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * input_ext-intf.c: services to the interface
  *****************************************************************************
- * Copyright (C) 1998-2001,2003 VideoLAN
- * $Id: input_ext-intf.c,v 1.53 2003/12/03 13:27:51 rocky Exp $
+ * Copyright (C) 1998-2004 VideoLAN
+ * $Id: input_ext-intf.c,v 1.56 2004/01/25 17:16:05 zorglub Exp $
  *
- * Authors: Christophe Massiot <massiot@via.ecp.fr>
+ * Author: Christophe Massiot <massiot@via.ecp.fr>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -164,7 +164,6 @@ void __input_SetRate( vlc_object_t * p_this, int i_rate )
         vlc_mutex_unlock( &p_input->stream.stream_lock );
         return;
     }
-   
     p_input->stream.i_new_status = FORWARD_S;
     p_input->stream.i_new_rate = i_rate;
 
@@ -308,7 +307,7 @@ char * input_OffsetToTime( input_thread_t * p_input, char * psz_buffer,
     if( p_input->stream.i_mux_rate )
     {
         i_seconds = i_offset / 50 / p_input->stream.i_mux_rate;
-       return secstotimestr( psz_buffer, i_seconds );
+        return secstotimestr( psz_buffer, i_seconds );
     }
     else
     {