[vlc-commits] Unexport video_splitter_(New|Delete)
Rémi Denis-Courmont
git at videolan.org
Mon Jul 31 21:32:19 CEST 2017
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon Jul 31 21:30:08 2017 +0300| [cf31c95a51de68cf5d36ca246d2cbc771a9ce2d0] | committer: Rémi Denis-Courmont
Unexport video_splitter_(New|Delete)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=cf31c95a51de68cf5d36ca246d2cbc771a9ce2d0
---
include/vlc_video_splitter.h | 4 ++--
src/check_symbols | 3 ++-
src/libvlccore.sym | 2 --
3 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/include/vlc_video_splitter.h b/include/vlc_video_splitter.h
index eb2bf00f85..a5afba5230 100644
--- a/include/vlc_video_splitter.h
+++ b/include/vlc_video_splitter.h
@@ -133,8 +133,8 @@ static inline void video_splitter_DeletePicture( video_splitter_t *p_splitter,
}
/* */
-VLC_API video_splitter_t * video_splitter_New( vlc_object_t *, const char *psz_name, const video_format_t * );
-VLC_API void video_splitter_Delete( video_splitter_t * );
+video_splitter_t * video_splitter_New( vlc_object_t *, const char *psz_name, const video_format_t * );
+void video_splitter_Delete( video_splitter_t * );
static inline int video_splitter_Filter( video_splitter_t *p_splitter,
picture_t *pp_dst[], picture_t *p_src )
diff --git a/src/check_symbols b/src/check_symbols
index 2aa9c6c92e..3c57036474 100755
--- a/src/check_symbols
+++ b/src/check_symbols
@@ -13,7 +13,8 @@ cat libvlccore.sym | grep -v \
-e '^vlc_' -e '^vlm_' -e '^libvlc_[A-Z]' -e '^VLC_' \
-e '^input_' -e '^access_' -e '^demux_' -e '^decoder_' \
-e '^image_' -e '^block_' -e '^picture_' -e '^subpicture_' \
- -e '^es_format' -e '^[asv]out_' -e '^spu_' -e '^filter_' -e '^video_' \
+ -e '^es_format' -e '^[asv]out_' -e '^spu_' -e '^filter_' \
+ -e '^video_format_' \
-e '^playlist_' -e '^services_discovery_' -e '^intf_' \
-e '^dialog_' -e '^update_' -e '^addons\?_' -e '^fingerprinter_' \
-e '^text_style_' -e '^text_segment_' \
diff --git a/src/libvlccore.sym b/src/libvlccore.sym
index 5faf32c2b0..bcf8ec6b76 100644
--- a/src/libvlccore.sym
+++ b/src/libvlccore.sym
@@ -510,8 +510,6 @@ video_format_GetTransform
video_format_IsSimilar
video_format_Setup
video_format_Print
-video_splitter_Delete
-video_splitter_New
vlc_b64_decode
vlc_b64_decode_binary
vlc_b64_decode_binary_to_buffer
More information about the vlc-commits
mailing list