From 453764f6d16e7795e98278f4fe7bb446b787a33e Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sun, 25 Sep 2011 15:56:07 +0300 Subject: [PATCH] Privatize input_SplitMRL() --- include/vlc_input.h | 9 --------- src/input/input_internal.h | 3 +++ src/libvlccore.sym | 1 - 3 files changed, 3 insertions(+), 10 deletions(-) diff --git a/include/vlc_input.h b/include/vlc_input.h index e30bbbb26d..428df836e1 100644 --- a/include/vlc_input.h +++ b/include/vlc_input.h @@ -643,15 +643,6 @@ VLC_API decoder_t * input_DecoderCreate( vlc_object_t *, es_format_t *, input_re VLC_API void input_DecoderDelete( decoder_t * ); VLC_API void input_DecoderDecode( decoder_t *, block_t *, bool b_do_pace ); -/** - * This function allows to split a MRL into access, demux and path part. - * - * You should not write into access and demux string as they may not point into - * the provided buffer. - * The buffer provided by psz_dup will be modified. - */ -VLC_API void input_SplitMRL( const char **ppsz_access, const char **ppsz_demux, char **ppsz_path, char *psz_dup ); - /** * This function creates a sane filename path. */ diff --git a/src/input/input_internal.h b/src/input/input_internal.h index fc787cd3ac..ab5b7846f3 100644 --- a/src/input/input_internal.h +++ b/src/input/input_internal.h @@ -243,4 +243,7 @@ void input_ConfigVarInit ( input_thread_t * ); char **subtitles_Detect( input_thread_t *, char* path, const char *fname ); int subtitles_Filter( const char *); +/* input.c */ +void input_SplitMRL( const char **, const char **, char **, char * ); + #endif diff --git a/src/libvlccore.sym b/src/libvlccore.sym index 672bb53f2a..b8b058f343 100644 --- a/src/libvlccore.sym +++ b/src/libvlccore.sym @@ -227,7 +227,6 @@ input_resource_New input_resource_Release input_resource_TerminateVout input_resource_Terminate -input_SplitMRL input_Start input_Stop input_vaControl -- 2.39.2