vlc | branch: master | Steve Lhomme <[email protected]> | Wed May 29 16:18:02 2019 +0200| [973ddbacaddd94425a43ad48c4837457a17d3533] | committer: Steve Lhomme
libvlc: remove libvlc_video_get_marquee_string() > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=973ddbacaddd94425a43ad48c4837457a17d3533 --- include/vlc/libvlc_media_player.h | 9 --------- lib/libvlc.sym | 1 - lib/video.c | 9 --------- 3 files changed, 19 deletions(-) diff --git a/include/vlc/libvlc_media_player.h b/include/vlc/libvlc_media_player.h index 10e302529d..d04b57f01e 100644 --- a/include/vlc/libvlc_media_player.h +++ b/include/vlc/libvlc_media_player.h @@ -1764,15 +1764,6 @@ LIBVLC_API int libvlc_video_get_marquee_int( libvlc_media_player_t *p_mi, unsigned option ); /** - * Get a string marquee option value - * - * \param p_mi libvlc media player - * \param option marq option to get \see libvlc_video_marquee_string_option_t - */ -LIBVLC_API char *libvlc_video_get_marquee_string( libvlc_media_player_t *p_mi, - unsigned option ); - -/** * Enable, disable or set an integer marquee option * * Setting libvlc_marquee_Enable has the side effect of enabling (arg !0) diff --git a/lib/libvlc.sym b/lib/libvlc.sym index 67b8efcba0..01d3c8f72c 100644 --- a/lib/libvlc.sym +++ b/lib/libvlc.sym @@ -224,7 +224,6 @@ libvlc_video_get_size libvlc_video_get_cursor libvlc_video_get_logo_int libvlc_video_get_marquee_int -libvlc_video_get_marquee_string libvlc_video_get_scale libvlc_video_get_spu libvlc_video_get_spu_count diff --git a/lib/video.c b/lib/video.c index a318df0098..b3c36b1cbc 100644 --- a/lib/video.c +++ b/lib/video.c @@ -775,15 +775,6 @@ int libvlc_video_get_marquee_int( libvlc_media_player_t *p_mi, } /***************************************************************************** - * libvlc_video_get_marquee_string : get a marq option value - *****************************************************************************/ -char * libvlc_video_get_marquee_string( libvlc_media_player_t *p_mi, - unsigned option ) -{ - return get_string( p_mi, "marq", marq_option_bynumber(option) ); -} - -/***************************************************************************** * libvlc_video_set_marquee_int: enable, disable or set an int option *****************************************************************************/ void libvlc_video_set_marquee_int( libvlc_media_player_t *p_mi, _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
