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
7beb3b35
Commit
7beb3b35
authored
Feb 02, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Used vout_OSDEpg for the time hotkeys.
Based on a patch by Adrien Maglo.
parent
b0a1ac2e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
modules/control/hotkeys.c
modules/control/hotkeys.c
+3
-2
No files found.
modules/control/hotkeys.c
View file @
7beb3b35
...
@@ -737,9 +737,10 @@ static int PutAction( intf_thread_t *p_intf, int i_action )
...
@@ -737,9 +737,10 @@ static int PutAction( intf_thread_t *p_intf, int i_action )
snprintf
(
psz_msg
,
sizeof
(
psz_msg
),
_
(
"%.2fx"
),
f_rate
);
snprintf
(
psz_msg
,
sizeof
(
psz_msg
),
_
(
"%.2fx"
),
f_rate
);
vout_OSDMessage
(
VLC_OBJECT
(
p_input
),
DEFAULT_CHAN
,
"%s"
,
psz_msg
);
vout_OSDMessage
(
VLC_OBJECT
(
p_input
),
DEFAULT_CHAN
,
"%s"
,
psz_msg
);
}
}
else
if
(
i_action
==
ACTIONID_POSITION
&&
b_seekable
)
else
if
(
i_action
==
ACTIONID_POSITION
)
{
{
DisplayPosition
(
p_intf
,
p_vout
,
p_input
);
if
(
(
!
p_vout
||
vout_OSDEpg
(
p_vout
,
input_GetItem
(
p_input
)
)
)
&&
b_seekable
)
DisplayPosition
(
p_intf
,
p_vout
,
p_input
);
}
}
else
if
(
i_action
>=
ACTIONID_PLAY_BOOKMARK1
&&
else
if
(
i_action
>=
ACTIONID_PLAY_BOOKMARK1
&&
i_action
<=
ACTIONID_PLAY_BOOKMARK10
)
i_action
<=
ACTIONID_PLAY_BOOKMARK10
)
...
...
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