debugspy: add new element
This element allows you to get information about buffers with bus messages. It provides the same kind of information as identity does through a notify signal on a string property, but in a more programmer-friendly way.
This commit is contained in:
parent
d8fd874f52
commit
555959a852
@ -15,6 +15,7 @@ EXTRA_DIST = debugutils-marshal.list
|
|||||||
plugin_LTLIBRARIES = libgstdebugutilsbad.la
|
plugin_LTLIBRARIES = libgstdebugutilsbad.la
|
||||||
|
|
||||||
libgstdebugutilsbad_la_SOURCES = \
|
libgstdebugutilsbad_la_SOURCES = \
|
||||||
|
gstdebugspy.c \
|
||||||
fpsdisplaysink.c \
|
fpsdisplaysink.c \
|
||||||
debugutilsbad.c \
|
debugutilsbad.c \
|
||||||
gstchecksumsink.c \
|
gstchecksumsink.c \
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
GType gst_checksum_sink_get_type (void);
|
GType gst_checksum_sink_get_type (void);
|
||||||
GType fps_display_sink_get_type (void);
|
GType fps_display_sink_get_type (void);
|
||||||
GType gst_chop_my_data_get_type (void);
|
GType gst_chop_my_data_get_type (void);
|
||||||
|
GType gst_debug_spy_get_type (void);
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
plugin_init (GstPlugin * plugin)
|
plugin_init (GstPlugin * plugin)
|
||||||
@ -36,6 +37,8 @@ plugin_init (GstPlugin * plugin)
|
|||||||
fps_display_sink_get_type ());
|
fps_display_sink_get_type ());
|
||||||
gst_element_register (plugin, "chopmydata", GST_RANK_NONE,
|
gst_element_register (plugin, "chopmydata", GST_RANK_NONE,
|
||||||
gst_chop_my_data_get_type ());
|
gst_chop_my_data_get_type ());
|
||||||
|
gst_element_register (plugin, "debugspy", GST_RANK_NONE,
|
||||||
|
gst_debug_spy_get_type ());
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
238
gst/debugutils/gstdebugspy.c
Normal file
238
gst/debugutils/gstdebugspy.c
Normal file
@ -0,0 +1,238 @@
|
|||||||
|
/*
|
||||||
|
* GStreamer
|
||||||
|
* Copyright (C) 2005 Thomas Vander Stichele <thomas@apestaart.org>
|
||||||
|
* Copyright (C) 2005 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
* Copyright (C) 2011 Igalia S.L.
|
||||||
|
*
|
||||||
|
* 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., 59 Temple Place - Suite 330,
|
||||||
|
* Boston, MA 02111-1307, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SECTION:element-debugspy
|
||||||
|
*
|
||||||
|
* A spy element that can provide information on buffers going through it, with
|
||||||
|
* bus messages.
|
||||||
|
*
|
||||||
|
* <refsect2>
|
||||||
|
* <title>Example launch line</title>
|
||||||
|
* |[
|
||||||
|
* gst-launch -m videotestsrc ! debugspy ! fakesink
|
||||||
|
* ]|
|
||||||
|
* </refsect2>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifdef HAVE_CONFIG_H
|
||||||
|
# include <config.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <gst/gst.h>
|
||||||
|
|
||||||
|
#include "gstdebugspy.h"
|
||||||
|
|
||||||
|
GST_DEBUG_CATEGORY_STATIC (gst_debug_spy_debug);
|
||||||
|
#define GST_CAT_DEFAULT gst_debug_spy_debug
|
||||||
|
|
||||||
|
/* Filter signals and args */
|
||||||
|
enum
|
||||||
|
{
|
||||||
|
/* FILL ME */
|
||||||
|
LAST_SIGNAL
|
||||||
|
};
|
||||||
|
|
||||||
|
enum
|
||||||
|
{
|
||||||
|
PROP_0,
|
||||||
|
PROP_SILENT,
|
||||||
|
PROP_CHECKSUM_TYPE
|
||||||
|
};
|
||||||
|
|
||||||
|
/* create a GType for GChecksumType */
|
||||||
|
#define GST_DEBUG_SPY_CHECKSUM_TYPE (gst_debug_spy_checksum_get_type())
|
||||||
|
static GType
|
||||||
|
gst_debug_spy_checksum_get_type (void)
|
||||||
|
{
|
||||||
|
static GType checksum_type = 0;
|
||||||
|
|
||||||
|
static const GEnumValue checksum_values[] = {
|
||||||
|
{G_CHECKSUM_MD5, "Use the MD5 hashing algorithm", "md5"},
|
||||||
|
{G_CHECKSUM_SHA1, "Use the SHA-1 hashing algorithm", "sha1"},
|
||||||
|
{G_CHECKSUM_SHA256, "Use the SHA-256 hashing algorithm", "sha256"},
|
||||||
|
{0, NULL, NULL}
|
||||||
|
};
|
||||||
|
|
||||||
|
if (!checksum_type)
|
||||||
|
checksum_type = g_enum_register_static ("GChecksumType", checksum_values);
|
||||||
|
|
||||||
|
return checksum_type;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* the capabilities of the inputs and outputs.
|
||||||
|
*
|
||||||
|
* describe the real formats here.
|
||||||
|
*/
|
||||||
|
static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
|
GST_PAD_SINK,
|
||||||
|
GST_PAD_ALWAYS,
|
||||||
|
GST_STATIC_CAPS ("ANY")
|
||||||
|
);
|
||||||
|
|
||||||
|
static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src",
|
||||||
|
GST_PAD_SRC,
|
||||||
|
GST_PAD_ALWAYS,
|
||||||
|
GST_STATIC_CAPS ("ANY")
|
||||||
|
);
|
||||||
|
|
||||||
|
GST_BOILERPLATE (GstDebugSpy, gst_debug_spy, GstBaseTransform,
|
||||||
|
GST_TYPE_BASE_TRANSFORM);
|
||||||
|
|
||||||
|
static void gst_debug_spy_set_property (GObject * object, guint prop_id,
|
||||||
|
const GValue * value, GParamSpec * pspec);
|
||||||
|
static void gst_debug_spy_get_property (GObject * object, guint prop_id,
|
||||||
|
GValue * value, GParamSpec * pspec);
|
||||||
|
static GstFlowReturn gst_debug_spy_transform_ip (GstBaseTransform * transform,
|
||||||
|
GstBuffer * buf);
|
||||||
|
|
||||||
|
/* GObject vmethod implementations */
|
||||||
|
|
||||||
|
static void
|
||||||
|
gst_debug_spy_base_init (gpointer gclass)
|
||||||
|
{
|
||||||
|
GstElementClass *element_class = GST_ELEMENT_CLASS (gclass);
|
||||||
|
|
||||||
|
GST_DEBUG_CATEGORY_INIT (gst_debug_spy_debug, "debugspy", 0, "debugspy");
|
||||||
|
|
||||||
|
gst_element_class_set_details_simple (element_class,
|
||||||
|
"DebugSpy",
|
||||||
|
"Filter/Analyzer/Debug",
|
||||||
|
"DebugSpy provides information on buffers with bus messages",
|
||||||
|
"Guillaume Emont <gemont@igalia.com>");
|
||||||
|
|
||||||
|
gst_element_class_add_pad_template (element_class,
|
||||||
|
gst_static_pad_template_get (&src_factory));
|
||||||
|
gst_element_class_add_pad_template (element_class,
|
||||||
|
gst_static_pad_template_get (&sink_factory));
|
||||||
|
}
|
||||||
|
|
||||||
|
/* initialize the debugspy's class */
|
||||||
|
static void
|
||||||
|
gst_debug_spy_class_init (GstDebugSpyClass * klass)
|
||||||
|
{
|
||||||
|
GObjectClass *gobject_class;
|
||||||
|
GstBaseTransformClass *base_transform_class;
|
||||||
|
|
||||||
|
gobject_class = (GObjectClass *) klass;
|
||||||
|
base_transform_class = (GstBaseTransformClass *) klass;
|
||||||
|
|
||||||
|
gobject_class->set_property = gst_debug_spy_set_property;
|
||||||
|
gobject_class->get_property = gst_debug_spy_get_property;
|
||||||
|
|
||||||
|
base_transform_class->passthrough_on_same_caps = TRUE;
|
||||||
|
base_transform_class->transform_ip = gst_debug_spy_transform_ip;
|
||||||
|
|
||||||
|
g_object_class_install_property (gobject_class, PROP_SILENT,
|
||||||
|
g_param_spec_boolean ("silent", "Silent", "Produce verbose output ?",
|
||||||
|
FALSE, G_PARAM_READWRITE));
|
||||||
|
|
||||||
|
g_object_class_install_property (gobject_class, PROP_CHECKSUM_TYPE,
|
||||||
|
g_param_spec_enum ("checksum-type", "Checksum TYpe",
|
||||||
|
"Checksum algorithm to use", GST_DEBUG_SPY_CHECKSUM_TYPE,
|
||||||
|
G_CHECKSUM_SHA1, G_PARAM_READWRITE));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/* initialize the new element
|
||||||
|
* instantiate pads and add them to element
|
||||||
|
* set pad calback functions
|
||||||
|
* initialize instance structure
|
||||||
|
*/
|
||||||
|
static void
|
||||||
|
gst_debug_spy_init (GstDebugSpy * debugspy, GstDebugSpyClass * gclass)
|
||||||
|
{
|
||||||
|
debugspy->silent = FALSE;
|
||||||
|
debugspy->checksum_type = G_CHECKSUM_SHA1;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
gst_debug_spy_set_property (GObject * object, guint prop_id,
|
||||||
|
const GValue * value, GParamSpec * pspec)
|
||||||
|
{
|
||||||
|
GstDebugSpy *debugspy = GST_DEBUGSPY (object);
|
||||||
|
|
||||||
|
switch (prop_id) {
|
||||||
|
case PROP_SILENT:
|
||||||
|
debugspy->silent = g_value_get_boolean (value);
|
||||||
|
break;
|
||||||
|
case PROP_CHECKSUM_TYPE:
|
||||||
|
debugspy->checksum_type = g_value_get_enum (value);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
gst_debug_spy_get_property (GObject * object, guint prop_id,
|
||||||
|
GValue * value, GParamSpec * pspec)
|
||||||
|
{
|
||||||
|
GstDebugSpy *debugspy = GST_DEBUGSPY (object);
|
||||||
|
|
||||||
|
switch (prop_id) {
|
||||||
|
case PROP_SILENT:
|
||||||
|
g_value_set_boolean (value, debugspy->silent);
|
||||||
|
break;
|
||||||
|
case PROP_CHECKSUM_TYPE:
|
||||||
|
g_value_set_enum (value, debugspy->checksum_type);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* GstBaseTransform vmethod implementations */
|
||||||
|
|
||||||
|
static GstFlowReturn
|
||||||
|
gst_debug_spy_transform_ip (GstBaseTransform * transform, GstBuffer * buf)
|
||||||
|
{
|
||||||
|
GstDebugSpy *debugspy = GST_DEBUGSPY (transform);
|
||||||
|
|
||||||
|
if (debugspy->silent == FALSE) {
|
||||||
|
gchar *checksum;
|
||||||
|
GstMessage *message;
|
||||||
|
GstStructure *message_structure;
|
||||||
|
|
||||||
|
checksum = g_compute_checksum_for_data (debugspy->checksum_type,
|
||||||
|
GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf));
|
||||||
|
|
||||||
|
message_structure = gst_structure_new ("buffer",
|
||||||
|
"checksum", G_TYPE_STRING, checksum,
|
||||||
|
"timestamp", GST_TYPE_CLOCK_TIME, GST_BUFFER_TIMESTAMP (buf),
|
||||||
|
"duration", GST_TYPE_CLOCK_TIME, GST_BUFFER_DURATION (buf),
|
||||||
|
"offset", G_TYPE_UINT64, GST_BUFFER_OFFSET (buf),
|
||||||
|
"offset_end", G_TYPE_UINT64, GST_BUFFER_OFFSET_END (buf),
|
||||||
|
"size", G_TYPE_UINT, GST_BUFFER_SIZE (buf),
|
||||||
|
"caps", GST_TYPE_CAPS, GST_BUFFER_CAPS (buf), NULL);
|
||||||
|
|
||||||
|
message =
|
||||||
|
gst_message_new_element (GST_OBJECT (transform), message_structure);
|
||||||
|
|
||||||
|
gst_element_post_message (GST_ELEMENT (transform), message);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return GST_FLOW_OK;
|
||||||
|
}
|
63
gst/debugutils/gstdebugspy.h
Normal file
63
gst/debugutils/gstdebugspy.h
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
/*
|
||||||
|
* GStreamer
|
||||||
|
* Copyright (C) 2005 Thomas Vander Stichele <thomas@apestaart.org>
|
||||||
|
* Copyright (C) 2005 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
* Copyright (C) 2011 Igalia S.L.
|
||||||
|
*
|
||||||
|
* 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., 59 Temple Place - Suite 330,
|
||||||
|
* Boston, MA 02111-1307, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __GST_DEBUGSPY_H__
|
||||||
|
#define __GST_DEBUGSPY_H__
|
||||||
|
|
||||||
|
#include <gst/gst.h>
|
||||||
|
#include <gst/base/gstbasetransform.h>
|
||||||
|
|
||||||
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
|
/* #defines don't like whitespacey bits */
|
||||||
|
#define GST_TYPE_DEBUGSPY \
|
||||||
|
(gst_debug_spy_get_type())
|
||||||
|
#define GST_DEBUGSPY(obj) \
|
||||||
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_DEBUGSPY,GstDebugSpy))
|
||||||
|
#define GST_DEBUGSPY_CLASS(klass) \
|
||||||
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_DEBUGSPY,GstDebugSpyClass))
|
||||||
|
#define GST_IS_DEBUGSPY(obj) \
|
||||||
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_DEBUGSPY))
|
||||||
|
#define GST_IS_DEBUGSPY_CLASS(klass) \
|
||||||
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_DEBUGSPY))
|
||||||
|
|
||||||
|
typedef struct _GstDebugSpy GstDebugSpy;
|
||||||
|
typedef struct _GstDebugSpyClass GstDebugSpyClass;
|
||||||
|
|
||||||
|
struct _GstDebugSpy
|
||||||
|
{
|
||||||
|
GstBaseTransform transform;
|
||||||
|
|
||||||
|
gboolean silent;
|
||||||
|
GChecksumType checksum_type;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct _GstDebugSpyClass
|
||||||
|
{
|
||||||
|
GstBaseTransformClass parent_class;
|
||||||
|
};
|
||||||
|
|
||||||
|
GType gst_debug_spy_get_type (void);
|
||||||
|
|
||||||
|
G_END_DECLS
|
||||||
|
|
||||||
|
#endif /* __GST_DEBUGSPY_H__ */
|
Loading…
x
Reference in New Issue
Block a user