summaryrefslogtreecommitdiff
path: root/tests/examples
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2015-04-25 13:38:08 +0100
committerTim-Philipp Müller <tim@centricular.com>2015-04-25 13:44:01 +0100
commit0ff70da6bc4910c2133526c999b82d5849b2034e (patch)
tree4ecc2d37c65372deec5efd78b50b77757aab1e40 /tests/examples
parentb800bba76a782c534d5d6a4af31b34e9e00e7459 (diff)
examples: motioncells: remove GPL3 code we don't need
If 95% of the code of an example app consists of GObject code, maybe that's defeating the point a little. So just remove a lot of that and trim down the example to the absolute minimum. Also removes the last remaining GPL3 licensed code in -bad.
Diffstat (limited to 'tests/examples')
-rw-r--r--tests/examples/opencv/Makefile.am8
-rw-r--r--tests/examples/opencv/gst_element_print_properties.c607
-rw-r--r--tests/examples/opencv/gst_element_print_properties.h34
-rw-r--r--tests/examples/opencv/gstmotioncells_dynamic_test.c64
-rw-r--r--tests/examples/opencv/gstmotioncells_dynamic_test.h32
5 files changed, 60 insertions, 685 deletions
diff --git a/tests/examples/opencv/Makefile.am b/tests/examples/opencv/Makefile.am
index 9db9da4bb..27dbfb345 100644
--- a/tests/examples/opencv/Makefile.am
+++ b/tests/examples/opencv/Makefile.am
@@ -1,9 +1,7 @@
noinst_PROGRAMS = gstmotioncells_dynamic_test \
gsthanddetect_test
-gstmotioncells_dynamic_test_SOURCES = \
- gstmotioncells_dynamic_test.c \
- gst_element_print_properties.c
+gstmotioncells_dynamic_test_SOURCES = gstmotioncells_dynamic_test.c
gsthanddetect_test_SOURCES = gsthanddetect_test.c
gstmotioncells_dynamic_test_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
@@ -11,6 +9,4 @@ gstmotioncells_dynamic_test_LDFLAGS = $(GST_LIBS) $(GST_BASE_LIBS) $(GST_PLUGINS
gsthanddetect_test_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
gsthanddetect_test_LDFLAGS = $(GST_LIBS) $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) $(GSTPB_BASE_LIBS)
-noinst_HEADERS = \
- gstmotioncells_dynamic_test.h \
- gst_element_print_properties.h
+
diff --git a/tests/examples/opencv/gst_element_print_properties.c b/tests/examples/opencv/gst_element_print_properties.c
deleted file mode 100644
index b1b9dda97..000000000
--- a/tests/examples/opencv/gst_element_print_properties.c
+++ /dev/null
@@ -1,607 +0,0 @@
-/* GStreamer
- * Copyright (C) 2010 Wesley Miller <wmiller@sdr.com>
- *
- *
- * gst_element_print_properties(): a tool to inspect GStreamer
- * element properties
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
-
-/* FIXME 0.11: suppress warnings for deprecated API such as GValueArray
- * with newer GLib versions (>= 2.31.0) */
-#define GLIB_DISABLE_DEPRECATION_WARNINGS
-
-#include <gst/gst.h>
-#include <string.h>
-#include <stdio.h>
-#include <locale.h>
-
-#include "gst_element_print_properties.h"
-
-
-void
-gst_element_print_properties (GstElement * element)
-{
- /////////////////////////////////////////////////////////////////////////////
- //
- // Formatting setup
- //
- // Change the valuses of c2w, c3w and c4w to adjust the 2nd, 3rd and 4th
- // column widths, respectively. The gutter width is fixed at 3 and
- // alwasys prints as " | ". Column 1 has a fixed width of 3.
- //
- // The first two rows for each element's output are its element class
- // name (e.g. "GstAudioResample") and its element factory name
- // ("audioresample"). The long element factory name ("Audio resampler")
- // is in column 4 following the element factory name.
- //
- // Most properties use this format. Multivalued items like CAPS, certain
- // GST_TYPEs and enums are different.
- //
- // Column 1 contains the rwc, "readable", "writable", "controllable"
- // flags of the property.
- // Column 2 contains the property name
- // Column 3 contains the current value
- // Column 4 contains the property type, e.g. G_TYPE_INT
- // Column 5 contains the range, if there is one, and the default.
- // The range is encosed in parentheses. e.g. "(1-10) 5"
- //
- // CAPS, enums, flags and some undefined items have no columns 4 or 5 and
- // column 3 will contain a description of the item. Additional rows may
- // list specific valused (CAPS and flags).
- //
- // String values are enclosed in double quotes. A missing right quote
- // inidicates the string had been truncated.
- //
- // Screen column
- // ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9--->
- //
- // formatted columns with built in gutters
- // --- | ---------c2---------- | ---------c3-------- | -----------c4---------- | --> unspecified
- //
- // <-->|<--- property name --->|<-- current value -->|<-------- type --------->|<----- range and default ----->
- // | ELEMENT CLASS NAME | GstAudioResample | |
- // | ELEMENT FACTORY NAME | audioresample | Audio resampler |
- // RW- | name | "audioResampler" | G_TYPE_STRING | null
- // RW- | qos | false | G_TYPE_BOOLEAN | false
- // RW- | quality | 8 | G_TYPE_INT | (0 - 10) 4
- //
- /////////////////////////////////////////////////////////////////////////////
-
- const guint c2w = 21; // column 2 width
- const guint c3w = 19; // column 3 width
- const guint c4w = 23; // column 4 width
-
- /////////////////////////////////////////////////////////////////////////////
- // end configuration variables.
- /////////////////////////////////////////////////////////////////////////////
-
- GParamSpec **property_specs;
- guint num_properties, i;
- gboolean readable;
-
-
- g_return_if_fail (element != NULL);
-
- property_specs = g_object_class_list_properties (G_OBJECT_GET_CLASS (element),
- &num_properties);
-
- /*--- draw the header information ---*/
- print_column_titles (c2w, c3w, c4w);
- print_element_info (element, c2w, c3w, c4w);
-
-
- for (i = 0; i < num_properties; i++) {
- gchar flags[4];
- GValue value = { 0, };
- GParamSpec *param = property_specs[i];
-
- readable = FALSE;
-
- g_value_init (&value, param->value_type);
-
- flags[0] = '-';
- flags[1] = '-';
- flags[2] = '-';
- flags[3] = 0x0;
-
- if (param->flags & G_PARAM_READABLE) {
- g_object_get_property (G_OBJECT (element), param->name, &value);
- readable = TRUE;
- flags[0] = 'r';
- }
-
- if (param->flags & G_PARAM_WRITABLE)
- flags[1] = 'w';
-
- if (param->flags & GST_PARAM_CONTROLLABLE)
- flags[2] = 'c';
-
- g_print ("%s |", flags);
- g_print (" %-*s | ", c2w, g_param_spec_get_name (param));
-
- switch (G_VALUE_TYPE (&value)) {
- case G_TYPE_STRING: // String
- {
- GParamSpecString *pstring = G_PARAM_SPEC_STRING (param);
- if (readable) { /* current */
- const char *string_val = g_value_get_string (&value);
- gchar work_string[100];
-
- if (string_val == NULL)
- g_snprintf (work_string, sizeof (work_string), "\"%s\"", "null");
- else
- g_snprintf (work_string, sizeof (work_string), "\"%s\"",
- string_val);
- g_print ("%-*.*s", c3w, c3w, work_string);
- } else {
- g_print ("%-*s", c3w, "<not readable>"); /* alt current */
- }
- g_print (" | %-*s", c4w, "G_TYPE_STRING"); /* type */
-
- if (pstring->default_value == NULL)
- g_print (" | %s", "null"); /* default */
- else
- g_print (" | \"%s\"", pstring->default_value); /* default */
- break;
- }
-
- case G_TYPE_BOOLEAN: // Boolean
- {
- GParamSpecBoolean *pboolean = G_PARAM_SPEC_BOOLEAN (param);
- if (readable) /* current */
- g_print ("%-*s", c3w,
- (g_value_get_boolean (&value) ? "true" : "false"));
- else
- g_print ("%-*s", c3w, "<not readable>");
- g_print (" | %-*s", c4w, "G_TYPE_BOOLEAN"); /* type */
- g_print (" | %s ", /* default */
- (pboolean->default_value ? "true" : "false"));
- break;
- }
-
- case G_TYPE_ULONG: // Unsigned Long
- {
- GParamSpecULong *pulong = G_PARAM_SPEC_ULONG (param);
- if (readable) /* current */
- g_print ("%-*lu", c3w, g_value_get_ulong (&value));
- else
- g_print ("%-*s", c3w, "<not readable>");
- g_print (" | %-*s", c4w, "G_TYPE_ULONG"); /* type */
- g_print (" | (%lu - %lu) %lu ", pulong->minimum, pulong->maximum, /* range */
- pulong->default_value); /* default */
- break;
- }
-
- case G_TYPE_LONG: // Long
- {
- GParamSpecLong *plong = G_PARAM_SPEC_LONG (param);
- if (readable) /* current */
- g_print ("%-*ld", c3w, g_value_get_long (&value));
- else
- g_print ("%-*s", c3w, "<not readable>");
- g_print (" | %-*s", c4w, "G_TYPE_LONG"); /* type */
- g_print (" | (%ld - %ld) %ld ", plong->minimum, plong->maximum, /* range */
- plong->default_value); /* default */
- break;
- }
-
- case G_TYPE_UINT: // Unsigned Integer
- {
- GParamSpecUInt *puint = G_PARAM_SPEC_UINT (param);
- if (readable) /* current */
- g_print ("%-*u", c3w, g_value_get_uint (&value));
- else
- g_print ("%-*s", c3w, "<not readable>");
- g_print (" | %-*s", c4w, "G_TYPE_UINT"); /* type */
- g_print (" | (%u - %u) %u ", puint->minimum, puint->maximum, /* range */
- puint->default_value); /* default */
- break;
- }
-
- case G_TYPE_INT: // Integer
- {
- GParamSpecInt *pint = G_PARAM_SPEC_INT (param);
- if (readable) /* current */
- g_print ("%-*d", c3w, g_value_get_int (&value));
- else
- g_print ("%-*s", c3w, "<not readable>");
- g_print (" | %-*s", c4w, "G_TYPE_INT"); /* type */
- g_print (" | (%d - %d) %d ", pint->minimum, pint->maximum, /* range */
- pint->default_value); /* default */
- break;
- }
-
- case G_TYPE_UINT64: // Unsigned Integer64.
- {
- GParamSpecUInt64 *puint64 = G_PARAM_SPEC_UINT64 (param);
- if (readable) /* current */
- g_print ("%-*" G_GUINT64_FORMAT, c3w, g_value_get_uint64 (&value));
- else
- g_print ("%-*s", c3w, "<not readable>");
- g_print (" | %-*s", c4w, "G_TYPE_UINT64"); /* type */
- g_print (" | (%" G_GUINT64_FORMAT " - %" G_GUINT64_FORMAT ")" " %" G_GUINT64_FORMAT " ", puint64->minimum, puint64->maximum, /* range */
- puint64->default_value); /* default */
- break;
- }
-
- case G_TYPE_INT64: // Integer64
- {
- GParamSpecInt64 *pint64 = G_PARAM_SPEC_INT64 (param);
- if (readable) /* current */
- g_print ("%-*" G_GINT64_FORMAT, c3w, g_value_get_int64 (&value));
- else
- g_print ("%-*s", c3w, "<not readable>");
- g_print (" | %-*s", c4w, "G_TYPE_INT64"); /* type */
- g_print (" | (%" G_GINT64_FORMAT " - %" G_GINT64_FORMAT ")" " %" G_GINT64_FORMAT " ", pint64->minimum, pint64->maximum, /* range */
- pint64->default_value); /* default */
- break;
- }
-
- case G_TYPE_FLOAT: // Float.
- {
- GParamSpecFloat *pfloat = G_PARAM_SPEC_FLOAT (param);
- if (readable) /* current */
- g_print ("%-*g", c3w, g_value_get_float (&value));
- else
- g_print ("%-*s", c3w, "<not readable>");
- g_print (" | %-*s", c4w, "G_TYPE_FLOAT"); /* type */
- g_print (" | (%g - %g) %g ", pfloat->minimum, pfloat->maximum, /* range */
- pfloat->default_value); /* default */
- break;
- }
-
- case G_TYPE_DOUBLE: // Double
- {
- GParamSpecDouble *pdouble = G_PARAM_SPEC_DOUBLE (param);
- if (readable) /* current */
- g_print ("%-*g", c3w, g_value_get_double (&value));
- else
- g_print ("%-*s", c3w, "<not readable>");
- g_print (" | %-*s", c4w, "G_TYPE_DOUBLE"); /* type */
- g_print (" | (%g - %g) %g ", pdouble->minimum, pdouble->maximum, /* range */
- pdouble->default_value); /* default */
- break;
- }
-
- default:
- if (param->value_type == GST_TYPE_CAPS) {
- const GstCaps *caps = gst_value_get_caps (&value);
- if (!caps)
- g_print ("%-*s | %-*.*s |", c3w, "Caps (NULL)", c4w, c4w, " ");
- else {
- gchar prefix_string[100];
- g_snprintf (prefix_string, sizeof (prefix_string),
- " | %-*.*s | ", c2w, c2w, " ");
- print_caps (caps, prefix_string);
- }
- }
-
- else if (G_IS_PARAM_SPEC_ENUM (param)) {
- GParamSpecEnum *penum = G_PARAM_SPEC_ENUM (param);
- GEnumValue *values;
- guint j = 0;
- gint enum_value;
- const gchar *def_val_nick = "", *cur_val_nick = "";
- gchar work_string[100];
-
- values = G_ENUM_CLASS (g_type_class_ref (param->value_type))->values;
- enum_value = g_value_get_enum (&value);
-
- while (values[j].value_name) {
- if (values[j].value == enum_value)
- cur_val_nick = values[j].value_nick;
- if (values[j].value == penum->default_value)
- def_val_nick = values[j].value_nick;
- j++;
- }
-
- g_snprintf (work_string, sizeof (work_string), "%d, \"%s\"",
- enum_value, cur_val_nick);
- g_print ("%-*.*s", c3w, c3w, work_string);
- g_print (" | Enum \"%s\" : %d, \"%s\"",
- g_type_name (G_VALUE_TYPE (&value)),
- penum->default_value, def_val_nick);
- }
-
- else if (G_IS_PARAM_SPEC_FLAGS (param)) {
- GParamSpecFlags *pflags = G_PARAM_SPEC_FLAGS (param);
- GFlagsValue *vals;
- gchar *cur, *def;
- gchar work_string[100];
-
- vals = pflags->flags_class->values;
- cur = flags_to_string (vals, g_value_get_flags (&value)); /* current */
- def = flags_to_string (vals, pflags->default_value); /* default */
-
- /* current */
- g_snprintf (work_string, sizeof (work_string), "0x%08x, \"%s\"",
- g_value_get_flags (&value), cur);
- g_print ("%-*.*s", c3w, c3w, work_string);
-
- /* type */
- g_snprintf (work_string, sizeof (work_string), "Flags \"%s\"",
- g_type_name (G_VALUE_TYPE (&value)));
- g_print ("%-*.*s", c4w, c4w, work_string);
-
- /* default */
- g_print (" | 0x%08x, \"%s\"", pflags->default_value, def);
-
- /* values list */
- while (vals[0].value_name) {
- g_snprintf (work_string, sizeof (work_string),
- "\n | %-*.*s | (0x%08x): %-16s - %s", c2w, c2w, "",
- vals[0].value, vals[0].value_nick, vals[0].value_name);
- g_print ("%s", work_string);
- ++vals;
- }
-
- g_free (cur);
- g_free (def);
- }
-
- else if (G_IS_PARAM_SPEC_OBJECT (param)) {
- g_print ("%-*.*s | Object of type \"%s\"",
- c3w, c3w,
- g_type_name (param->value_type), g_type_name (param->value_type));
- }
-
- else if (G_IS_PARAM_SPEC_BOXED (param)) {
- g_print ("%-*.*s | Boxed pointer of type \"%s\"",
- c3w, c3w,
- g_type_name (param->value_type), g_type_name (param->value_type));
- }
-
- else if (G_IS_PARAM_SPEC_POINTER (param)) {
- if (param->value_type != G_TYPE_POINTER) {
- g_print ("%-*.*s | Pointer of type \"%s\"",
- c3w, c3w,
- g_type_name (param->value_type),
- g_type_name (param->value_type));
- } else {
- g_print ("%-*.*s |", c3w, c3w, "Pointer.");
- }
- }
-
- else if (param->value_type == G_TYPE_VALUE_ARRAY) {
- GParamSpecValueArray *pvarray = G_PARAM_SPEC_VALUE_ARRAY (param);
- if (pvarray->element_spec) {
- g_print ("%-*.*s :Array of GValues of type \"%s\"",
- c3w, c3w,
- g_type_name (pvarray->element_spec->value_type),
- g_type_name (pvarray->element_spec->value_type));
- } else {
- g_print ("%-*.*s :", c3w, c3w, "Array of GValues");
- }
- }
-
- else if (GST_IS_PARAM_SPEC_FRACTION (param)) {
- GstParamSpecFraction *pfraction = GST_PARAM_SPEC_FRACTION (param);
- gchar work_string[100];
-
- if (readable) { /* current */
- g_snprintf (work_string, sizeof (work_string), "%d/%d",
- gst_value_get_fraction_numerator (&value),
- gst_value_get_fraction_denominator (&value));
- g_print ("%-*.*s", c3w, c3w, work_string);
- } else
- g_print ("%-*s", c3w, "<not readable>");
-
- g_print (" | %-*.*s", /* type */
- c3w, c3w, " Fraction. ");
- g_print (" | (%d/%d - %d/%d)", /* range */
- pfraction->min_num, pfraction->min_den,
- pfraction->max_num, pfraction->max_den);
- g_print (" %d/%d ", /* default */
- pfraction->def_num, pfraction->def_den);
- }
-
- else if (G_IS_PARAM_SPEC_BOXED (param)) {
- g_print ("%-*.*s | Boxed of type \"%s\"",
- c3w, c3w,
- g_type_name (param->value_type), g_type_name (param->value_type));
- }
-
- else {
- g_print ("Unknown type %ld \"%s\"",
- (glong) param->value_type, g_type_name (param->value_type));
-
- }
- break;
- }
-
- if (!readable)
- g_print (" Write only\n");
- else
- g_print ("\n");
-
- g_value_reset (&value);
- }
-
- if (0 == num_properties)
- g_print (" none\n");
-
- g_free (property_specs);
-}
-
-//------------------------------------------------------------------------------
-void
-print_column_titles (guint c2w, guint c3w, guint c4w)
-{
- //////////////////////////////////////////////////////////////////////////
- //
- // Create Header for property listing
- // RWF | --- element name ---- | ---------c3-------- | -----------c4---------- | --> unspecified
- //
- //////////////////////////////////////////////////////////////////////////
- gchar work_string[200];
- gchar dashes[] = "-----------------------------";
- gint llen = 0;
- gint rlen = 0;
-
- /*--- column 1 - RWC ---*/
- g_snprintf (work_string, sizeof (work_string), "<-->|<");
-
- /*--- column 2 - property name ---*/
- llen = (c2w - 15) / 2; /* width of " property name " = 15 */
- rlen = c2w - 15 - llen;
-
- strncat (work_string, dashes, llen);
- strcat (work_string, " property name ");
- strncat (work_string, dashes, rlen);
- strcat (work_string, ">|<");
-
- /*--- column 3 - current value ---*/
- llen = (c3w - 15) / 2; /* width of " current value " = 15 */
- rlen = c3w - 15 - llen;
-
- strncat (work_string, dashes, llen);
- strcat (work_string, " current value ");
- strncat (work_string, dashes, rlen);
- strcat (work_string, ">|<");
-
- /*--- column 4 - type ---*/
- llen = (c4w - 6) / 2; /* width of " type " = 6 */
- rlen = c4w - 6 - llen;
-
- strncat (work_string, dashes, llen);
- strcat (work_string, " type ");
- strncat (work_string, dashes, rlen);
- strcat (work_string, ">|<");
-
- /*--- column 5 - range and default ---*/
- strcat (work_string, "----- range and default ----->");
-
- g_print ("\n%s\n", work_string);
-}
-
-//------------------------------------------------------------------------------
-void
-print_element_info (GstElement * element, guint c2w, guint c3w, guint c4w)
-{
- /////////////////////////////////////////////////////////////////////////////
- //
- // Print element factory and class information as part of each header
- //
- /////////////////////////////////////////////////////////////////////////////
- gchar work_string[100];
- GstElementFactory *factory = gst_element_get_factory (element);
-
- g_snprintf (work_string, sizeof (work_string), "ELEMENT CLASS NAME");
- g_print (" | %-*s", c2w, work_string);
- g_print (" | %-*s", c3w, g_type_name (G_OBJECT_TYPE (element)));
- g_print (" | %-*s | \n", c4w, "");
-
-
- g_snprintf (work_string, sizeof (work_string), "ELEMENT FACTORY NAME");
- g_print (" | %-*s", c2w, work_string);
-
- g_print (" | %-*s", c3w,
- gst_plugin_feature_get_name (GST_PLUGIN_FEATURE (factory)));
- g_print (" | %-*s | \n", c4w,
- gst_element_factory_get_metadata (factory,
- GST_ELEMENT_METADATA_LONGNAME));
-
-// "Audio Resampler" g_print( " | %-*s", c3w, gst_element_factory_get_longname( gst_element_get_factory( element )) );
-
-
-}
-
-//------------------------------------------------------------------------------
-gchar *
-flags_to_string (GFlagsValue * vals, guint flags)
-{
- /////////////////////////////////////////////////////////////////////////////
- //
- // List individual flags in separate rows
- //
- /////////////////////////////////////////////////////////////////////////////
- GString *s = NULL;
- guint flags_left, i;
-
- /* first look for an exact match and count the number of values */
- for (i = 0; vals[i].value_name != NULL; ++i) {
- if (vals[i].value == flags)
- return g_strdup (vals[i].value_nick);
- }
-
- s = g_string_new (NULL);
-
- /* we assume the values are sorted from lowest to highest value */
- flags_left = flags;
- while (i > 0) {
- --i;
- if (0 != vals[i].value && (flags_left & vals[i].value) == vals[i].value) {
- if (0 < s->len)
- g_string_append (s, " | ");
- g_string_append (s, vals[i].value_nick);
- flags_left -= vals[i].value;
- if (0 == flags_left)
- break;
- }
- }
-
- if (0 == s->len)
- g_string_assign (s, "(none)");
-
- return g_string_free (s, FALSE);
-}
-
-
-//------------------------------------------------------------------------------
-void
-print_caps (const GstCaps * caps, const gchar * pfx)
-{
- /////////////////////////////////////////////////////////////////////////////
- //
- // Print each caps value on a separate line
- //
- /////////////////////////////////////////////////////////////////////////////
- guint i;
-
- g_return_if_fail (caps != NULL);
-
- if (gst_caps_is_any (caps)) {
- g_print ("%s | %s", pfx, "ANY | |");
- return;
- }
- if (gst_caps_is_empty (caps)) {
- g_print ("%s | %s", pfx, "EMPTY | |");
- return;
- }
-
- for (i = 0; i < gst_caps_get_size (caps); i++) {
- GstStructure *structure = gst_caps_get_structure (caps, i);
- g_print ("%s", gst_structure_get_name (structure));
- gst_structure_foreach (structure, print_field, (gpointer) pfx);
- }
-}
-
-//------------------------------------------------------------------------------
-gboolean
-print_field (GQuark field, const GValue * value, gpointer pfx)
-{
- /////////////////////////////////////////////////////////////////////////////
- //
- // printing function for individual caps fields
- //
- /////////////////////////////////////////////////////////////////////////////
- gchar *str = gst_value_serialize (value);
- g_print ("\n%s %-15.15s - %s",
- (gchar *) pfx, g_quark_to_string (field), str);
- g_free (str);
- return TRUE;
-}
diff --git a/tests/examples/opencv/gst_element_print_properties.h b/tests/examples/opencv/gst_element_print_properties.h
deleted file mode 100644
index 49beee35c..000000000
--- a/tests/examples/opencv/gst_element_print_properties.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/* GStreamer
- * Copyright (C) 2010 Wesley Miller <wmiller@sdr.com>
- *
- *
- * gst_element_print_properties(): a tool to inspect GStreamer
- * element properties
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
-
-#ifndef GST_ELEMENT_PRINT_PROPERTIES_H
-#define GST_ELEMENT_PRINT_PROPERTIES_H
-
-extern void gst_element_print_properties (GstElement * element);
-extern void print_column_titles (guint c2w, guint c3w, guint c4w);
-extern void print_element_info (GstElement * element, guint c2w, guint c3w,
- guint c4w);
-extern gchar *flags_to_string (GFlagsValue * vals, guint flags);
-extern void print_caps (const GstCaps * caps, const gchar * pfx);
-extern gboolean print_field (GQuark field, const GValue * value, gpointer pfx);
-
-#endif
diff --git a/tests/examples/opencv/gstmotioncells_dynamic_test.c b/tests/examples/opencv/gstmotioncells_dynamic_test.c
index 111c62033..46720f82a 100644
--- a/tests/examples/opencv/gstmotioncells_dynamic_test.c
+++ b/tests/examples/opencv/gstmotioncells_dynamic_test.c
@@ -21,12 +21,61 @@
*
*/
#include <gst/gst.h>
-#include <glib.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
-#include "gstmotioncells_dynamic_test.h"
-#include "gst_element_print_properties.h"
+
+static void
+print_element_properties (GstElement * element)
+{
+ GParamSpec **pspecs, *pspec;
+ guint num, i;
+
+ g_print ("\tProperty : value (type)\n");
+
+ pspecs = g_object_class_list_properties (G_OBJECT_GET_CLASS (element), &num);
+ for (i = 0; i < num; ++i) {
+ GValue val = G_VALUE_INIT;
+ const gchar *type_name;
+ gchar *s;
+
+ pspec = pspecs[i];
+
+ /* only care about properties we can read and write */
+ if ((pspec->flags & G_PARAM_READWRITE) != G_PARAM_READWRITE)
+ continue;
+ /* and which can be changed after construction */
+ if ((pspec->flags & G_PARAM_CONSTRUCT_ONLY))
+ continue;
+ /* ignore some GstObject properties which are not interesting */
+ if (!strcmp (pspec->name, "name") || !strcmp (pspec->name, "parent"))
+ continue;
+ /* ignore properties we can't change in a meaningful way */
+ if (G_IS_PARAM_SPEC_BOXED (pspec) || G_IS_PARAM_SPEC_OBJECT (pspec)
+ || G_IS_PARAM_SPEC_POINTER (pspec))
+ continue;
+
+ g_value_init (&val, G_PARAM_SPEC_VALUE_TYPE (pspec));
+ g_object_get_property (G_OBJECT (element), pspec->name, &val);
+ s = gst_value_serialize (&val);
+
+ if (G_PARAM_SPEC_VALUE_TYPE (pspec) == G_TYPE_STRING) {
+ type_name = "string";
+ g_free (s);
+ g_object_get (G_OBJECT (element), pspec->name, &s, NULL);
+ if (s == NULL)
+ s = g_strdup ("(null)");
+ } else {
+ type_name = g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspec));
+ }
+
+ g_print ("\t%s: %s (%s)\n", pspec->name, s, type_name);
+ g_free (s);
+ g_value_unset (&val);
+ }
+
+ g_free (pspecs);
+}
int
main (int argc, char *argv[])
@@ -71,9 +120,12 @@ main (int argc, char *argv[])
g_print ("Going to playing..\n");
gst_element_set_state (pipeline, GST_STATE_PLAYING);
- g_print ("You can use these properties: \n");
- gst_element_print_properties (mcells);
- g_print ("See 'gst-inspect-1.0 motioncells' for all the details.\n");
+
+ g_print ("You can use these properties: \n\n");
+
+ print_element_properties (mcells);
+
+ g_print ("\nSee 'gst-inspect-1.0 motioncells' for all the details.\n");
g_print ("Change properties like this: propertyname=value\n");
g_print ("Quit with 'q'\n");
diff --git a/tests/examples/opencv/gstmotioncells_dynamic_test.h b/tests/examples/opencv/gstmotioncells_dynamic_test.h
deleted file mode 100644
index be2559810..000000000
--- a/tests/examples/opencv/gstmotioncells_dynamic_test.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/* GStreamer
- * Copyright (C) 2011 Robert Jobbagy <jobbagy.robert@gmail.com>
- *
- *
- * gst_motioncells_dynamic_test(): a test tool what can to do dynamic change properties
- *
- *
-* 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.
- *
- */
-
-#ifndef GST_MOTIONCELLS_DYNAMIC_TEST_H
-#define GST_MOTIONCELLS_DYNAMIC_TEST_H
-
-extern void setProperty (GstElement * mcells, char *property, char *prop_value,
- GType type, GValue * value);
-
-
-#endif