Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
b4160df3
Commit
b4160df3
authored
Dec 08, 2003
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/control/hotkeys.c: msvc compilation fix.
parent
9bdee3da
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
modules/control/hotkeys.c
modules/control/hotkeys.c
+7
-7
No files found.
modules/control/hotkeys.c
View file @
b4160df3
...
...
@@ -2,7 +2,7 @@
* hotkeys.c: Hotkey handling for vlc
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: hotkeys.c,v 1.
8 2003/11/04 02:23:11 fenrir
Exp $
* $Id: hotkeys.c,v 1.
9 2003/12/08 13:04:58 gbazin
Exp $
*
* Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
*
...
...
@@ -278,37 +278,37 @@ static void Run( intf_thread_t *p_intf )
else
if
(
i_action
==
ACTIONID_JUMP_BACKWARD_10SEC
)
{
vout_OSDMessage
(
VLC_OBJECT
(
p_intf
),
_
(
"Jump -10 seconds"
)
);
val
.
i_time
=
-
10000000
LL
;
val
.
i_time
=
-
10000000
;
var_Set
(
p_input
,
"time-offset"
,
val
);
}
else
if
(
i_action
==
ACTIONID_JUMP_FORWARD_10SEC
)
{
vout_OSDMessage
(
VLC_OBJECT
(
p_intf
),
_
(
"Jump +10 seconds"
)
);
val
.
i_time
=
10000000
LL
;
val
.
i_time
=
10000000
;
var_Set
(
p_input
,
"time-offset"
,
val
);
}
else
if
(
i_action
==
ACTIONID_JUMP_BACKWARD_1MIN
)
{
vout_OSDMessage
(
VLC_OBJECT
(
p_intf
),
_
(
"Jump -1 minute"
)
);
val
.
i_time
=
-
60000000
LL
;
val
.
i_time
=
-
60000000
;
var_Set
(
p_input
,
"time-offset"
,
val
);
}
else
if
(
i_action
==
ACTIONID_JUMP_FORWARD_1MIN
)
{
vout_OSDMessage
(
VLC_OBJECT
(
p_intf
),
_
(
"Jump +1 minute"
)
);
val
.
i_time
=
60000000
LL
;
val
.
i_time
=
60000000
;
var_Set
(
p_input
,
"time-offset"
,
val
);
}
else
if
(
i_action
==
ACTIONID_JUMP_BACKWARD_5MIN
)
{
vout_OSDMessage
(
VLC_OBJECT
(
p_intf
),
_
(
"Jump -5 minutes"
)
);
val
.
i_time
=
-
300000000
LL
;
val
.
i_time
=
-
300000000
;
var_Set
(
p_input
,
"time-offset"
,
val
);
}
else
if
(
i_action
==
ACTIONID_JUMP_FORWARD_5MIN
)
{
vout_OSDMessage
(
VLC_OBJECT
(
p_intf
),
_
(
"Jump +5 minutes"
)
);
val
.
i_time
=
300000000
LL
;
val
.
i_time
=
300000000
;
var_Set
(
p_input
,
"time-offset"
,
val
);
}
else
if
(
i_action
==
ACTIONID_NEXT
)
...
...
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