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
b0e7d093a89eae248ff17cf80e0fd8feb92089c0 to aca01ee33ad03d30b4ac42094749ccbcf76f35c7
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
aca01ee33ad03d30b4ac42094749ccbcf76f35c7
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
b0e7d093a89eae248ff17cf80e0fd8feb92089c0
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 (2)
CI: Bump 4.0 image
· 2a730841
Hugo Beauzée-Luyssen
authored
3 years ago
2a730841
Media: Expose new libvlc_media_get_stat API
· aca01ee3
Hugo Beauzée-Luyssen
authored
3 years ago
aca01ee3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
vlcpp/Media.hpp
+12
-0
12 additions, 0 deletions
vlcpp/Media.hpp
with
13 additions
and
1 deletion
.gitlab-ci.yml
View file @
aca01ee3
variables
:
VLC30_IMAGE
:
registry.videolan.org/medialibrary:20201009131431
VLC40_IMAGE
:
registry.videolan.org/libvlcpp-unstable:202
0
11
19105540
VLC40_IMAGE
:
registry.videolan.org/libvlcpp-unstable:20211
211153737
.common_build
:
rules
:
...
...
This diff is collapsed.
Click to expand it.
vlcpp/Media.hpp
View file @
aca01ee3
...
...
@@ -807,6 +807,18 @@ public:
libvlc_media_thumbnail_request_destroy
(
request
);
}
enum
class
Stat
:
uint8_t
{
Mtime
=
libvlc_media_stat_mtime
,
Size
=
libvlc_media_stat_size
,
};
std
::
pair
<
bool
,
uint64_t
>
stat
(
Stat
s
)
{
uint64_t
value
=
0
;
auto
res
=
libvlc_media_get_stat
(
*
this
,
static_cast
<
uint8_t
>
(
s
),
&
value
)
==
1
;
return
std
::
make_pair
(
res
,
value
);
}
#endif
...
...
This diff is collapsed.
Click to expand it.