gstmotioncells_dynamic_test: test tool what can to do dynamic change properties

This commit is contained in:
Robert Jobbagy 2011-07-27 22:34:23 +02:00 committed by Stefan Sauer
parent 4723a5d90c
commit 75a6072db8
7 changed files with 914 additions and 2 deletions

View file

@ -1971,6 +1971,7 @@ tests/examples/camerabin2/Makefile
tests/examples/directfb/Makefile
tests/examples/mxf/Makefile
tests/examples/scaletempo/Makefile
tests/examples/opencv/Makefile
tests/icles/Makefile
ext/voamrwbenc/Makefile
ext/voaacenc/Makefile

View file

@ -16,7 +16,9 @@ else
CAMERABIN2=
endif
SUBDIRS= $(DIRECTFB_DIR) $(GTK_EXAMPLES)
DIST_SUBDIRS= camerabin camerabin2 directfb mxf scaletempo
OPENCV_EXAMPLES=opencv
SUBDIRS= $(DIRECTFB_DIR) $(GTK_EXAMPLES) $(OPENCV_EXAMPLES)
DIST_SUBDIRS= camerabin camerabin2 directfb mxf scaletempo opencv
include $(top_srcdir)/common/parallel-subdirs.mak

View file

@ -0,0 +1,7 @@
noinst_PROGRAMS = gstmotioncells_dynamic_test
gstmotioncells_dynamic_test_SOURCES = gstmotioncells_dynamic_test.c gst_element_print_properties.c
gstmotioncells_dynamic_test_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
gstmotioncells_dynamic_test_LDFLAGS = $(GST_LIBS) $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) $(GSTPB_BASE_LIBS)
noinst_HEADERS = gst_element_print_properties.h

View file

@ -0,0 +1,601 @@
/* 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/>.
*
*/
#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;
gboolean first_flag;
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;
first_flag = TRUE;
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)
sprintf (work_string, "\"%s\"", "null");
else
sprintf (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];
sprintf (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++;
}
sprintf (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 */
sprintf (work_string, "0x%08x, \"%s\"",
g_value_get_flags (&value), cur);
g_print ("%-*.*s", c3w, c3w, work_string);
/* type */
sprintf (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) {
sprintf (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 */
sprintf (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 (GST_IS_PARAM_SPEC_MINI_OBJECT (param)) {
g_print ("%-*.*s | MiniObject 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 ---*/
sprintf (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);
sprintf (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, "");
sprintf (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_longname (factory));
// "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;
}

View file

@ -0,0 +1,34 @@
/* 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

View file

@ -0,0 +1,237 @@
/* 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 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/>.
*
*/
#include <gst/gst.h>
#include <glib.h>
#include <glib/gprintf.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <locale.h>
#include <gst/interfaces/propertyprobe.h>
#include "gstmotioncells_dynamic_test.h"
#include "gst_element_print_properties.h"
const guint c2w = 21; // column 2 width
const guint c3w = 19; // column 3 width
const guint c4w = 23; // column 4 width
void
setProperty (GstElement * mcells, char *property, char *prop_value, GType type,
GValue * value)
{
switch (type) {
case G_TYPE_STRING:
{
g_object_set (G_OBJECT (mcells), property, prop_value, NULL);
break;
}
case G_TYPE_BOOLEAN:
{
gboolean flag = (g_strcmp0 (prop_value, "true") == 0) ? TRUE : FALSE;
g_object_set (G_OBJECT (mcells), property, flag, NULL);
break;
}
case G_TYPE_ULONG:
{
unsigned long ulongval = strtoul (prop_value, NULL, 0);
g_object_set (G_OBJECT (mcells), property, ulongval, NULL);
break;
}
case G_TYPE_LONG:
{
long longval = atol (prop_value);
g_object_set (G_OBJECT (mcells), property, longval, NULL);
break;
}
case G_TYPE_UINT:
{
unsigned int uintval = atoi (prop_value);
g_object_set (G_OBJECT (mcells), property, uintval, NULL);
break;
}
case G_TYPE_INT:
{
int intval = atoi (prop_value);
g_object_set (G_OBJECT (mcells), property, intval, NULL);
break;
}
case G_TYPE_UINT64:
{
guint64 guint64val = atoi (prop_value);
g_object_set (G_OBJECT (mcells), property, guint64val, NULL);
break;
}
case G_TYPE_INT64:
{
gint64 gint64val = atoi (prop_value);
g_object_set (G_OBJECT (mcells), property, gint64val, NULL);
break;
}
case G_TYPE_FLOAT:
{
float floatval = atof (prop_value);
g_object_set (G_OBJECT (mcells), property, floatval, NULL);
break;
}
case G_TYPE_DOUBLE:
{
double doubleval = strtod (prop_value, NULL);
g_object_set (G_OBJECT (mcells), property, doubleval, NULL);
break;
}
default:
fprintf (stderr, "You gave me something wrong type of data !!! \n");
break;
}
}
// gst-launch v4l2src ! videoscale ! videorate ! capsfilter "caps=video/x-raw-yuv,width=320,height=240,framerate=10/1" ! ffmpegcolorspace ! motioncells ! ffmpegcolorspace ! xvimagesink
int
main (int argc, char *argv[])
{
GstElement *pipeline, *source, *videor, *videos, *decodebin, *capsf,
*colorsp0, *colorsp1, *mcells, *sink;
GstCaps *caps;
gchar property[20];
gchar prop_value[100];
GParamSpec **property_specs;
guint num_properties, i;
GValue value = { 0, };
gboolean found_property = FALSE;
int ret;
// Initialisation //
gst_init (&argc, &argv);
fprintf (stderr, "Usage: %s test or rtsp rtsp://your/cam/address\n", argv[0]);
// Create gstreamer elements //
pipeline = gst_pipeline_new ("moitoncells-pipeline");
if (argc == 2 && (g_strcmp0 (argv[1], "test") == 0))
source = gst_element_factory_make ("videotestsrc", "vidsrc");
else if (argc == 3 && (g_strcmp0 (argv[1], "rtsp") == 0))
source = gst_element_factory_make ("rtspsrc", "rtspsrc0");
else if (argc == 1)
source = gst_element_factory_make ("v4l2src", "v4l2");
else {
fprintf (stderr, "Usage: %s test or rtsp rtsp://your/cam/address\n",
argv[0]);
exit (-1);
}
videor = gst_element_factory_make ("videorate", "videor");
videos = gst_element_factory_make ("videoscale", "videos");
capsf = gst_element_factory_make ("capsfilter", "capsf");
if (argc == 3 && (g_strcmp0 (argv[1], "rtsp") == 0))
decodebin = gst_element_factory_make ("decodebin", "decode");
else
decodebin = NULL;
colorsp0 = gst_element_factory_make ("ffmpegcolorspace", "colorspace0");
mcells = gst_element_factory_make ("motioncells", "mcells");
colorsp1 = gst_element_factory_make ("ffmpegcolorspace", "colorspace1");
sink = gst_element_factory_make ("xvimagesink", "xv-image-sink");
if (!pipeline || !source || !videor || !videos || !capsf || !colorsp0
|| !mcells || !colorsp1 || !sink) {
g_printerr ("One element could not be created. Exiting.\n");
return -1;
}
if (argc == 3 && (g_strcmp0 (argv[1], "rtsp") == 0) && !decodebin) {
g_printerr ("Decodebin could not be created. Exiting.\n");
return -1;
}
if ((g_strcmp0 (argv[1], "rtsp") == 0)) {
g_object_set (G_OBJECT (source), "location", argv[2], NULL);
g_object_set (G_OBJECT (source), "latency", 1000, NULL);
} else if ((g_strcmp0 (argv[1], "test") == 0))
g_object_set (G_OBJECT (source), "pattern", 18, NULL);
caps =
gst_caps_from_string
("video/x-raw-yuv,width=320,height=240,framerate=10/1");
g_object_set (G_OBJECT (capsf), "caps", caps, NULL);
//g_object_set (G_OBJECT (sink), "sync",FALSE,NULL);
if (argc > 1) {
if (g_strcmp0 (argv[1], "test") == 0) {
gst_bin_add_many (GST_BIN (pipeline),
source, videor, videos, capsf, colorsp0, mcells, colorsp1, sink,
NULL);
gst_element_link_many (source, videor, videos, capsf, colorsp0, mcells,
colorsp1, sink, NULL);
} else if (g_strcmp0 (argv[1], "rtsp") == 0) {
gst_bin_add_many (GST_BIN (pipeline),
source, videor, videos, capsf, decodebin, colorsp0, mcells, colorsp1,
sink, NULL);
gst_element_link_many (source, videor, videos, capsf, decodebin, colorsp0,
mcells, colorsp1, sink, NULL);
}
} else { //default
gst_bin_add_many (GST_BIN (pipeline),
source, videor, videos, capsf, colorsp0, mcells, colorsp1, sink, NULL);
gst_element_link_many (source, videor, videos, capsf, colorsp0, mcells,
colorsp1, sink, NULL);
}
g_print ("Now playing\n");
gst_element_set_state (pipeline, GST_STATE_PLAYING);
g_print ("Running...\n");
g_print ("You can use these properties : \n");
gst_element_print_properties (mcells);
g_print ("change property here: example some_property property_value \n");
g_print ("Quit with 'q' \n");
//get all properties
property_specs = g_object_class_list_properties (G_OBJECT_GET_CLASS (mcells),
&num_properties);
while (TRUE) {
found_property = FALSE;
i = 0;
ret = scanf ("%19s %99s", property, prop_value);
if ((g_strcmp0 (property, "q") == 0) || (g_strcmp0 (prop_value, "q") == 0))
break;
printf ("property: %s -> value: %s \n", property, prop_value);
for (i = 0; i < num_properties; i++) {
GParamSpec *param = property_specs[i];
g_value_init (&value, param->value_type);
g_object_get_property (G_OBJECT (mcells), param->name, &value);
//fprintf(stderr,"property: %s and param name: %s and property value: %s \n",property,param->name,prop_value);
if ((g_strcmp0 (property, param->name) == 0) && !found_property &&
(g_strcmp0 (prop_value, "") != 0)
&& (g_strcmp0 (prop_value, "\"") != 0)
&& (g_strcmp0 (prop_value, "\'") != 0)) {
GType type;
found_property = TRUE;
type = param->value_type;
setProperty (mcells, property, prop_value, type, &value);
}
g_value_unset (&value);
if (found_property)
break;
}
}
gst_element_set_state (pipeline, GST_STATE_NULL);
gst_object_unref (pipeline);
return 0;
}

View file

@ -0,0 +1,30 @@
/* 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 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_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