/* GStreamer * Copyright (C) 2016 William Manley * * 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 Street, Suite 500, * Boston, MA 02110-1335, USA. */ /** * SECTION:element-gstklvinspect * * The klvinspect element inspects KLV metadata on passing buffers. * * * Example launch line * |[ * gst-launch -v fakesrc ! klvinspect ! fakesink * ]| * FIXME Describe what the pipeline does. * */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include #include "gstklvinspect.h" #include "klv.h" GST_DEBUG_CATEGORY_STATIC (gst_klvinspect_debug_category); #define GST_CAT_DEFAULT gst_klvinspect_debug_category /* prototypes */ static void gst_klvinspect_dispose (GstKlvInspect * object); static void gst_klvinspect_set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec * pspec); static void gst_klvinspect_get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec); static GstFlowReturn gst_klvinspect_transform_ip (GstBaseTransform * trans, GstBuffer * buf); enum { PROP_0, PROP_DUMP_LOCATION }; /* pad templates */ #define SRC_CAPS "ANY" #define SINK_CAPS "ANY" /* class initialization */ G_DEFINE_TYPE_WITH_CODE (GstKlvInspect, gst_klvinspect, GST_TYPE_BASE_TRANSFORM, GST_DEBUG_CATEGORY_INIT (gst_klvinspect_debug_category, "klvinspect", 0, "debug category for klvinspect element")); static void gst_klvinspect_class_init (GstKlvInspectClass * klass) { GstBaseTransformClass *base_transform_class = GST_BASE_TRANSFORM_CLASS (klass); GObjectClass *gobject_class = (GObjectClass *) klass; /* register GObject vmethods */ gobject_class->set_property = gst_klvinspect_set_property; gobject_class->get_property = gst_klvinspect_get_property; gobject_class->dispose = gst_klvinspect_dispose; g_object_class_install_property (gobject_class, PROP_DUMP_LOCATION, g_param_spec_string ("dump-location", "Dump filename", "Location to dump KLV metadata", NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); /* Setting up pads and setting metadata should be moved to base_class_init if you intend to subclass this class. */ gst_element_class_add_pad_template (GST_ELEMENT_CLASS (klass), gst_pad_template_new ("src", GST_PAD_SRC, GST_PAD_ALWAYS, gst_caps_from_string (SRC_CAPS))); gst_element_class_add_pad_template (GST_ELEMENT_CLASS (klass), gst_pad_template_new ("sink", GST_PAD_SINK, GST_PAD_ALWAYS, gst_caps_from_string (SINK_CAPS))); gst_element_class_set_static_metadata (GST_ELEMENT_CLASS (klass), "Inspect KLV", "Filter", "Inspect KLV metadata", "Joshua M. Doe "); base_transform_class->transform_ip = GST_DEBUG_FUNCPTR (gst_klvinspect_transform_ip); base_transform_class->passthrough_on_same_caps = TRUE; base_transform_class->transform_ip_on_passthrough = TRUE; } static void gst_klvinspect_init (GstKlvInspect * filt) { filt->dump_location = NULL; filt->dump_file = NULL; } static void gst_klvinspect_dispose (GstKlvInspect * object) { GstKlvInspect *filt = GST_KLVINSPECT (object); GST_DEBUG_OBJECT (filt, "disposing"); /* release all resources */ if (filt->dump_location) g_free (filt->dump_location); if (filt->dump_file) fclose (filt->dump_file); /* chain up to the parent class */ G_OBJECT_CLASS (gst_klvinspect_parent_class)->dispose (object); } static void gst_klvinspect_set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec * pspec) { GstKlvInspect *filt = GST_KLVINSPECT (object); switch (prop_id) { case PROP_DUMP_LOCATION: if (filt->dump_location) g_free (filt->dump_location); filt->dump_location = g_strdup (g_value_get_string (value)); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } } static void gst_klvinspect_get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec) { GstKlvInspect *filt = GST_KLVINSPECT (object); switch (prop_id) { case PROP_DUMP_LOCATION: g_value_set_string (value, filt->dump_location); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } } static GstFlowReturn gst_klvinspect_transform_ip (GstBaseTransform * trans, GstBuffer * buf) { GstKlvInspect *filt = GST_KLVINSPECT (trans); GstKLVMeta *klv_meta; gpointer iter = NULL; gint n_klv_meta_found = 0; if (filt->dump_location && !filt->dump_file) { GST_DEBUG_OBJECT (filt, "Opening file '%s' to dump KLV data", filt->dump_location); filt->dump_file = g_fopen (filt->dump_location, "wb"); if (!filt->dump_file) GST_WARNING_OBJECT (filt, "Unable to open KLV dump file"); } while ((klv_meta = (GstKLVMeta *) gst_buffer_iterate_meta_filtered (buf, &iter, GST_KLV_META_API_TYPE))) { gsize klv_size; const guint8 *klv_data; klv_data = gst_klv_meta_get_data (klv_meta, &klv_size); if (klv_data) { GST_MEMDUMP_OBJECT (filt, "KLV data", klv_data, (guint) klv_size); ++n_klv_meta_found; if (filt->dump_file) { fwrite (klv_data, klv_size, 1, filt->dump_file); } } } GST_LOG_OBJECT (filt, "Found %d KLV meta", n_klv_meta_found); return GST_FLOW_OK; }