mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 01:19:38 +00:00
f60c87769f
This is no longer needed since the introduction of `gst_macos_main()` in 1.22. Before that existed, we had a patch for GLib in Cerbero, which did work but made it impossible to update GLib at all. The code being removed was a fail-safe in case of running without said patch being applied. It's no longer needed, since for macOS we just wrap our GStreamer with an NSApplication using `gst_macos_main()`. Warnings will be displayed if no NSApp/NSRunLoop is found wherever needed, pointing the user towards using the new API. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4366>
92 lines
2.7 KiB
Objective-C
92 lines
2.7 KiB
Objective-C
/*
|
|
* GStreamer
|
|
* Copyright (C) 2019 Matthew Waters <matthew@centricular.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 <gst/vulkan/vulkan.h>
|
|
|
|
#include "gstvkdisplay_cocoa.h"
|
|
#include "gstvkcocoa_utils.h"
|
|
|
|
#define GST_CAT_DEFAULT gst_vulkan_display_debug
|
|
GST_DEBUG_CATEGORY_STATIC (gst_vulkan_display_debug);
|
|
|
|
G_DEFINE_TYPE (GstVulkanDisplayCocoa, gst_vulkan_display_cocoa,
|
|
GST_TYPE_VULKAN_DISPLAY);
|
|
|
|
static void gst_vulkan_display_cocoa_finalize (GObject * object);
|
|
static gpointer gst_vulkan_display_cocoa_get_handle (GstVulkanDisplay * display);
|
|
|
|
|
|
static void
|
|
gst_vulkan_display_cocoa_class_init (GstVulkanDisplayCocoaClass * klass)
|
|
{
|
|
GST_VULKAN_DISPLAY_CLASS (klass)->get_handle =
|
|
GST_DEBUG_FUNCPTR (gst_vulkan_display_cocoa_get_handle);
|
|
|
|
G_OBJECT_CLASS (klass)->finalize = gst_vulkan_display_cocoa_finalize;
|
|
}
|
|
|
|
static void
|
|
gst_vulkan_display_cocoa_init (GstVulkanDisplayCocoa * display_cocoa)
|
|
{
|
|
GstVulkanDisplay *display = (GstVulkanDisplay *) display_cocoa;
|
|
|
|
display->type = GST_VULKAN_DISPLAY_TYPE_COCOA;
|
|
}
|
|
|
|
static void
|
|
gst_vulkan_display_cocoa_finalize (GObject * object)
|
|
{
|
|
G_OBJECT_CLASS (gst_vulkan_display_cocoa_parent_class)->finalize (object);
|
|
}
|
|
|
|
/**
|
|
* gst_vulkan_display_cocoa_new:
|
|
*
|
|
* Create a new #GstVulkanDisplayCocoa.
|
|
*
|
|
* Returns: (transfer full): a new #GstVulkanDisplayCocoa
|
|
*/
|
|
GstVulkanDisplayCocoa *
|
|
gst_vulkan_display_cocoa_new (void)
|
|
{
|
|
GstVulkanDisplayCocoa *ret;
|
|
|
|
GST_DEBUG_CATEGORY_GET (gst_vulkan_display_debug, "vulkandisplay");
|
|
|
|
if (NSApp == nil)
|
|
g_warning ("An NSApplication needs to be running on the main thread "
|
|
"to ensure correct behaviour on macOS. Use gst_macos_main() or call "
|
|
"[NSApplication sharedApplication] in your code before using this element.");
|
|
|
|
ret = g_object_new (GST_TYPE_VULKAN_DISPLAY_COCOA, NULL);
|
|
gst_object_ref_sink (ret);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static gpointer
|
|
gst_vulkan_display_cocoa_get_handle (GstVulkanDisplay * display)
|
|
{
|
|
return (gpointer) (__bridge gpointer) NSApp;
|
|
}
|