Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
libvlcpp
Manage
Activity
Members
Labels
Plan
Issues
4
Issue boards
Milestones
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
libvlcpp
Commits
a7f07552
Commit
a7f07552
authored
8 years ago
by
Hugo Beauzée-Luyssen
Browse files
Options
Downloads
Patches
Plain Diff
cppcx: Update addSlave prototype
parent
a6c6573a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cppcx/MediaPlayerCX.cpp
+2
-2
2 additions, 2 deletions
cppcx/MediaPlayerCX.cpp
cppcx/MediaPlayerCX.hpp
+1
-1
1 addition, 1 deletion
cppcx/MediaPlayerCX.hpp
with
3 additions
and
3 deletions
cppcx/MediaPlayerCX.cpp
+
2
−
2
View file @
a7f07552
...
...
@@ -403,9 +403,9 @@ namespace libVLCX
return
m_mp
.
setSpu
(
i_spu
);
}
bool
MediaPlayer
::
addSlave
(
SlaveType
type
,
Platform
::
String
^
uri
)
bool
MediaPlayer
::
addSlave
(
SlaveType
type
,
Platform
::
String
^
uri
,
bool
select
)
{
return
m_mp
.
addSlave
(
static_cast
<
VLC
::
MediaSlave
::
Type
>
(
type
),
VLCString
(
uri
));
return
m_mp
.
addSlave
(
static_cast
<
VLC
::
MediaSlave
::
Type
>
(
type
),
VLCString
(
uri
)
,
select
);
}
int64_t
MediaPlayer
::
spuDelay
()
...
...
This diff is collapsed.
Click to expand it.
cppcx/MediaPlayerCX.hpp
+
1
−
1
View file @
a7f07552
...
...
@@ -855,7 +855,7 @@ namespace libVLCX
*/
int
setSpu
(
int
i_spu
);
bool
addSlave
(
SlaveType
type
,
Platform
::
String
^
uri
);
bool
addSlave
(
SlaveType
type
,
Platform
::
String
^
uri
,
bool
select
);
/**
* Get the current subtitle delay. Positive values means subtitles are
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment