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
530b11e5d2ae7417fa14937b9a6342d001a0b6be to 56269d3efe206f2000921c70006cf271e85600c5
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
56269d3efe206f2000921c70006cf271e85600c5
Select Git revision
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
530b11e5d2ae7417fa14937b9a6342d001a0b6be
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Instance: libvlc_media_discoverer_get_list now returns a size_t
· 9be59236
Hugo Beauzée-Luyssen
authored
8 years ago
9be59236
Media: parse() is now deprecated
· 56269d3e
Hugo Beauzée-Luyssen
authored
8 years ago
56269d3e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
vlcpp/Instance.hpp
+2
-2
2 additions, 2 deletions
vlcpp/Instance.hpp
vlcpp/Media.hpp
+1
-1
1 addition, 1 deletion
vlcpp/Media.hpp
with
3 additions
and
3 deletions
vlcpp/Instance.hpp
View file @
56269d3e
...
...
@@ -522,7 +522,7 @@ public:
libvlc_media_discoverer_description_t
**
pp_descs
;
auto
nbSd
=
libvlc_media_discoverer_list_get
(
*
this
,
static_cast
<
libvlc_media_discoverer_category_t
>
(
category
),
&
pp_descs
);
if
(
nbSd
<
=
0
)
if
(
nbSd
=
=
0
)
return
{};
auto
releaser
=
[
nbSd
](
libvlc_media_discoverer_description_t
**
ptr
)
{
libvlc_media_discoverer_list_release
(
ptr
,
nbSd
);
...
...
@@ -530,7 +530,7 @@ public:
std
::
unique_ptr
<
libvlc_media_discoverer_description_t
*
,
decltype
(
releaser
)
>
descPtr
(
pp_descs
,
releaser
);
std
::
vector
<
MediaDiscoverer
::
Description
>
res
;
res
.
reserve
(
nbSd
);
for
(
auto
i
=
0
;
i
<
nbSd
;
++
i
)
for
(
auto
i
=
0
u
;
i
<
nbSd
;
++
i
)
res
.
emplace_back
(
pp_descs
[
i
]
->
psz_name
,
pp_descs
[
i
]
->
psz_longname
,
pp_descs
[
i
]
->
i_cat
);
return
res
;
}
...
...
This diff is collapsed.
Click to expand it.
vlcpp/Media.hpp
View file @
56269d3e
...
...
@@ -523,6 +523,7 @@ public:
return
libvlc_media_get_duration
(
*
this
);
}
#if LIBVLC_VERSION_INT < LIBVLC_VERSION(3, 0, 0, 0)
/**
* Parse a media.
*
...
...
@@ -540,7 +541,6 @@ public:
libvlc_media_parse
(
*
this
);
}
#if LIBVLC_VERSION_INT < LIBVLC_VERSION(3, 0, 0, 0)
/**
* Parse a media.
*
...
...
This diff is collapsed.
Click to expand it.