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
aca01ee33ad03d30b4ac42094749ccbcf76f35c7 to d41003f7f2af71ddf7578c88bb8c06be18723cfa
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
d41003f7f2af71ddf7578c88bb8c06be18723cfa
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
aca01ee33ad03d30b4ac42094749ccbcf76f35c7
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
· 887c0117
Hugo Beauzée-Luyssen
authored
3 years ago
887c0117
Media: Rename stat -> fileStat
· d41003f7
Hugo Beauzée-Luyssen
authored
3 years ago
Following
vlc!1225
d41003f7
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
+5
-5
5 additions, 5 deletions
vlcpp/Media.hpp
with
6 additions
and
6 deletions
.gitlab-ci.yml
View file @
d41003f7
variables
:
VLC30_IMAGE
:
registry.videolan.org/medialibrary:20201009131431
VLC40_IMAGE
:
registry.videolan.org/libvlcpp-unstable:202
1
1211
153737
VLC40_IMAGE
:
registry.videolan.org/libvlcpp-unstable:202
20
1211
73942
.common_build
:
rules
:
...
...
This diff is collapsed.
Click to expand it.
vlcpp/Media.hpp
View file @
d41003f7
...
...
@@ -807,16 +807,16 @@ public:
libvlc_media_thumbnail_request_destroy
(
request
);
}
enum
class
Stat
:
uint8_t
enum
class
File
Stat
:
uint8_t
{
Mtime
=
libvlc_media_stat_mtime
,
Size
=
libvlc_media_stat_size
,
Mtime
=
libvlc_media_
file
stat_mtime
,
Size
=
libvlc_media_
file
stat_size
,
};
std
::
pair
<
bool
,
uint64_t
>
s
tat
(
Stat
s
)
std
::
pair
<
bool
,
uint64_t
>
fileS
tat
(
File
Stat
s
)
{
uint64_t
value
=
0
;
auto
res
=
libvlc_media_get_stat
(
*
this
,
static_cast
<
uint8_t
>
(
s
),
&
value
)
==
1
;
auto
res
=
libvlc_media_get_
file
stat
(
*
this
,
static_cast
<
uint8_t
>
(
s
),
&
value
)
==
1
;
return
std
::
make_pair
(
res
,
value
);
}
#endif
...
...
This diff is collapsed.
Click to expand it.