Commit 156dbc41 authored by Gildas Bazin's avatar Gildas Bazin

* modules/access/http.c: reversed a commit by accident.

parent c79f9d40
...@@ -305,8 +305,10 @@ static int Open( vlc_object_t *p_this ) ...@@ -305,8 +305,10 @@ static int Open( vlc_object_t *p_this )
{ {
if( p_sys->psz_mime && !strcasecmp( p_sys->psz_mime, "video/nsv" ) ) if( p_sys->psz_mime && !strcasecmp( p_sys->psz_mime, "video/nsv" ) )
p_access->psz_demux = strdup( "nsv" ); p_access->psz_demux = strdup( "nsv" );
else if( p_sys->psz_mime && !strcasecmp( p_sys->psz_mime, "audio/aacp" ) ) else if( p_sys->psz_mime &&
p_access->psz_demux = strdup( "aac" ); ( !strcasecmp( p_sys->psz_mime, "audio/aac" ) ||
!strcasecmp( p_sys->psz_mime, "audio/aacp" ) ) )
p_access->psz_demux = strdup( "m4a" );
else else
p_access->psz_demux = strdup( "mp3" ); p_access->psz_demux = strdup( "mp3" );
......
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