Commit 6fa0c12c authored by Felix Paul Kühne's avatar Felix Paul Kühne

access/http: remove dead code

parent f24ac8e0
...@@ -996,17 +996,6 @@ static int Control( access_t *p_access, int i_query, va_list args ) ...@@ -996,17 +996,6 @@ static int Control( access_t *p_access, int i_query, va_list args )
case ACCESS_SET_PAUSE_STATE: case ACCESS_SET_PAUSE_STATE:
break; break;
case ACCESS_GET_META:
p_meta = (vlc_meta_t*)va_arg( args, vlc_meta_t* );
if( p_sys->psz_icy_name )
vlc_meta_Set( p_meta, vlc_meta_Title, p_sys->psz_icy_name );
if( p_sys->psz_icy_genre )
vlc_meta_Set( p_meta, vlc_meta_Genre, p_sys->psz_icy_genre );
if( p_sys->psz_icy_title )
vlc_meta_Set( p_meta, vlc_meta_NowPlaying, p_sys->psz_icy_title );
break;
case ACCESS_GET_CONTENT_TYPE: case ACCESS_GET_CONTENT_TYPE:
*va_arg( args, char ** ) = *va_arg( args, char ** ) =
p_sys->psz_mime ? strdup( p_sys->psz_mime ) : NULL; p_sys->psz_mime ? strdup( p_sys->psz_mime ) : NULL;
......
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