Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
28c5e660
Commit
28c5e660
authored
Jul 13, 2003
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* 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
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/input/input_ext-intf.c
src/input/input_ext-intf.c
+2
-2
No files found.
src/input/input_ext-intf.c
View file @
28c5e660
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* input_ext-intf.c: services to the interface
* input_ext-intf.c: services to the interface
*****************************************************************************
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* Copyright (C) 1998-2001 VideoLAN
* $Id: input_ext-intf.c,v 1.5
0 2003/05/31 12:24:39 titer
Exp $
* $Id: input_ext-intf.c,v 1.5
1 2003/07/13 19:58:41 massiot
Exp $
*
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
*
...
@@ -71,7 +71,7 @@ void __input_SetStatus( vlc_object_t * p_this, int i_mode )
...
@@ -71,7 +71,7 @@ void __input_SetStatus( vlc_object_t * p_this, int i_mode )
break
;
break
;
case
INPUT_STATUS_FASTER
:
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"
);
msg_Dbg
(
p_input
,
"can not play any faster"
);
}
}
...
...
Write
Preview
Markdown
is supported
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