Commit 0ee587bc authored by Rémi Duraffort's avatar Rémi Duraffort

sout_MuxNew: constify.

parent 8641c42f
...@@ -178,7 +178,7 @@ struct sout_input_t ...@@ -178,7 +178,7 @@ struct sout_input_t
}; };
VLC_EXPORT( sout_mux_t *, sout_MuxNew, ( sout_instance_t*, char *, sout_access_out_t * ) ); VLC_EXPORT( sout_mux_t *, sout_MuxNew, ( sout_instance_t*, const char *, sout_access_out_t * ) );
VLC_EXPORT( sout_input_t *, sout_MuxAddStream, ( sout_mux_t *, es_format_t * ) ); VLC_EXPORT( sout_input_t *, sout_MuxAddStream, ( sout_mux_t *, es_format_t * ) );
VLC_EXPORT( void, sout_MuxDeleteStream, ( sout_mux_t *, sout_input_t * ) ); VLC_EXPORT( void, sout_MuxDeleteStream, ( sout_mux_t *, sout_input_t * ) );
VLC_EXPORT( void, sout_MuxDelete, ( sout_mux_t * ) ); VLC_EXPORT( void, sout_MuxDelete, ( sout_mux_t * ) );
......
...@@ -404,7 +404,7 @@ int sout_AccessOutControl (sout_access_out_t *access, int query, ...) ...@@ -404,7 +404,7 @@ int sout_AccessOutControl (sout_access_out_t *access, int query, ...)
/***************************************************************************** /*****************************************************************************
* sout_MuxNew: create a new mux * sout_MuxNew: create a new mux
*****************************************************************************/ *****************************************************************************/
sout_mux_t * sout_MuxNew( sout_instance_t *p_sout, char *psz_mux, sout_mux_t * sout_MuxNew( sout_instance_t *p_sout, const char *psz_mux,
sout_access_out_t *p_access ) sout_access_out_t *p_access )
{ {
static const char typename[] = "mux"; static const char typename[] = "mux";
......
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