Commit aebbc1e7 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

macosx: Fix currently playing input item retrieving.

parent caf61885
...@@ -1296,22 +1296,19 @@ static VLCMain *_o_sharedMainInstance = nil; ...@@ -1296,22 +1296,19 @@ static VLCMain *_o_sharedMainInstance = nil;
if( p_intf->p_sys->b_current_title_update ) if( p_intf->p_sys->b_current_title_update )
{ {
NSString *o_temp; NSString *aString;
input_item_t * p_item = input_GetItem( p_input );
char * name = input_item_GetNowPlaying( p_item );
if( p_playlist->status.p_item == NULL ) if( !name )
{ name = input_item_GetName( p_item );
vlc_object_release( p_input );
pl_Release( p_intf ); aString = [NSString stringWithUTF8String:name];
goto end;
} free(name);
if( input_item_GetNowPlaying ( p_playlist->status.p_item->p_input ) )
o_temp = [NSString stringWithUTF8String: [self setScrollField: aString stopAfter:-1];
input_item_GetNowPlaying ( p_playlist->status.p_item->p_input )]; [[[self getControls] getFSPanel] setStreamTitle: aString];
else
o_temp = [NSString stringWithUTF8String:
p_playlist->status.p_item->p_input->psz_name];
[self setScrollField: o_temp stopAfter:-1];
[[[self getControls] getFSPanel] setStreamTitle: o_temp];
[[o_controls getVoutView] updateTitle]; [[o_controls getVoutView] updateTitle];
......
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