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
0b96015d
Commit
0b96015d
authored
Aug 13, 2011
by
Mirsal Ennaime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbus: Fix the org.mpris.MediaPlayer2.Player.Seek method signature
* Use an int64 argument * Update the copyright headers
parent
6385a3d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
modules/control/dbus/dbus_player.c
modules/control/dbus/dbus_player.c
+5
-5
No files found.
modules/control/dbus/dbus_player.c
View file @
0b96015d
/*****************************************************************************
* dbus-player.h : dbus control module (mpris v1.0) - /Player object
*****************************************************************************
* Copyright © 2006-20
08
Rafaël Carré
* Copyright © 2007-201
0
Mirsal Ennaime
* Copyright © 2009-201
0
The VideoLAN team
* Copyright © 2006-20
11
Rafaël Carré
* Copyright © 2007-201
1
Mirsal Ennaime
* Copyright © 2009-201
1
The VideoLAN team
* $Id$
*
* Authors: Mirsal Ennaime <mirsal at mirsal fr>
...
...
@@ -127,7 +127,7 @@ DBUS_METHOD( SetPosition )
DBUS_METHOD
(
Seek
)
{
REPLY_INIT
;
dbus_int
32
_t
i_step
;
dbus_int
64
_t
i_step
;
vlc_value_t
newpos
;
mtime_t
i_pos
;
...
...
@@ -135,7 +135,7 @@ DBUS_METHOD( Seek )
dbus_error_init
(
&
error
);
dbus_message_get_args
(
p_from
,
&
error
,
DBUS_TYPE_INT
32
,
&
i_step
,
DBUS_TYPE_INT
64
,
&
i_step
,
DBUS_TYPE_INVALID
);
if
(
dbus_error_is_set
(
&
error
)
)
...
...
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