X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fstream_output%2Fprofiles.c;h=8cc975d759bfeb75dfbc38db096fe3be899878e3;hb=b4b0a1b6f82807f4e7b0a1f96b62dcf109018549;hp=640d1d938e8607c217f4f29cb326473997a24514;hpb=a2dd91771917aa86d9e94aa2d6777f8805332e63;p=vlc diff --git a/src/stream_output/profiles.c b/src/stream_output/profiles.c index 640d1d938e..8cc975d759 100644 --- a/src/stream_output/profiles.c +++ b/src/stream_output/profiles.c @@ -21,6 +21,10 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include @@ -454,7 +458,7 @@ void streaming_GuiDescToChain( vlc_object_t *p_obj, sout_chain_t *p_chain, { char *psz_url; asprintf( &psz_url, "%s%s:%i%s", psz_username, pd->psz_icecast, - pd->i_icecast, pd->psz_mountpoint ); + pd->i_icecast, pd->psz_icecast_mountpoint ); p_std = streaming_ChainAddStd( DUP_OR_CHAIN, "shout", pd->psz_mux, psz_url ); free( psz_url ); @@ -464,7 +468,7 @@ void streaming_GuiDescToChain( vlc_object_t *p_obj, sout_chain_t *p_chain, char *psz_url; asprintf( &psz_url, "%s:%s@%s%s", pd->sa_icecast.psz_username, pd->sa_icecast.psz_password, pd->psz_icecast, - pd->psz_mountpoint ); + pd->psz_icecast_mountpoint ); p_std = streaming_ChainAddStd( DUP_OR_CHAIN, "shout", pd->psz_mux, psz_url ); free( psz_url );