]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/intf.m
dejidjei:
[vlc] / modules / gui / macosx / intf.m
index aa529071f5f1ab0785d6094a4fbccbca3b063e8f..f903aaa4d5d75f1cadb8d3ae9c7c9bc3d5d84200 100644 (file)
@@ -1157,10 +1157,11 @@ static VLCMain *_o_sharedMainInstance = nil;
         if( !p_input )
         {
             p_input = playlist_CurrentInput( p_playlist );
-
             /* Refresh the interface */
             if( p_input )
             {
+                printf("yield\n");
+
                 msg_Dbg( p_intf, "input has changed, refreshing interface" );
                 p_intf->p_sys->b_input_update = true;
             }
@@ -1171,6 +1172,7 @@ static VLCMain *_o_sharedMainInstance = nil;
             p_intf->p_sys->b_intf_update = true;
             p_intf->p_sys->i_play_status = END_S;
             msg_Dbg( p_intf, "input has stopped, refreshing interface" );
+            printf("release\n");
             vlc_object_release( p_input );
             p_input = NULL;
         }