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
cd8bde84
Commit
cd8bde84
authored
Apr 02, 2009
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbus: fix regression introduced in
33132b6f
parent
b265eaa9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/control/dbus.c
modules/control/dbus.c
+2
-2
No files found.
modules/control/dbus.c
View file @
cd8bde84
...
@@ -2094,9 +2094,9 @@ static int UpdateCaps( intf_thread_t* p_intf )
...
@@ -2094,9 +2094,9 @@ static int UpdateCaps( intf_thread_t* p_intf )
i_caps
|=
CAPS_CAN_PAUSE
;
i_caps
|=
CAPS_CAN_PAUSE
;
if
(
var_GetBool
(
p_input
,
"can-seek"
)
)
if
(
var_GetBool
(
p_input
,
"can-seek"
)
)
i_caps
|=
CAPS_CAN_SEEK
;
i_caps
|=
CAPS_CAN_SEEK
;
if
(
var_Get
Integer
(
p_input
,
"can-rate"
)
)
if
(
var_Get
Bool
(
p_input
,
"can-rate"
)
)
i_caps
|=
CAPS_CAN_CONTROL_RATE
;
i_caps
|=
CAPS_CAN_CONTROL_RATE
;
if
(
var_Get
Integer
(
p_input
,
"can-rewind"
)
)
if
(
var_Get
Bool
(
p_input
,
"can-rewind"
)
)
i_caps
|=
CAPS_CAN_CONTROL_REWIND
;
i_caps
|=
CAPS_CAN_CONTROL_REWIND
;
if
(
var_CountChoices
(
p_input
,
"spu-es"
)
>
0
)
if
(
var_CountChoices
(
p_input
,
"spu-es"
)
>
0
)
i_caps
|=
CAPS_CAN_CONTROL_SUBTITLES
;
i_caps
|=
CAPS_CAN_CONTROL_SUBTITLES
;
...
...
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