2013-08-15 07:09:04 +00:00
|
|
|
/*
|
|
|
|
* GStreamer
|
|
|
|
* Copyright (C) 2012 Matthew Waters <ystreet00@gmail.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
#include "gstglcontext_cocoa.h"
|
|
|
|
#include "gstgl_cocoa_private.h"
|
|
|
|
|
|
|
|
static gboolean gst_gl_context_cocoa_create_context (GstGLContext *context, GstGLAPI gl_api,
|
2013-08-29 10:10:42 +00:00
|
|
|
GstGLContext * other_context, GError **error);
|
2013-09-25 02:26:57 +00:00
|
|
|
static void gst_gl_context_cocoa_destroy_context (GstGLContext *context);
|
2013-08-15 07:09:04 +00:00
|
|
|
static guintptr gst_gl_context_cocoa_get_gl_context (GstGLContext * window);
|
|
|
|
static gboolean gst_gl_context_cocoa_activate (GstGLContext * context, gboolean activate);
|
|
|
|
static GstGLAPI gst_gl_context_cocoa_get_gl_api (GstGLContext * context);
|
2014-02-10 21:57:29 +00:00
|
|
|
static GstGLPlatform gst_gl_context_cocoa_get_gl_platform (GstGLContext * context);
|
2013-08-15 07:09:04 +00:00
|
|
|
|
|
|
|
#define GST_GL_CONTEXT_COCOA_GET_PRIVATE(o) \
|
|
|
|
(G_TYPE_INSTANCE_GET_PRIVATE((o), GST_GL_TYPE_CONTEXT_COCOA, GstGLContextCocoaPrivate))
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (GstGLContextCocoa, gst_gl_context_cocoa, GST_GL_TYPE_CONTEXT);
|
|
|
|
|
2013-09-25 02:26:57 +00:00
|
|
|
#ifndef GNUSTEP
|
2014-04-12 11:42:40 +00:00
|
|
|
static GMutex nsapp_lock;
|
|
|
|
static GCond nsapp_cond;
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_gl_window_cocoa_init_nsapp (gpointer data)
|
|
|
|
{
|
|
|
|
NSAutoreleasePool *pool = nil;
|
|
|
|
|
|
|
|
g_mutex_lock (&nsapp_lock);
|
|
|
|
|
2014-04-12 14:51:47 +00:00
|
|
|
pool = [[NSAutoreleasePool alloc] init];
|
2014-04-12 11:42:40 +00:00
|
|
|
|
|
|
|
/* The sharedApplication class method initializes
|
|
|
|
* the display environment and connects your program
|
|
|
|
* to the window server and the display server
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* TODO: so consider to create GstGLDisplayCocoa
|
|
|
|
* in gst/gl/cocoa/gstgldisplay_cocoa.h/c
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* has to be called in the main thread */
|
|
|
|
[NSApplication sharedApplication];
|
|
|
|
|
|
|
|
GST_DEBUG ("NSApp initialized from a GTimeoutSource");
|
|
|
|
|
|
|
|
[pool release];
|
|
|
|
|
|
|
|
g_cond_signal (&nsapp_cond);
|
|
|
|
g_mutex_unlock (&nsapp_lock);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-09-25 02:26:57 +00:00
|
|
|
static gboolean
|
|
|
|
gst_gl_window_cocoa_nsapp_iteration (gpointer data)
|
|
|
|
{
|
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
|
|
|
|
|
|
|
NSEvent *event = nil;
|
|
|
|
|
|
|
|
if ([NSThread isMainThread]) {
|
|
|
|
|
|
|
|
while ((event = ([NSApp nextEventMatchingMask:NSAnyEventMask
|
2014-09-26 11:21:46 +00:00
|
|
|
untilDate:[NSDate dateWithTimeIntervalSinceNow:0.05]
|
2013-09-25 02:26:57 +00:00
|
|
|
inMode:NSDefaultRunLoopMode dequeue:YES])) != nil) {
|
|
|
|
|
|
|
|
[NSApp sendEvent:event];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
[pool release];
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
static void
|
|
|
|
gst_gl_context_cocoa_class_init (GstGLContextCocoaClass * klass)
|
|
|
|
{
|
2014-04-12 11:42:40 +00:00
|
|
|
GstGLContextClass *context_class = (GstGLContextClass *) klass;
|
2013-08-15 07:09:04 +00:00
|
|
|
|
|
|
|
#ifndef GNUSTEP
|
|
|
|
NSAutoreleasePool* pool = nil;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
g_type_class_add_private (klass, sizeof (GstGLContextCocoaPrivate));
|
|
|
|
|
2013-09-25 02:26:57 +00:00
|
|
|
context_class->destroy_context =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_gl_context_cocoa_destroy_context);
|
2013-08-15 07:09:04 +00:00
|
|
|
context_class->create_context =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_gl_context_cocoa_create_context);
|
|
|
|
context_class->get_gl_context =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_gl_context_cocoa_get_gl_context);
|
|
|
|
context_class->activate = GST_DEBUG_FUNCPTR (gst_gl_context_cocoa_activate);
|
|
|
|
context_class->get_gl_api =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_gl_context_cocoa_get_gl_api);
|
2014-02-10 21:57:29 +00:00
|
|
|
context_class->get_gl_platform =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_gl_context_cocoa_get_gl_platform);
|
2013-08-15 07:09:04 +00:00
|
|
|
|
|
|
|
#ifndef GNUSTEP
|
2014-04-12 14:51:47 +00:00
|
|
|
pool = [[NSAutoreleasePool alloc] init];
|
2014-04-12 11:42:40 +00:00
|
|
|
|
|
|
|
/* [NSApplication sharedApplication] will usually be
|
|
|
|
* called in your application so it's not necessary
|
|
|
|
* to do that the following. Except for debugging
|
|
|
|
* purpose like when using gst-launch.
|
|
|
|
* So here we handle the two cases where the first
|
|
|
|
* GstGLContext is either created in the main thread
|
|
|
|
* or from another thread like a streaming thread
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ([NSThread isMainThread]) {
|
|
|
|
/* In the main thread so just do the call now */
|
2014-09-26 11:21:46 +00:00
|
|
|
|
2014-04-12 11:42:40 +00:00
|
|
|
/* The sharedApplication class method initializes
|
|
|
|
* the display environment and connects your program
|
|
|
|
* to the window server and the display server
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* TODO: so consider to create GstGLDisplayCocoa
|
|
|
|
* in gst/gl/cocoa/gstgldisplay_cocoa.h/c
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* has to be called in the main thread */
|
|
|
|
[NSApplication sharedApplication];
|
|
|
|
|
|
|
|
GST_DEBUG ("NSApp initialized");
|
|
|
|
} else {
|
|
|
|
/* Not in the main thread, assume there is a
|
|
|
|
* glib main loop running this is for debugging
|
|
|
|
* purposes so that's ok to let us a chance
|
|
|
|
*/
|
2014-09-29 07:49:46 +00:00
|
|
|
GMainContext *context;
|
2014-04-12 11:42:40 +00:00
|
|
|
gboolean is_loop_running = FALSE;
|
|
|
|
gint64 end_time = 0;
|
|
|
|
|
2014-09-29 07:49:46 +00:00
|
|
|
context = g_main_context_default ();
|
|
|
|
|
|
|
|
if (g_main_context_is_owner (context)) {
|
|
|
|
/* At the thread running the default GLib main context but
|
|
|
|
* not the Cocoa main thread
|
|
|
|
* We can't do anything here
|
|
|
|
*/
|
|
|
|
} else if (g_main_context_acquire (context)) {
|
|
|
|
/* No main loop running on the default main context,
|
|
|
|
* we can't do anything here */
|
|
|
|
g_main_context_release (context);
|
|
|
|
} else {
|
|
|
|
/* Main loop running on the default main context but it
|
|
|
|
* is not running in this thread */
|
|
|
|
g_mutex_init (&nsapp_lock);
|
|
|
|
g_cond_init (&nsapp_cond);
|
|
|
|
|
|
|
|
g_mutex_lock (&nsapp_lock);
|
|
|
|
g_idle_add_full (G_PRIORITY_HIGH, gst_gl_window_cocoa_init_nsapp, NULL, NULL);
|
|
|
|
end_time = g_get_monotonic_time () + 500 * 1000;
|
|
|
|
is_loop_running = g_cond_wait_until (&nsapp_cond, &nsapp_lock, end_time);
|
|
|
|
g_mutex_unlock (&nsapp_lock);
|
|
|
|
|
|
|
|
if (!is_loop_running) {
|
|
|
|
GST_WARNING ("no mainloop running");
|
|
|
|
}
|
|
|
|
|
|
|
|
g_cond_clear (&nsapp_cond);
|
|
|
|
g_mutex_clear (&nsapp_lock);
|
2014-04-12 11:42:40 +00:00
|
|
|
}
|
|
|
|
}
|
2013-08-15 07:09:04 +00:00
|
|
|
|
|
|
|
[pool release];
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_gl_context_cocoa_init (GstGLContextCocoa * context)
|
|
|
|
{
|
|
|
|
context->priv = GST_GL_CONTEXT_COCOA_GET_PRIVATE (context);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Must be called in the gl thread */
|
|
|
|
GstGLContextCocoa *
|
|
|
|
gst_gl_context_cocoa_new (void)
|
|
|
|
{
|
|
|
|
GstGLContextCocoa *context = g_object_new (GST_GL_TYPE_CONTEXT_COCOA, NULL);
|
|
|
|
|
|
|
|
return context;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_gl_context_cocoa_create_context (GstGLContext *context, GstGLAPI gl_api,
|
2013-08-29 10:10:42 +00:00
|
|
|
GstGLContext *other_context, GError **error)
|
2013-08-15 07:09:04 +00:00
|
|
|
{
|
|
|
|
GstGLContextCocoa *context_cocoa = GST_GL_CONTEXT_COCOA (context);
|
|
|
|
GstGLContextCocoaPrivate *priv = context_cocoa->priv;
|
|
|
|
GstGLWindow *window = gst_gl_context_get_window (context);
|
|
|
|
GstGLWindowCocoa *window_cocoa = GST_GL_WINDOW_COCOA (window);
|
2014-09-26 11:21:46 +00:00
|
|
|
__block NSOpenGLContext *glContext = nil;
|
|
|
|
|
|
|
|
#ifndef GNUSTEP
|
|
|
|
priv->source_id = g_timeout_add (200, gst_gl_window_cocoa_nsapp_iteration, NULL);
|
|
|
|
#endif
|
2013-08-15 07:09:04 +00:00
|
|
|
|
|
|
|
priv->gl_context = nil;
|
2013-08-29 10:10:42 +00:00
|
|
|
if (other_context)
|
|
|
|
priv->external_gl_context = (NSOpenGLContext *) gst_gl_context_get_gl_context (other_context);
|
|
|
|
else
|
|
|
|
priv->external_gl_context = NULL;
|
2013-08-15 07:09:04 +00:00
|
|
|
|
2014-09-26 11:21:46 +00:00
|
|
|
dispatch_sync (dispatch_get_main_queue (), ^{
|
|
|
|
NSAutoreleasePool *pool;
|
|
|
|
NSOpenGLPixelFormat *fmt = nil;
|
|
|
|
GstGLNSView *glView = nil;
|
|
|
|
NSOpenGLPixelFormatAttribute attribs[] = {
|
|
|
|
NSOpenGLPFADoubleBuffer,
|
|
|
|
NSOpenGLPFAAccumSize, 32,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
NSRect rect;
|
|
|
|
NSWindow *window_handle;
|
2013-08-15 07:09:04 +00:00
|
|
|
|
2014-09-26 11:21:46 +00:00
|
|
|
pool = [[NSAutoreleasePool alloc] init];
|
2013-08-15 07:09:04 +00:00
|
|
|
|
|
|
|
#ifdef GNUSTEP
|
2014-09-26 11:21:46 +00:00
|
|
|
[NSApplication sharedApplication];
|
2013-08-15 07:09:04 +00:00
|
|
|
#endif
|
2014-09-26 11:21:46 +00:00
|
|
|
rect.origin.x = 0;
|
|
|
|
rect.origin.y = 0;
|
|
|
|
rect.size.width = 320;
|
|
|
|
rect.size.height = 240;
|
|
|
|
|
|
|
|
gst_gl_window_cocoa_create_window (window_cocoa, rect);
|
|
|
|
window_handle = (NSWindow *) gst_gl_window_get_window_handle (window);
|
|
|
|
|
|
|
|
fmt = [[NSOpenGLPixelFormat alloc] initWithAttributes:attribs];
|
|
|
|
if (!fmt) {
|
|
|
|
gst_object_unref (window);
|
|
|
|
GST_WARNING ("cannot create NSOpenGLPixelFormat");
|
|
|
|
return;
|
|
|
|
}
|
2013-08-15 07:09:04 +00:00
|
|
|
|
2014-09-26 11:21:46 +00:00
|
|
|
glView = [[GstGLNSView alloc] initWithFrame:window_cocoa rect:rect];
|
2013-08-15 07:09:04 +00:00
|
|
|
|
2014-09-26 11:21:46 +00:00
|
|
|
[window_handle setContentView:glView];
|
2013-08-15 07:09:04 +00:00
|
|
|
|
|
|
|
#ifndef GNUSTEP
|
2014-09-26 11:21:46 +00:00
|
|
|
glContext = [[NSOpenGLContext alloc] initWithFormat:fmt
|
|
|
|
shareContext:context_cocoa->priv->external_gl_context];
|
2013-08-15 07:09:04 +00:00
|
|
|
|
2014-09-26 11:21:46 +00:00
|
|
|
GST_DEBUG ("NSOpenGL context created: %"G_GUINTPTR_FORMAT, (guintptr) glContext);
|
2013-08-15 07:09:04 +00:00
|
|
|
|
2014-09-26 11:21:46 +00:00
|
|
|
context_cocoa->priv->gl_context = glContext;
|
2013-08-15 07:09:04 +00:00
|
|
|
|
2014-09-26 11:21:46 +00:00
|
|
|
[glContext setView:glView];
|
2014-04-24 07:49:54 +00:00
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
#else
|
2014-09-26 11:21:46 +00:00
|
|
|
/* FIXME try to make context sharing work in GNUstep */
|
|
|
|
context_cocoa->priv->gl_context = glContext;
|
2013-08-15 07:09:04 +00:00
|
|
|
#endif
|
2014-09-26 11:21:46 +00:00
|
|
|
[pool release];
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!glContext) {
|
|
|
|
g_source_remove (priv->source_id);
|
|
|
|
priv->source_id = 0;
|
|
|
|
return FALSE;
|
|
|
|
}
|
2013-08-15 07:09:04 +00:00
|
|
|
|
|
|
|
/* OpenGL context is made current only one time threre.
|
|
|
|
* Indeed, all OpenGL calls are made in only one thread,
|
|
|
|
* the Application thread */
|
|
|
|
[glContext makeCurrentContext];
|
|
|
|
|
|
|
|
[glContext update];
|
|
|
|
|
|
|
|
/* Back and front buffers are swapped only during the vertical retrace of the monitor.
|
|
|
|
* Discarded if you configured your driver to Never-use-V-Sync.
|
|
|
|
*/
|
|
|
|
NS_DURING {
|
|
|
|
if (glContext) {
|
|
|
|
#ifdef GNUSTEP
|
|
|
|
const long swapInterval = 1;
|
|
|
|
#else
|
|
|
|
const GLint swapInterval = 1;
|
|
|
|
#endif
|
2014-09-26 10:05:27 +00:00
|
|
|
[glContext setValues:&swapInterval forParameter:NSOpenGLCPSwapInterval];
|
2013-08-15 07:09:04 +00:00
|
|
|
}
|
|
|
|
} NS_HANDLER {
|
|
|
|
GST_DEBUG ("your back-end does not implement NSOpenglContext::setValues\n");
|
|
|
|
}
|
|
|
|
NS_ENDHANDLER
|
|
|
|
|
2014-09-26 11:21:46 +00:00
|
|
|
GST_DEBUG ("opengl GstGLNSWindow initialized");
|
2013-08-15 07:09:04 +00:00
|
|
|
|
|
|
|
gst_object_unref (window);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-09-25 02:26:57 +00:00
|
|
|
static void
|
|
|
|
gst_gl_context_cocoa_destroy_context (GstGLContext *context)
|
|
|
|
{
|
2014-09-26 11:21:46 +00:00
|
|
|
GstGLContextCocoa *context_cocoa = GST_GL_CONTEXT_COCOA (context);
|
|
|
|
GstGLContextCocoaPrivate *priv = context_cocoa->priv;
|
|
|
|
|
|
|
|
/* FIXME: Need to release context and other things? */
|
|
|
|
if (priv->source_id) {
|
|
|
|
g_source_remove (priv->source_id);
|
|
|
|
priv->source_id = 0;
|
|
|
|
}
|
2013-09-25 02:26:57 +00:00
|
|
|
}
|
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
static guintptr
|
|
|
|
gst_gl_context_cocoa_get_gl_context (GstGLContext * context)
|
|
|
|
{
|
|
|
|
return (guintptr) GST_GL_CONTEXT_COCOA (context)->priv->gl_context;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_gl_context_cocoa_activate (GstGLContext * context, gboolean activate)
|
|
|
|
{
|
|
|
|
GstGLContextCocoa *context_cocoa;
|
|
|
|
|
|
|
|
context_cocoa = GST_GL_CONTEXT_COCOA (context);
|
|
|
|
|
|
|
|
if (activate)
|
|
|
|
[context_cocoa->priv->gl_context makeCurrentContext];
|
|
|
|
else
|
2014-09-25 13:12:24 +00:00
|
|
|
[NSOpenGLContext clearCurrentContext];
|
2013-08-15 07:09:04 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstGLAPI
|
|
|
|
gst_gl_context_cocoa_get_gl_api (GstGLContext * context)
|
|
|
|
{
|
|
|
|
return GST_GL_API_OPENGL;
|
|
|
|
}
|
2014-02-10 21:57:29 +00:00
|
|
|
|
|
|
|
static GstGLPlatform
|
|
|
|
gst_gl_context_cocoa_get_gl_platform (GstGLContext * context)
|
|
|
|
{
|
2014-03-17 13:06:22 +00:00
|
|
|
return GST_GL_PLATFORM_CGL;
|
2014-02-10 21:57:29 +00:00
|
|
|
}
|