Commit 2d5322c3 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* so the ogg vorbis fix broke shoutcast streams :) fixing again.... (tested...

* so the ogg vorbis fix broke shoutcast streams :) fixing again.... (tested with all audio streams i know off)
parent 70a4f2e2
......@@ -368,17 +368,17 @@ static int Open( vlc_object_t *p_this )
goto error;
}
if( ( !strcmp( p_sys->psz_protocol, "ICY" ) || p_sys->b_icecast ) &&
( strcasecmp( p_sys->psz_mime, "application/ogg" ) ) )
if( !strcmp( p_sys->psz_protocol, "ICY" ) || p_sys->b_icecast )
{
if( p_sys->psz_mime && ( !strcasecmp( p_sys->psz_mime, "video/nsv" ) ||
!strcasecmp( p_sys->psz_mime, "video/nsa") ) )
if( p_sys->psz_mime && strcasecmp( p_sys->psz_mime, "application/ogg" ) )
{
if( !strcasecmp( p_sys->psz_mime, "video/nsv" ) ||
!strcasecmp( p_sys->psz_mime, "video/nsa") )
p_access->psz_demux = strdup( "nsv" );
else if( p_sys->psz_mime &&
( !strcasecmp( p_sys->psz_mime, "audio/aac" ) ||
!strcasecmp( p_sys->psz_mime, "audio/aacp" ) ) )
else if( !strcasecmp( p_sys->psz_mime, "audio/aac" ) ||
!strcasecmp( p_sys->psz_mime, "audio/aacp" ) )
p_access->psz_demux = strdup( "m4a" );
else if( p_sys->psz_mime && !strcasecmp( p_sys->psz_mime, "audio/mpeg" ) )
else if( !strcasecmp( p_sys->psz_mime, "audio/mpeg" ) )
p_access->psz_demux = strdup( "mp3" );
msg_Info( p_access, "Raw-audio server found, %s demuxer selected",
......@@ -389,6 +389,13 @@ static int Open( vlc_object_t *p_this )
p_sys->b_pace_control = VLC_FALSE;
#endif
}
else if( !p_sys->psz_mime )
{
/* Shoutcast */
p_access->psz_demux = strdup( "mp3" );
}
/* else probably Ogg Vorbis */
}
if( p_sys->b_reconnect ) msg_Dbg( p_access, "auto re-connect enabled" );
......
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