Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Media: Expose libvlc_media_thumbnail_destroy
· f2049626
Hugo Beauzée-Luyssen
authored
Oct 24, 2019
f2049626
Media: Rename thumbnail request destroy & cancel methods
· e81b9f06
Hugo Beauzée-Luyssen
authored
Oct 24, 2019
e81b9f06
Hide whitespace changes
Inline
Side-by-side
vlcpp/Media.hpp
View file @
e81b9f06
...
...
@@ -778,9 +778,14 @@ public:
* to be invoked, with nullptr as the picture instance.
* If the request is cancelled after its completion, the behavior is undefined.
*/
void
thumbnailCancel
(
ThumbnailRequest
*
request
)
void
thumbnail
Request
Cancel
(
ThumbnailRequest
*
request
)
{
libvlc_media_thumbnail_cancel
(
request
);
libvlc_media_thumbnail_request_cancel
(
request
);
}
void
thumbnailRequestDestroy
(
ThumbnailRequest
*
request
)
{
libvlc_media_thumbnail_request_destroy
(
request
);
}
#endif
...
...