]> git.sesse.net Git - vlc/commitdiff
macosx: fix UI freeze when large amount of playlist items are added at once
authorDavid Fuhrmann <david.fuhrmann@googlemail.com>
Fri, 12 Apr 2013 19:44:27 +0000 (21:44 +0200)
committerDavid Fuhrmann <david.fuhrmann@googlemail.com>
Fri, 12 Apr 2013 19:49:21 +0000 (21:49 +0200)
This happened when selecting radio discovery, for instance.
Probably also fixes #7516.

modules/gui/macosx/intf.h
modules/gui/macosx/intf.m

index 8c5d1e746219cf6d5984b5155c696e57791c923a..79f9e0d2845e7a1f5fc90ea0f6d200ea33eb5ed2 100644 (file)
@@ -149,11 +149,13 @@ struct intf_sys_t
     /* iTunes play/pause support */
     BOOL b_has_itunes_paused;
     NSTimer *o_itunes_play_timer;
+
+    BOOL b_playlist_updated_selector_in_queue;
 }
 
 @property (readonly) VLCVoutWindowController* voutController;
 @property (readonly) BOOL nativeFullscreenMode;
-
+@property (nonatomic, readwrite) BOOL playlistUpdatedSelectorInQueue;
 + (VLCMain *)sharedInstance;
 
 - (intf_thread_t *)intf;
index aba366666b541b616b2c99a987b50ab60dff2c93..479027e6e65f6715c855ccbf2bd4b65e54e8cd44 100644 (file)
@@ -420,7 +420,17 @@ static int PlaylistUpdated(vlc_object_t *p_this, const char *psz_var,
                          vlc_value_t oldval, vlc_value_t new_val, void *param)
 {
     NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
-    [[VLCMain sharedInstance] performSelectorOnMainThread:@selector(playlistUpdated) withObject:nil waitUntilDone:NO];
+
+    /* Avoid event queue flooding with playlistUpdated selectors, leading to UI freezes.
+     * Therefore, only enqueue if no selector already enqueued.
+     */
+    VLCMain *o_main = [VLCMain sharedInstance];
+    @synchronized(o_main) {
+        if(![o_main playlistUpdatedSelectorInQueue]) {
+            [o_main setPlaylistUpdatedSelectorInQueue:YES];
+            [o_main performSelectorOnMainThread:@selector(playlistUpdated) withObject:nil waitUntilDone:NO];
+        }
+    }
 
     [o_pool release];
     return VLC_SUCCESS;
@@ -591,6 +601,7 @@ audio_output_t *getAout(void)
 
 @synthesize voutController=o_vout_controller;
 @synthesize nativeFullscreenMode=b_nativeFullscreenMode;
+@synthesize playlistUpdatedSelectorInQueue=b_playlist_updated_selector_in_queue;
 
 #pragma mark -
 #pragma mark Initialization
@@ -1342,6 +1353,10 @@ static VLCMain *_o_sharedMainInstance = nil;
 
 - (void)playlistUpdated
 {
+    @synchronized(self) {
+        b_playlist_updated_selector_in_queue = NO;
+    }
+
     [self playbackStatusUpdated];
     [o_playlist playlistUpdated];
     [o_mainwindow updateWindow];