Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
88b35bff
Commit
88b35bff
authored
Jun 24, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
D-Bus, The Repeat method should be part of /Player, not /TrackList
Patch by Mirsal ENNAIME, as usual.
parent
1983a7d9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
modules/control/dbus.c
modules/control/dbus.c
+1
-1
modules/control/dbus.h
modules/control/dbus.h
+3
-3
No files found.
modules/control/dbus.c
View file @
88b35bff
...
...
@@ -667,6 +667,7 @@ DBUS_METHOD( handle_player )
METHOD_FUNC
(
"Stop"
,
Stop
);
METHOD_FUNC
(
"Play"
,
Play
);
METHOD_FUNC
(
"Pause"
,
Pause
);
METHOD_FUNC
(
"Repeat"
,
Repeat
);
METHOD_FUNC
(
"VolumeSet"
,
VolumeSet
);
METHOD_FUNC
(
"VolumeGet"
,
VolumeGet
);
METHOD_FUNC
(
"PositionSet"
,
PositionSet
);
...
...
@@ -691,7 +692,6 @@ DBUS_METHOD( handle_tracklist )
METHOD_FUNC
(
"AddTrack"
,
AddTrack
);
METHOD_FUNC
(
"DelTrack"
,
DelTrack
);
METHOD_FUNC
(
"Loop"
,
Loop
);
METHOD_FUNC
(
"Repeat"
,
Repeat
);
METHOD_FUNC
(
"Random"
,
Random
);
return
DBUS_HANDLER_RESULT_NOT_YET_HANDLED
;
...
...
modules/control/dbus.h
View file @
88b35bff
...
...
@@ -127,6 +127,9 @@ const char* psz_introspection_xml_data_player =
" </method>
\n
"
" <method name=
\"
Pause
\"
>
\n
"
" </method>
\n
"
" <method name=
\"
Repeat
\"
>
\n
"
" <arg type=
\"
b
\"
direction=
\"
in
\"
/>
\n
"
" </method>
\n
"
" <method name=
\"
VolumeSet
\"
>
\n
"
" <arg type=
\"
i
\"
direction=
\"
in
\"
/>
\n
"
" </method>
\n
"
...
...
@@ -176,9 +179,6 @@ const char* psz_introspection_xml_data_tracklist =
" <method name=
\"
Loop
\"
>
\n
"
" <arg type=
\"
b
\"
direction=
\"
in
\"
/>
\n
"
" </method>
\n
"
" <method name=
\"
Repeat
\"
>
\n
"
" <arg type=
\"
b
\"
direction=
\"
in
\"
/>
\n
"
" </method>
\n
"
" <method name=
\"
Random
\"
>
\n
"
" <arg type=
\"
b
\"
direction=
\"
in
\"
/>
\n
"
" </method>
\n
"
...
...
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