summaryrefslogtreecommitdiff
path: root/gst-libs/gst/gl
diff options
context:
space:
mode:
Diffstat (limited to 'gst-libs/gst/gl')
-rw-r--r--gst-libs/gst/gl/cocoa/gstglwindow_cocoa.m19
1 files changed, 13 insertions, 6 deletions
diff --git a/gst-libs/gst/gl/cocoa/gstglwindow_cocoa.m b/gst-libs/gst/gl/cocoa/gstglwindow_cocoa.m
index 02f74b2d3..509d57436 100644
--- a/gst-libs/gst/gl/cocoa/gstglwindow_cocoa.m
+++ b/gst-libs/gst/gl/cocoa/gstglwindow_cocoa.m
@@ -334,13 +334,20 @@ gst_gl_window_cocoa_send_message_async (GstGLWindow * window,
if (window) {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
- AppThreadPerformer* app_thread_performer = [[AppThreadPerformer alloc]
- initWithAll:window_cocoa callback:callback userData:data];
-
- [app_thread_performer performSelector:@selector(sendToApp) onThread:priv->thread
- withObject:nil waitUntilDone:NO];
+ /* performSelector is not re-entrant so do it manually */
+ if (G_UNLIKELY ([NSThread currentThread] == priv->thread)) {
+ if (callback)
+ callback (data);
+ } else {
+ AppThreadPerformer* app_thread_performer =
+ [[AppThreadPerformer alloc] initWithAll:window_cocoa
+ callback:callback userData:data];
- [pool release];
+ [app_thread_performer performSelector:@selector(sendToApp)
+ onThread:priv->thread withObject:nil waitUntilDone:NO];
+
+ [pool release];
+ }
}
}