Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
28c5e660
Commit
28c5e660
authored
Jul 13, 2003
by
Christophe Massiot
Browse files
* Only allow 4x fast-forward, since 8x won't work on low-end machines,
and our dear users report it as a bug.
parent
a5969564
Changes
1
Show whitespace changes
Inline
Side-by-side
src/input/input_ext-intf.c
View file @
28c5e660
...
...
@@ -2,7 +2,7 @@
* input_ext-intf.c: services to the interface
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: input_ext-intf.c,v 1.5
0
2003/0
5/31 12:24:39 titer
Exp $
* $Id: input_ext-intf.c,v 1.5
1
2003/0
7/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"
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment