Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
YangLei
libvlcpp
Commits
c20067af
Commit
c20067af
authored
May 05, 2020
by
Hugo Beauzée-Luyssen
Browse files
structures: Fix TitleDescription constructor
It only needs a const libvlc_title_description_t*.
parent
e81b9f06
Changes
1
Hide whitespace changes
Inline
Side-by-side
vlcpp/structures.hpp
View file @
c20067af
...
...
@@ -562,7 +562,7 @@ public:
return
(
m_flags
&
libvlc_title_interactive
)
!=
0
;
}
explicit
TitleDescription
(
libvlc_title_description_t
*
c
)
explicit
TitleDescription
(
const
libvlc_title_description_t
*
c
)
:
m_duration
(
c
->
i_duration
),
m_flags
(
c
->
i_flags
)
{
if
(
c
->
psz_name
!=
nullptr
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment