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
Compare revisions
3f6cc938c237bd3be79e66bbe8400f8b62a7ad50 to acb78a24d95029f7b4a5e5e68cbf464bbc76c63d
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
videolan/libvlcpp
Select target project
No results found
acb78a24d95029f7b4a5e5e68cbf464bbc76c63d
Select Git revision
Branches
autotools
cppcx
master
Tags
0.1.0
0.1.0-rc1
0.1.0-rc2
Swap
Target
videolan/libvlcpp
Select target project
videolan/libvlcpp
robUx4/libvlcpp
stolyarchuk/libvlcpp
hacker1024/libvlcpp
mfkl/libvlcpp
The-personified-devil/libvlcpp
chouquette/libvlcpp
aillean/libvlcpp
adtadas19/libvlcpp
aad9805066254/libvlcpp
asenat/libvlcpp
rovenmaburak/libvlcpp
mstorsjo/libvlcpp
ranjuranjith/libvlcpp
tguillem/libvlcpp
akbaralisalar/libvlcpp
king7532/libvlcpp
Skantes/libvlcpp
f45431082/libvlcpp
alexandre-janniaux/libvlcpp
deyayush6/libvlcpp
21 results
3f6cc938c237bd3be79e66bbe8400f8b62a7ad50
Select Git revision
Branches
autotools
cppcx
master
Tags
0.1.0
0.1.0-rc1
0.1.0-rc2
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
Media: Remove media states bindings in 4.0
· 38a18211
Hugo Beauzée-Luyssen
authored
2 years ago
38a18211
EventManager: Remove onStateChange event
· cdbae9df
Hugo Beauzée-Luyssen
authored
2 years ago
cdbae9df
CI: Bump unstable image
· acb78a24
Hugo Beauzée-Luyssen
authored
2 years ago
acb78a24
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
vlcpp/EventManager.hpp
+1
-1
1 addition, 1 deletion
vlcpp/EventManager.hpp
vlcpp/Media.hpp
+2
-1
2 additions, 1 deletion
vlcpp/Media.hpp
with
4 additions
and
3 deletions
.gitlab-ci.yml
View file @
acb78a24
variables
:
VLC30_IMAGE
:
registry.videolan.org/medialibrary:20201009131431
VLC40_IMAGE
:
registry.videolan.org/libvlcpp-unstable:2022031
4072210
VLC40_IMAGE
:
registry.videolan.org/libvlcpp-unstable:2022031
6125112
.common_build
:
rules
:
...
...
This diff is collapsed.
Click to expand it.
vlcpp/EventManager.hpp
View file @
acb78a24
...
...
@@ -355,7 +355,6 @@ class MediaEventManager : public EventManager
(
*
callback
)(
media
!=
nullptr
?
std
::
make_shared
<
Media
>
(
media
,
true
)
:
nullptr
);
});
}
#endif
/**
* \brief onStateChanged Registers an event called when the Media state changes
...
...
@@ -372,6 +371,7 @@ class MediaEventManager : public EventManager
(
*
callback
)(
e
->
u
.
media_state_changed
.
new_state
);
});
}
#endif
/**
* \brief onSubItemTreeAdded Registers an event called when all subitem have been added.
...
...
This diff is collapsed.
Click to expand it.
vlcpp/Media.hpp
View file @
acb78a24
...
...
@@ -470,6 +470,7 @@ public:
return
libvlc_media_save_meta
(
*
this
)
!=
0
;
}
#if LIBVLC_VERSION_INT < LIBVLC_VERSION(4, 0, 0, 0)
/**
* Get current state of media descriptor object. Possible media states
* are defined in libvlc_structures.c ( libvlc_NothingSpecial=0,
...
...
@@ -484,7 +485,7 @@ public:
{
return
libvlc_media_get_state
(
*
this
);
}
#endif
/**
* Get the current statistics about the media
*
...
...
This diff is collapsed.
Click to expand it.