[vlc-commits] [Git][videolan/libvlcpp][master] 2 commits: Media: Expose libvlc_media_thumbnail_destroy
Hugo Beauzée-Luyssen
gitlab at videolan.org
Mon Oct 28 11:34:30 CET 2019
Hugo Beauzée-Luyssen pushed to branch master at VideoLAN / libvlcpp
Commits:
f2049626 by Hugo Beauzée-Luyssen at 2019-10-24T09:22:35Z
Media: Expose libvlc_media_thumbnail_destroy
- - - - -
e81b9f06 by Hugo Beauzée-Luyssen at 2019-10-24T09:29:48Z
Media: Rename thumbnail request destroy & cancel methods
- - - - -
1 changed file:
- vlcpp/Media.hpp
Changes:
=====================================
vlcpp/Media.hpp
=====================================
@@ -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 thumbnailRequestCancel( ThumbnailRequest* request )
{
- libvlc_media_thumbnail_cancel( request );
+ libvlc_media_thumbnail_request_cancel( request );
+ }
+
+ void thumbnailRequestDestroy( ThumbnailRequest* request )
+ {
+ libvlc_media_thumbnail_request_destroy( request );
}
#endif
View it on GitLab: https://code.videolan.org/videolan/libvlcpp/compare/56e739fd52fc7e64d050b4ac5bf4952dd46f35ce...e81b9f06493becabeec794e351bb357a90af264a
--
View it on GitLab: https://code.videolan.org/videolan/libvlcpp/compare/56e739fd52fc7e64d050b4ac5bf4952dd46f35ce...e81b9f06493becabeec794e351bb357a90af264a
You're receiving this email because of your account on code.videolan.org.
More information about the vlc-commits
mailing list