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
b740301c
Commit
b740301c
authored
Feb 06, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbus: remove useless intf_sys_t.b_unique
parent
418038f1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
3 deletions
+1
-3
modules/control/dbus/dbus.c
modules/control/dbus/dbus.c
+1
-2
modules/control/dbus/dbus_common.h
modules/control/dbus/dbus_common.h
+0
-1
No files found.
modules/control/dbus/dbus.c
View file @
b740301c
...
...
@@ -179,8 +179,7 @@ static int Open( vlc_object_t *p_this )
}
char
psz_service_name
[
sizeof
(
DBUS_MPRIS_BUS_NAME
)
+
12
];
p_sys
->
b_unique
=
var_CreateGetBool
(
p_intf
,
"dbus-unique-service-id"
);
if
(
p_sys
->
b_unique
)
if
(
var_InheritBool
(
p_intf
,
"dbus-unique-service-id"
)
)
snprintf
(
psz_service_name
,
sizeof
(
psz_service_name
),
DBUS_MPRIS_BUS_NAME
"-%d"
,
getpid
()
);
else
...
...
modules/control/dbus/dbus_common.h
View file @
b740301c
...
...
@@ -103,7 +103,6 @@ struct intf_sys_t
input_thread_t
*
p_input
;
mtime_t
i_last_input_pos
;
/* Only access it from the input thread */
mtime_t
i_last_input_pos_event
;
/* idem */
bool
b_unique
;
};
enum
...
...
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