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
4ff41bfe
Commit
4ff41bfe
authored
2 years ago
by
Hugo Beauzée-Luyssen
Browse files
Options
Downloads
Patches
Plain Diff
MediaPlayer: Allow construction with a const Instance&
parent
0c7d3968
No related branches found
Branches containing commit
Tags
3.3.3
tv3.3.3
Tags containing commit
1 merge request
!29
MediaPlayer: Allow construction with a const Instance&
Pipeline
#240344
passed with stage
in 25 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
vlcpp/MediaPlayer.hpp
+1
-1
1 addition, 1 deletion
vlcpp/MediaPlayer.hpp
with
1 addition
and
1 deletion
vlcpp/MediaPlayer.hpp
+
1
−
1
View file @
4ff41bfe
...
...
@@ -103,7 +103,7 @@ public:
*
* \param p_md the media. Afterwards the p_md can be safely destroyed.
*/
MediaPlayer
(
Instance
&
inst
,
Media
&
md
)
MediaPlayer
(
const
Instance
&
inst
,
Media
&
md
)
:
Internal
{
libvlc_media_player_new_from_media
(
getInternalPtr
<
libvlc_instance_t
>
(
inst
),
getInternalPtr
<
libvlc_media_t
>
(
md
)
),
...
...
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