]> git.sesse.net Git - vlc/commitdiff
* Only allow 4x fast-forward, since 8x won't work on low-end machines,
authorChristophe Massiot <massiot@videolan.org>
Sun, 13 Jul 2003 19:58:41 +0000 (19:58 +0000)
committerChristophe Massiot <massiot@videolan.org>
Sun, 13 Jul 2003 19:58:41 +0000 (19:58 +0000)
  and our dear users report it as a bug.

src/input/input_ext-intf.c

index 8185c2cd106eaa54ca626a346ac90cab6071848e..927a2b481ae3dce0125529f22c21a5c546219691 100644 (file)
@@ -2,7 +2,7 @@
  * input_ext-intf.c: services to the interface
  *****************************************************************************
  * Copyright (C) 1998-2001 VideoLAN
- * $Id: input_ext-intf.c,v 1.50 2003/05/31 12:24:39 titer Exp $
+ * $Id: input_ext-intf.c,v 1.51 2003/07/13 19:58:41 massiot Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -71,7 +71,7 @@ void __input_SetStatus( vlc_object_t * p_this, int i_mode )
         break;
 
     case INPUT_STATUS_FASTER:
-        if( p_input->stream.control.i_rate * 8 <= DEFAULT_RATE )
+        if( p_input->stream.control.i_rate * 4 <= DEFAULT_RATE )
         {
             msg_Dbg( p_input, "can not play any faster" );
         }