Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
fca9baf0
Commit
fca9baf0
authored
Jan 21, 2003
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./src/input/input_ext_intf.c
- FASTER and SLOWER now take into account the current rate.
parent
4238a153
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
21 deletions
+29
-21
src/input/input_ext-intf.c
src/input/input_ext-intf.c
+29
-21
No files found.
src/input/input_ext-intf.c
View file @
fca9baf0
...
...
@@ -2,7 +2,7 @@
* input_ext-intf.c: services to the interface
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: input_ext-intf.c,v 1.4
6 2002/12/25 23:39:01 sam
Exp $
* $Id: input_ext-intf.c,v 1.4
7 2003/01/21 14:15:05 hartman
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -74,25 +74,29 @@ void __input_SetStatus( vlc_object_t * p_this, int i_mode )
/* If we are already going too fast, go back to default rate */
if
(
p_input
->
stream
.
control
.
i_rate
*
8
<=
DEFAULT_RATE
)
{
p_input
->
stream
.
i_new_status
=
PLAYING_S
;
msg_Dbg
(
p_input
,
"playing at normal rate"
);
msg_Dbg
(
p_input
,
"can not play any faster"
);
}
else
{
p_input
->
stream
.
i_new_status
=
FORWARD_S
;
p_input
->
stream
.
i_new_rate
=
p_input
->
stream
.
control
.
i_rate
/
2
;
if
(
p_input
->
stream
.
control
.
i_rate
<
DEFAULT_RATE
&&
p_input
->
stream
.
control
.
i_status
==
FORWARD_S
)
if
(
p_input
->
stream
.
i_new_rate
<
DEFAULT_RATE
)
{
p_input
->
stream
.
i_new_rate
=
p_input
->
stream
.
control
.
i_rate
/
2
;
msg_Dbg
(
p_input
,
"playing at %i:1 fast forward"
,
DEFAULT_RATE
/
p_input
->
stream
.
i_new_rate
)
;
}
else
else
if
(
p_input
->
stream
.
i_new_rate
>
DEFAULT_RATE
)
{
p_input
->
stream
.
i_new_rate
=
DEFAULT_RATE
/
2
;
msg_Dbg
(
p_input
,
"playing at 1:%i slow motion"
,
p_input
->
stream
.
i_new_rate
/
DEFAULT_RATE
);
}
else
if
(
p_input
->
stream
.
i_new_rate
==
DEFAULT_RATE
)
{
p_input
->
stream
.
i_new_status
=
PLAYING_S
;
msg_Dbg
(
p_input
,
"playing at normal rate"
);
}
msg_Dbg
(
p_input
,
"playing at %i:1 fast forward"
,
DEFAULT_RATE
/
p_input
->
stream
.
i_new_rate
);
}
break
;
...
...
@@ -100,25 +104,29 @@ void __input_SetStatus( vlc_object_t * p_this, int i_mode )
/* If we are already going too slow, go back to default rate */
if
(
p_input
->
stream
.
control
.
i_rate
>=
8
*
DEFAULT_RATE
)
{
p_input
->
stream
.
i_new_status
=
PLAYING_S
;
msg_Dbg
(
p_input
,
"playing at normal rate"
);
msg_Dbg
(
p_input
,
"can not play any slower"
);
}
else
{
p_input
->
stream
.
i_new_status
=
FORWARD_S
;
p_input
->
stream
.
i_new_rate
=
p_input
->
stream
.
control
.
i_rate
*
2
;
if
(
p_input
->
stream
.
control
.
i_rate
>
DEFAULT_RATE
&&
p_input
->
stream
.
control
.
i_status
==
FORWARD_S
)
if
(
p_input
->
stream
.
i_new_rate
<
DEFAULT_RATE
)
{
p_input
->
stream
.
i_new_rate
=
p_input
->
stream
.
control
.
i_rate
*
2
;
msg_Dbg
(
p_input
,
"playing at %i:1 fast forward"
,
DEFAULT_RATE
/
p_input
->
stream
.
i_new_rate
)
;
}
else
else
if
(
p_input
->
stream
.
i_new_rate
>
DEFAULT_RATE
)
{
p_input
->
stream
.
i_new_rate
=
DEFAULT_RATE
*
2
;
}
msg_Dbg
(
p_input
,
"playing at 1:%i slow motion"
,
msg_Dbg
(
p_input
,
"playing at 1:%i slow motion"
,
p_input
->
stream
.
i_new_rate
/
DEFAULT_RATE
);
}
else
if
(
p_input
->
stream
.
i_new_rate
==
DEFAULT_RATE
)
{
p_input
->
stream
.
i_new_status
=
PLAYING_S
;
msg_Dbg
(
p_input
,
"playing at normal rate"
);
}
}
break
;
...
...
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