Files
clapper/lib/gst/plugin/gstclappercontexthandler.c
Rafał Dzięgiel 0920914b89 plugin: Add context handler base class
In order to bridge work with GL between GTK and GStreamer reliably, we need to create and
check context capabilities ahead of time. We also need to be able to query context at any
time during playback. Also we should avoid changing importers on context queries, this can
lead to all sort of problems.

To be able to achieve all of above, introduce new context handler base class that works
separately of importers.
2022-06-12 13:58:51 +02:00

87 lines
2.6 KiB
C
Vendored

/*
* Copyright (C) 2022 Rafał Dzięgiel <rafostar.github@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 "gstclappercontexthandler.h"
#define parent_class gst_clapper_context_handler_parent_class
G_DEFINE_TYPE (GstClapperContextHandler, gst_clapper_context_handler, GST_TYPE_OBJECT);
static gboolean
_default_handle_context_query (GstClapperContextHandler *self,
GstBaseSink *bsink, GstQuery *query)
{
GST_FIXME_OBJECT (self, "Need to handle context query");
return FALSE;
}
static void
gst_clapper_context_handler_init (GstClapperContextHandler *self)
{
}
static void
gst_clapper_context_handler_finalize (GObject *object)
{
GstClapperContextHandler *self = GST_CLAPPER_CONTEXT_HANDLER_CAST (object);
GST_TRACE_OBJECT (self, "Finalize");
GST_CALL_PARENT (G_OBJECT_CLASS, finalize, (object));
}
static void
gst_clapper_context_handler_class_init (GstClapperContextHandlerClass *klass)
{
GObjectClass *gobject_class = (GObjectClass *) klass;
GstClapperContextHandlerClass *handler_class = (GstClapperContextHandlerClass *) klass;
gobject_class->finalize = gst_clapper_context_handler_finalize;
handler_class->handle_context_query = _default_handle_context_query;
}
gboolean
gst_clapper_context_handler_handle_context_query (GstClapperContextHandler *self,
GstBaseSink *bsink, GstQuery *query)
{
GstClapperContextHandlerClass *handler_class = GST_CLAPPER_CONTEXT_HANDLER_GET_CLASS (self);
return handler_class->handle_context_query (self, bsink, query);
}
GstClapperContextHandler *
gst_clapper_context_handler_obtain_with_type (GPtrArray *context_handlers, GType type)
{
guint i;
for (i = 0; i < context_handlers->len; i++) {
GstClapperContextHandler *handler = g_ptr_array_index (context_handlers, i);
if (G_TYPE_CHECK_INSTANCE_TYPE (handler, type))
return gst_object_ref (handler);
}
return NULL;
}