Commit 453764f6 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Privatize input_SplitMRL()

parent 629242be
......@@ -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.
*/
......
......@@ -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
......@@ -227,7 +227,6 @@ input_resource_New
input_resource_Release
input_resource_TerminateVout
input_resource_Terminate
input_SplitMRL
input_Start
input_Stop
input_vaControl
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment