mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
46ea9729df
Keep tracer base class in tracer and move core support into the utils module. Add a unstable-api guard to the tracer.h so that external modules would need to acknowledge the status by setting GST_USE_UNSTABLE_API.
76 lines
2.2 KiB
C
76 lines
2.2 KiB
C
/* GStreamer
|
|
* Copyright (C) 2013 Stefan Sauer <ensonic@users.sf.net>
|
|
*
|
|
* gsttracerfactory.c: tracing subsystem
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
/**
|
|
* SECTION:gsttracerfactory
|
|
* @short_description: Information about registered tracer functions
|
|
*
|
|
* Use gst_tracer_factory_get_list() to get a list of tracer factories known to
|
|
* GStreamer.
|
|
*/
|
|
|
|
#include "gst_private.h"
|
|
#include "gstinfo.h"
|
|
#include "gsttracerfactory.h"
|
|
#include "gstregistry.h"
|
|
|
|
GST_DEBUG_CATEGORY (tracer_debug);
|
|
#define GST_CAT_DEFAULT tracer_debug
|
|
|
|
#define _do_init \
|
|
{ \
|
|
GST_DEBUG_CATEGORY_INIT (tracer_debug, "GST_TRACER", \
|
|
GST_DEBUG_FG_BLUE, "tracing subsystem"); \
|
|
}
|
|
|
|
#define gst_tracer_factory_parent_class parent_class
|
|
G_DEFINE_TYPE_WITH_CODE (GstTracerFactory, gst_tracer_factory,
|
|
GST_TYPE_PLUGIN_FEATURE, _do_init);
|
|
|
|
static void
|
|
gst_tracer_factory_class_init (GstTracerFactoryClass * klass)
|
|
{
|
|
}
|
|
|
|
static void
|
|
gst_tracer_factory_init (GstTracerFactory * factory)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* gst_tracer_factory_get_list:
|
|
*
|
|
* Gets the list of all registered tracer factories. You must free the
|
|
* list using gst_plugin_feature_list_free().
|
|
*
|
|
* The returned factories are sorted by factory name.
|
|
*
|
|
* Free-function: gst_plugin_feature_list_free
|
|
*
|
|
* Returns: (transfer full) (element-type Gst.TracerFactory): the list of all
|
|
* registered #GstTracerFactory.
|
|
*/
|
|
GList *
|
|
gst_tracer_factory_get_list (void)
|
|
{
|
|
return gst_registry_get_feature_list (gst_registry_get (),
|
|
GST_TYPE_TRACER_FACTORY);
|
|
}
|