2000-12-28 22:12:02 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
*
|
2001-06-25 01:20:11 +00:00
|
|
|
* gstutils.c: Utility functions: gtk_get_property stuff, etc.
|
2000-01-30 09:03:00 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2001-03-03 18:19:38 +00:00
|
|
|
#include <stdio.h>
|
2001-04-22 16:04:19 +00:00
|
|
|
#include <string.h>
|
2001-03-03 18:19:38 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
#include "gst_private.h"
|
2000-12-15 01:57:34 +00:00
|
|
|
#include "gstutils.h"
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
#include "gstextratypes.h"
|
|
|
|
|
2001-09-14 22:16:47 +00:00
|
|
|
#define ZERO(mem) memset(&mem, 0, sizeof(mem))
|
|
|
|
|
2000-10-25 19:09:53 +00:00
|
|
|
/**
|
|
|
|
* gst_util_get_int_arg:
|
|
|
|
* @object: the object to query
|
|
|
|
* @argname: the name of the argument
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Retrieves a property of an object as an integer.
|
2000-10-25 19:09:53 +00:00
|
|
|
*
|
|
|
|
* Returns: the property of the object
|
|
|
|
*/
|
2001-03-21 21:43:56 +00:00
|
|
|
gint
|
2001-10-21 18:00:31 +00:00
|
|
|
gst_util_get_int_arg (GObject * object, const gchar * argname)
|
2001-03-21 21:43:56 +00:00
|
|
|
{
|
2001-09-14 22:16:47 +00:00
|
|
|
GValue value;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-09-14 22:16:47 +00:00
|
|
|
ZERO (value);
|
2001-06-25 01:20:11 +00:00
|
|
|
g_value_init (&value, G_TYPE_INT);
|
2001-10-21 18:00:31 +00:00
|
|
|
g_object_get_property (G_OBJECT (object), argname, &value);
|
2001-06-25 01:20:11 +00:00
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
return g_value_get_int (&value);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2000-12-25 01:33:06 +00:00
|
|
|
/**
|
|
|
|
* gst_util_get_bool_arg:
|
|
|
|
* @object: the object to query
|
|
|
|
* @argname: the name of the argument
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Retrieves a property of an object as a boolean.
|
2000-12-25 01:33:06 +00:00
|
|
|
*
|
|
|
|
* Returns: the property of the object
|
|
|
|
*/
|
2001-03-21 21:43:56 +00:00
|
|
|
gint
|
2001-10-21 18:00:31 +00:00
|
|
|
gst_util_get_bool_arg (GObject * object, const gchar * argname)
|
2001-03-21 21:43:56 +00:00
|
|
|
{
|
2001-09-14 22:16:47 +00:00
|
|
|
GValue value;
|
2000-12-25 01:33:06 +00:00
|
|
|
|
2001-09-14 22:16:47 +00:00
|
|
|
ZERO (value);
|
2001-06-25 01:20:11 +00:00
|
|
|
g_value_init (&value, G_TYPE_BOOLEAN);
|
2001-10-21 18:00:31 +00:00
|
|
|
g_object_get_property (G_OBJECT (object), argname, &value);
|
2001-06-25 01:20:11 +00:00
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
return g_value_get_boolean (&value);
|
2000-12-25 01:33:06 +00:00
|
|
|
}
|
|
|
|
|
2000-10-25 19:09:53 +00:00
|
|
|
/**
|
|
|
|
* gst_util_get_long_arg:
|
|
|
|
* @object: the object to query
|
|
|
|
* @argname: the name of the argument
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Retrieves a property of an object as a long.
|
2000-10-25 19:09:53 +00:00
|
|
|
*
|
|
|
|
* Returns: the property of the object
|
|
|
|
*/
|
2001-03-21 21:43:56 +00:00
|
|
|
glong
|
2001-10-21 18:00:31 +00:00
|
|
|
gst_util_get_long_arg (GObject * object, const gchar * argname)
|
2001-03-21 21:43:56 +00:00
|
|
|
{
|
2001-09-14 22:16:47 +00:00
|
|
|
GValue value;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-09-14 22:16:47 +00:00
|
|
|
ZERO (value);
|
2001-06-25 01:20:11 +00:00
|
|
|
g_value_init (&value, G_TYPE_LONG);
|
2001-10-21 18:00:31 +00:00
|
|
|
g_object_get_property (G_OBJECT (object), argname, &value);
|
2001-06-25 01:20:11 +00:00
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
return g_value_get_long (&value);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2001-12-14 18:11:52 +00:00
|
|
|
/**
|
|
|
|
* gst_util_get_long_arg:
|
|
|
|
* @object: the object to query
|
|
|
|
* @argname: the name of the argument
|
|
|
|
*
|
|
|
|
* Retrieves a property of an object as a long.
|
|
|
|
*
|
|
|
|
* Returns: the property of the object
|
|
|
|
*/
|
|
|
|
gint64
|
|
|
|
gst_util_get_int64_arg (GObject *object, const gchar *argname)
|
|
|
|
{
|
|
|
|
GValue value;
|
|
|
|
|
|
|
|
ZERO (value);
|
|
|
|
g_value_init (&value, G_TYPE_INT64);
|
|
|
|
g_object_get_property (G_OBJECT (object), argname, &value);
|
|
|
|
|
|
|
|
return g_value_get_int64 (&value);
|
|
|
|
}
|
|
|
|
|
2000-10-25 19:09:53 +00:00
|
|
|
/**
|
|
|
|
* gst_util_get_float_arg:
|
|
|
|
* @object: the object to query
|
|
|
|
* @argname: the name of the argument
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Retrieves a property of an object as a float.
|
2000-10-25 19:09:53 +00:00
|
|
|
*
|
|
|
|
* Returns: the property of the object
|
|
|
|
*/
|
2001-03-21 21:43:56 +00:00
|
|
|
gfloat
|
2001-10-21 18:00:31 +00:00
|
|
|
gst_util_get_float_arg (GObject * object, const gchar * argname)
|
2001-03-21 21:43:56 +00:00
|
|
|
{
|
2001-09-14 22:16:47 +00:00
|
|
|
GValue value;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-09-14 22:16:47 +00:00
|
|
|
ZERO (value);
|
2001-06-25 01:20:11 +00:00
|
|
|
g_value_init (&value, G_TYPE_FLOAT);
|
2001-10-21 18:00:31 +00:00
|
|
|
g_object_get_property (G_OBJECT (object), argname, &value);
|
2001-06-25 01:20:11 +00:00
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
return g_value_get_float (&value);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2000-10-25 19:09:53 +00:00
|
|
|
/**
|
|
|
|
* gst_util_get_double_arg:
|
|
|
|
* @object: the object to query
|
|
|
|
* @argname: the name of the argument
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Retrieves a property of an object as a double.
|
2000-10-25 19:09:53 +00:00
|
|
|
*
|
|
|
|
* Returns: the property of the object
|
|
|
|
*/
|
2001-10-21 18:00:31 +00:00
|
|
|
gdouble
|
|
|
|
gst_util_get_double_arg (GObject * object, const gchar * argname)
|
2001-03-21 21:43:56 +00:00
|
|
|
{
|
2001-09-14 22:16:47 +00:00
|
|
|
GValue value;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-09-14 22:16:47 +00:00
|
|
|
ZERO (value);
|
2001-06-25 01:20:11 +00:00
|
|
|
g_value_init (&value, G_TYPE_DOUBLE);
|
2001-10-21 18:00:31 +00:00
|
|
|
g_object_get_property (G_OBJECT (object), argname, &value);
|
2001-06-25 01:20:11 +00:00
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
return g_value_get_double (&value);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2000-10-25 19:09:53 +00:00
|
|
|
/**
|
|
|
|
* gst_util_get_string_arg:
|
|
|
|
* @object: the object to query
|
|
|
|
* @argname: the name of the argument
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Retrieves a property of an object as a string.
|
2000-10-25 19:09:53 +00:00
|
|
|
*
|
|
|
|
* Returns: the property of the object
|
|
|
|
*/
|
2001-10-21 18:00:31 +00:00
|
|
|
const gchar *
|
|
|
|
gst_util_get_string_arg (GObject * object, const gchar * argname)
|
2001-03-21 21:43:56 +00:00
|
|
|
{
|
2001-09-14 22:16:47 +00:00
|
|
|
GValue value;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-09-14 22:16:47 +00:00
|
|
|
ZERO (value);
|
2001-06-25 01:20:11 +00:00
|
|
|
g_value_init (&value, G_TYPE_STRING);
|
2001-10-21 18:00:31 +00:00
|
|
|
g_object_get_property (G_OBJECT (object), argname, &value);
|
2001-06-25 01:20:11 +00:00
|
|
|
|
2001-12-14 22:59:21 +00:00
|
|
|
return g_value_get_string (&value); /* memleak? */
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2000-10-25 19:09:53 +00:00
|
|
|
/**
|
|
|
|
* gst_util_get_pointer_arg:
|
|
|
|
* @object: the object to query
|
|
|
|
* @argname: the name of the argument
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Retrieves a property of an object as a pointer.
|
2000-10-25 19:09:53 +00:00
|
|
|
*
|
|
|
|
* Returns: the property of the object
|
|
|
|
*/
|
2001-03-21 21:43:56 +00:00
|
|
|
gpointer
|
2001-10-21 18:00:31 +00:00
|
|
|
gst_util_get_pointer_arg (GObject * object, const gchar * argname)
|
2001-03-21 21:43:56 +00:00
|
|
|
{
|
2001-09-14 22:16:47 +00:00
|
|
|
GValue value;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-09-14 22:16:47 +00:00
|
|
|
ZERO (value);
|
2001-06-25 01:20:11 +00:00
|
|
|
g_value_init (&value, G_TYPE_POINTER);
|
2001-10-21 18:00:31 +00:00
|
|
|
g_object_get_property (G_OBJECT (object), argname, &value);
|
2001-06-25 01:20:11 +00:00
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
return g_value_get_pointer (&value);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2000-10-25 19:09:53 +00:00
|
|
|
/**
|
2001-06-25 01:20:11 +00:00
|
|
|
* gst_util_get_widget_property:
|
2000-10-25 19:09:53 +00:00
|
|
|
* @object: the object to query
|
|
|
|
* @argname: the name of the argument
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Retrieves a property of an object as a widget.
|
2000-10-25 19:09:53 +00:00
|
|
|
*
|
|
|
|
* Returns: the property of the object
|
|
|
|
*/
|
2001-06-25 01:20:11 +00:00
|
|
|
/* COMMENTED OUT BECAUSE WE HAVE NO MORE gtk.h
|
2001-03-21 21:43:56 +00:00
|
|
|
GtkWidget*
|
2001-06-25 01:20:11 +00:00
|
|
|
gst_util_get_widget_property (GObject *object, const gchar *argname)
|
2001-03-21 21:43:56 +00:00
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
GtkArg arg;
|
|
|
|
|
|
|
|
arg.name = argname;
|
2001-06-25 01:20:11 +00:00
|
|
|
gtk_object_getv(G_OBJECT(object),1,&arg);
|
2001-03-21 21:43:56 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
return GTK_WIDGET(G_VALUE_OBJECT(arg));
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
2001-06-25 01:20:11 +00:00
|
|
|
*/
|
2000-07-15 13:26:28 +00:00
|
|
|
|
2000-10-25 19:09:53 +00:00
|
|
|
/**
|
|
|
|
* gst_util_dump_mem:
|
|
|
|
* @mem: a pointer to the memory to dump
|
|
|
|
* @size: the size of the memory block to dump
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Dumps the memory block into a hex representation. Useful for debugging.
|
2000-10-25 19:09:53 +00:00
|
|
|
*/
|
2001-10-21 18:00:31 +00:00
|
|
|
void
|
|
|
|
gst_util_dump_mem (guchar * mem, guint size)
|
2001-03-21 21:43:56 +00:00
|
|
|
{
|
2000-07-15 13:26:28 +00:00
|
|
|
guint i, j;
|
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
i = j = 0;
|
|
|
|
while (i < size) {
|
2000-11-06 00:15:51 +00:00
|
|
|
if (j == 0) {
|
2001-10-21 18:00:31 +00:00
|
|
|
g_print ("\n%08x : ", i);
|
2000-11-06 00:15:51 +00:00
|
|
|
j = 15;
|
2000-07-15 13:26:28 +00:00
|
|
|
}
|
|
|
|
else {
|
2000-11-06 00:15:51 +00:00
|
|
|
j--;
|
2000-07-15 13:26:28 +00:00
|
|
|
}
|
2001-10-21 18:00:31 +00:00
|
|
|
g_print ("%02x ", mem[i]);
|
2000-07-15 13:26:28 +00:00
|
|
|
i++;
|
|
|
|
}
|
2001-10-21 18:00:31 +00:00
|
|
|
g_print ("\n");
|
2000-07-15 13:26:28 +00:00
|
|
|
}
|
2001-03-03 18:19:38 +00:00
|
|
|
|
2001-03-21 21:43:56 +00:00
|
|
|
/**
|
|
|
|
* gst_util_set_object_arg:
|
|
|
|
* @object: the object to set the argument of
|
|
|
|
* @name: the name of the argument to set
|
|
|
|
* @value: the string value to set
|
|
|
|
*
|
|
|
|
* Convertes the string value to the type of the objects argument and
|
|
|
|
* sets the argument with it.
|
|
|
|
*/
|
|
|
|
void
|
2001-10-21 18:00:31 +00:00
|
|
|
gst_util_set_object_arg (GObject * object, const gchar * name, const gchar * value)
|
2001-03-03 18:19:38 +00:00
|
|
|
{
|
|
|
|
if (name && value) {
|
2001-06-25 01:20:11 +00:00
|
|
|
GParamSpec *paramspec;
|
2001-03-03 18:19:38 +00:00
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
paramspec = g_object_class_find_property (G_OBJECT_GET_CLASS (object), name);
|
2001-03-03 18:19:38 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
if (!paramspec) {
|
|
|
|
return;
|
2001-03-03 18:19:38 +00:00
|
|
|
}
|
2001-06-25 01:20:11 +00:00
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
GST_DEBUG (0, "paramspec->flags is %d, paramspec->value_type is %d\n",
|
|
|
|
paramspec->flags, paramspec->value_type);
|
2001-06-25 01:20:11 +00:00
|
|
|
|
|
|
|
if (paramspec->flags & G_PARAM_WRITABLE) {
|
|
|
|
switch (paramspec->value_type) {
|
2001-10-21 18:00:31 +00:00
|
|
|
case G_TYPE_STRING:
|
|
|
|
g_object_set (G_OBJECT (object), name, value, NULL);
|
|
|
|
break;
|
|
|
|
case G_TYPE_ENUM:
|
|
|
|
case G_TYPE_INT:{
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
sscanf (value, "%d", &i);
|
|
|
|
g_object_set (G_OBJECT (object), name, i, NULL);
|
2001-03-03 18:19:38 +00:00
|
|
|
break;
|
|
|
|
}
|
2001-10-21 18:00:31 +00:00
|
|
|
case G_TYPE_UINT:{
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
sscanf (value, "%u", &i);
|
|
|
|
g_object_set (G_OBJECT (object), name, i, NULL);
|
2001-07-04 20:49:06 +00:00
|
|
|
break;
|
|
|
|
}
|
2001-10-21 18:00:31 +00:00
|
|
|
case G_TYPE_LONG:{
|
2001-03-03 18:19:38 +00:00
|
|
|
glong i;
|
2001-10-21 18:00:31 +00:00
|
|
|
|
2001-03-03 18:19:38 +00:00
|
|
|
sscanf (value, "%ld", &i);
|
2001-10-21 18:00:31 +00:00
|
|
|
g_object_set (G_OBJECT (object), name, i, NULL);
|
2001-03-03 18:19:38 +00:00
|
|
|
break;
|
|
|
|
}
|
2001-10-21 18:00:31 +00:00
|
|
|
case G_TYPE_ULONG:{
|
2001-03-03 18:19:38 +00:00
|
|
|
gulong i;
|
2001-10-21 18:00:31 +00:00
|
|
|
|
2001-03-03 18:19:38 +00:00
|
|
|
sscanf (value, "%lu", &i);
|
2001-10-21 18:00:31 +00:00
|
|
|
g_object_set (G_OBJECT (object), name, i, NULL);
|
2001-03-03 18:19:38 +00:00
|
|
|
break;
|
|
|
|
}
|
2001-10-21 18:00:31 +00:00
|
|
|
case G_TYPE_BOOLEAN:{
|
2001-03-03 18:19:38 +00:00
|
|
|
gboolean i = FALSE;
|
2001-10-21 18:00:31 +00:00
|
|
|
|
|
|
|
if (!strncmp ("true", value, 4))
|
|
|
|
i = TRUE;
|
|
|
|
g_object_set (G_OBJECT (object), name, i, NULL);
|
2001-03-03 18:19:38 +00:00
|
|
|
break;
|
|
|
|
}
|
2001-10-21 18:00:31 +00:00
|
|
|
case G_TYPE_CHAR:{
|
2001-03-03 18:19:38 +00:00
|
|
|
gchar i;
|
2001-10-21 18:00:31 +00:00
|
|
|
|
2001-03-03 18:19:38 +00:00
|
|
|
sscanf (value, "%c", &i);
|
2001-10-21 18:00:31 +00:00
|
|
|
g_object_set (G_OBJECT (object), name, i, NULL);
|
2001-03-03 18:19:38 +00:00
|
|
|
break;
|
|
|
|
}
|
2001-10-21 18:00:31 +00:00
|
|
|
case G_TYPE_UCHAR:{
|
2001-03-03 18:19:38 +00:00
|
|
|
guchar i;
|
2001-10-21 18:00:31 +00:00
|
|
|
|
2001-03-03 18:19:38 +00:00
|
|
|
sscanf (value, "%c", &i);
|
2001-10-21 18:00:31 +00:00
|
|
|
g_object_set (G_OBJECT (object), name, i, NULL);
|
2001-03-03 18:19:38 +00:00
|
|
|
break;
|
|
|
|
}
|
2001-10-21 18:00:31 +00:00
|
|
|
case G_TYPE_FLOAT:{
|
2001-03-03 18:19:38 +00:00
|
|
|
gfloat i;
|
2001-10-21 18:00:31 +00:00
|
|
|
|
2001-03-03 18:19:38 +00:00
|
|
|
sscanf (value, "%f", &i);
|
2001-10-21 18:00:31 +00:00
|
|
|
g_object_set (G_OBJECT (object), name, i, NULL);
|
2001-03-03 18:19:38 +00:00
|
|
|
break;
|
|
|
|
}
|
2001-10-21 18:00:31 +00:00
|
|
|
case G_TYPE_DOUBLE:{
|
2001-03-06 22:32:27 +00:00
|
|
|
gfloat i;
|
2001-10-21 18:00:31 +00:00
|
|
|
|
2001-03-06 22:32:27 +00:00
|
|
|
sscanf (value, "%g", &i);
|
2001-10-21 18:00:31 +00:00
|
|
|
g_object_set (G_OBJECT (object), name, (gdouble) i, NULL);
|
2001-03-03 18:19:38 +00:00
|
|
|
break;
|
|
|
|
}
|
2001-10-21 18:00:31 +00:00
|
|
|
default:
|
|
|
|
if (G_IS_PARAM_SPEC_ENUM (paramspec)) {
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
sscanf (value, "%d", &i);
|
|
|
|
g_object_set (G_OBJECT (object), name, i, NULL);
|
2001-04-27 21:14:56 +00:00
|
|
|
}
|
2001-06-25 01:20:11 +00:00
|
|
|
else if (paramspec->value_type == GST_TYPE_FILENAME) {
|
2001-10-21 18:00:31 +00:00
|
|
|
g_object_set (G_OBJECT (object), name, value, NULL);
|
2001-03-03 18:19:38 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-09-17 23:44:07 +00:00
|
|
|
|
2001-12-14 22:59:21 +00:00
|
|
|
/* -----------------------------------------------------
|
|
|
|
*
|
|
|
|
* The following code will be moved out of the main
|
|
|
|
* gstreamer library someday.
|
|
|
|
*/
|
2001-09-17 23:44:07 +00:00
|
|
|
|
|
|
|
#include "gstpad.h"
|
|
|
|
#include "gsttype.h"
|
|
|
|
#include "gstprops.h"
|
|
|
|
#include "gstpropsprivate.h"
|
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
static void
|
|
|
|
string_append_indent (GString * str, gint count)
|
2001-09-17 23:44:07 +00:00
|
|
|
{
|
|
|
|
gint xx;
|
2001-10-21 18:00:31 +00:00
|
|
|
|
|
|
|
for (xx = 0; xx < count; xx++)
|
2001-09-17 23:44:07 +00:00
|
|
|
g_string_append_c (str, ' ');
|
|
|
|
}
|
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
static void
|
|
|
|
gst_print_props (GString * buf, gint indent, GList * props, gboolean showname)
|
2001-09-17 23:44:07 +00:00
|
|
|
{
|
|
|
|
GList *elem;
|
2001-09-18 04:20:04 +00:00
|
|
|
guint width = 0;
|
2001-10-21 18:00:31 +00:00
|
|
|
|
2001-09-18 04:20:04 +00:00
|
|
|
if (showname)
|
2001-10-21 18:00:31 +00:00
|
|
|
for (elem = props; elem; elem = g_list_next (elem)) {
|
|
|
|
GstPropsEntry *prop = elem->data;
|
|
|
|
const gchar *name = g_quark_to_string (prop->propid);
|
2001-09-18 04:20:04 +00:00
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
if (width < strlen (name))
|
|
|
|
width = strlen (name);
|
|
|
|
}
|
2001-09-18 04:20:04 +00:00
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
for (elem = props; elem; elem = g_list_next (elem)) {
|
|
|
|
GstPropsEntry *prop = elem->data;
|
2001-09-17 23:44:07 +00:00
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
string_append_indent (buf, indent);
|
|
|
|
if (showname) {
|
|
|
|
const gchar *name = g_quark_to_string (prop->propid);
|
|
|
|
|
|
|
|
g_string_append (buf, name);
|
|
|
|
string_append_indent (buf, 2 + width - strlen (name));
|
|
|
|
}
|
2001-09-17 23:44:07 +00:00
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
switch (prop->propstype) {
|
2001-09-17 23:44:07 +00:00
|
|
|
case GST_PROPS_INT_ID:
|
2001-10-20 23:06:49 +00:00
|
|
|
g_string_append_printf (buf, "%d (int)\n", prop->data.int_data);
|
2001-09-17 23:44:07 +00:00
|
|
|
break;
|
|
|
|
case GST_PROPS_INT_RANGE_ID:
|
2001-10-20 23:06:49 +00:00
|
|
|
g_string_append_printf (buf, "%d - %d (int)\n",
|
2001-10-21 18:00:31 +00:00
|
|
|
prop->data.int_range_data.min, prop->data.int_range_data.max);
|
2001-09-17 23:44:07 +00:00
|
|
|
break;
|
|
|
|
case GST_PROPS_FLOAT_ID:
|
2001-10-20 23:06:49 +00:00
|
|
|
g_string_append_printf (buf, "%f (float)\n", prop->data.float_data);
|
2001-10-21 18:00:31 +00:00
|
|
|
break;
|
2001-09-17 23:44:07 +00:00
|
|
|
case GST_PROPS_FLOAT_RANGE_ID:
|
2001-10-20 23:06:49 +00:00
|
|
|
g_string_append_printf (buf, "%f - %f (float)\n",
|
2001-10-21 18:00:31 +00:00
|
|
|
prop->data.float_range_data.min, prop->data.float_range_data.max);
|
2001-09-17 23:44:07 +00:00
|
|
|
break;
|
|
|
|
case GST_PROPS_BOOL_ID:
|
2001-10-21 18:00:31 +00:00
|
|
|
g_string_append_printf (buf, "%s\n", prop->data.bool_data ? "TRUE" : "FALSE");
|
2001-09-17 23:44:07 +00:00
|
|
|
break;
|
|
|
|
case GST_PROPS_STRING_ID:
|
2001-10-20 23:06:49 +00:00
|
|
|
g_string_append_printf (buf, "\"%s\"\n", prop->data.string_data.string);
|
2001-09-17 23:44:07 +00:00
|
|
|
break;
|
|
|
|
case GST_PROPS_FOURCC_ID:
|
2001-10-20 23:06:49 +00:00
|
|
|
g_string_append_printf (buf, "'%c%c%c%c' (fourcc)\n",
|
2001-10-21 18:00:31 +00:00
|
|
|
prop->data.fourcc_data & 0xff,
|
|
|
|
prop->data.fourcc_data >> 8 & 0xff,
|
|
|
|
prop->data.fourcc_data >> 16 & 0xff,
|
|
|
|
prop->data.fourcc_data >> 24 & 0xff);
|
2001-09-17 23:44:07 +00:00
|
|
|
break;
|
|
|
|
case GST_PROPS_LIST_ID:
|
2001-10-21 18:00:31 +00:00
|
|
|
gst_print_props (buf, indent + 2, prop->data.list_data.entries, FALSE);
|
2001-09-17 23:44:07 +00:00
|
|
|
break;
|
|
|
|
default:
|
2001-10-20 23:06:49 +00:00
|
|
|
g_string_append_printf (buf, "unknown proptype %d\n", prop->propstype);
|
2001-09-17 23:44:07 +00:00
|
|
|
break;
|
2001-10-21 18:00:31 +00:00
|
|
|
}
|
2001-09-17 23:44:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
/**
|
|
|
|
* gst_print_pad_caps:
|
|
|
|
* @buf: the buffer to print the caps in
|
|
|
|
* @indent: initial indentation
|
|
|
|
* @pad: the pad to print the caps from
|
|
|
|
*
|
|
|
|
* Write the pad capabilities in a human readable format into
|
|
|
|
* the given GString.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_print_pad_caps (GString * buf, gint indent, GstPad * pad)
|
2001-09-17 23:44:07 +00:00
|
|
|
{
|
|
|
|
GstRealPad *realpad;
|
|
|
|
GstCaps *caps;
|
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
realpad = GST_PAD_REALIZE (pad);
|
2001-09-17 23:44:07 +00:00
|
|
|
caps = realpad->caps;
|
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
if (!caps) {
|
|
|
|
string_append_indent (buf, indent);
|
|
|
|
g_string_printf (buf, "%s:%s has no capabilities", GST_DEBUG_PAD_NAME (pad));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
gint capx = 0;
|
2001-09-17 23:44:07 +00:00
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
while (caps) {
|
|
|
|
GstType *type;
|
2001-09-17 23:44:07 +00:00
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
string_append_indent (buf, indent);
|
|
|
|
g_string_append_printf (buf, "Cap[%d]: %s\n", capx++, caps->name);
|
2001-09-17 23:44:07 +00:00
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
type = gst_type_find_by_id (caps->id);
|
|
|
|
string_append_indent (buf, indent + 2);
|
|
|
|
g_string_append_printf (buf, "MIME type: %s\n", type->mime ? type->mime : "unknown/unknown");
|
2001-09-17 23:44:07 +00:00
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
if (caps->properties)
|
|
|
|
gst_print_props (buf, indent + 4, caps->properties->properties, TRUE);
|
2001-09-17 23:44:07 +00:00
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
caps = caps->next;
|
2001-09-17 23:44:07 +00:00
|
|
|
}
|
2001-10-21 18:00:31 +00:00
|
|
|
}
|
2001-09-17 23:44:07 +00:00
|
|
|
}
|
2001-09-18 04:20:04 +00:00
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
/**
|
|
|
|
* gst_print_element_args:
|
|
|
|
* @buf: the buffer to print the args in
|
|
|
|
* @indent: initial indentation
|
|
|
|
* @element: the element to print the args of
|
|
|
|
*
|
|
|
|
* Print the element argument in a human readable format in the given
|
|
|
|
* GString.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_print_element_args (GString * buf, gint indent, GstElement * element)
|
2001-09-18 04:20:04 +00:00
|
|
|
{
|
|
|
|
gint num_properties;
|
|
|
|
gint px;
|
|
|
|
guint width;
|
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
GParamSpec **property_specs = g_object_class_list_properties (G_OBJECT_GET_CLASS (element),
|
|
|
|
&num_properties);
|
|
|
|
|
|
|
|
width = 0;
|
|
|
|
for (px = 0; px < num_properties; px++) {
|
2001-09-18 04:20:04 +00:00
|
|
|
GParamSpec *param = property_specs[px];
|
2001-10-21 18:00:31 +00:00
|
|
|
|
2001-09-18 04:20:04 +00:00
|
|
|
if (width < strlen (param->name))
|
|
|
|
width = strlen (param->name);
|
|
|
|
}
|
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
for (px = 0; px < num_properties; px++) {
|
2001-09-18 04:20:04 +00:00
|
|
|
GParamSpec *param = property_specs[px];
|
|
|
|
GValue value;
|
|
|
|
|
|
|
|
ZERO (value);
|
|
|
|
|
|
|
|
g_value_init (&value, param->value_type);
|
|
|
|
g_object_get_property (G_OBJECT (element), param->name, &value);
|
|
|
|
|
|
|
|
string_append_indent (buf, indent);
|
|
|
|
g_string_append (buf, param->name);
|
|
|
|
string_append_indent (buf, 2 + width - strlen (param->name));
|
|
|
|
|
|
|
|
if (G_IS_PARAM_SPEC_ENUM (param)) {
|
|
|
|
GEnumValue *values;
|
|
|
|
|
|
|
|
#ifdef USE_GLIB2
|
|
|
|
values = G_ENUM_CLASS (g_type_class_ref (param->value_type))->values;
|
|
|
|
#else
|
|
|
|
values = gtk_type_enum_get_values (param->value_type);
|
|
|
|
#endif
|
|
|
|
|
2001-10-20 23:06:49 +00:00
|
|
|
g_string_append_printf (buf, "%s (%s)",
|
2001-10-21 18:00:31 +00:00
|
|
|
values[g_value_get_enum (&value)].value_nick,
|
|
|
|
g_type_name (G_VALUE_TYPE (&value)));
|
2001-09-18 04:20:04 +00:00
|
|
|
}
|
2001-10-21 18:00:31 +00:00
|
|
|
else {
|
2001-09-18 04:20:04 +00:00
|
|
|
switch (G_VALUE_TYPE (&value)) {
|
2001-10-21 18:00:31 +00:00
|
|
|
case G_TYPE_STRING:
|
|
|
|
g_string_append_printf (buf, "\"%s\"", g_value_get_string (&value));
|
|
|
|
break;
|
|
|
|
case G_TYPE_BOOLEAN:
|
|
|
|
g_string_append (buf, g_value_get_boolean (&value) ? "TRUE" : "FALSE");
|
|
|
|
break;
|
|
|
|
case G_TYPE_ULONG:{
|
|
|
|
gulong val = g_value_get_ulong (&value);
|
|
|
|
|
|
|
|
g_string_append_printf (buf, "%lu (0x%lx)", val, val);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case G_TYPE_LONG:{
|
|
|
|
glong val = g_value_get_long (&value);
|
|
|
|
|
|
|
|
g_string_append_printf (buf, "%ld (0x%lx)", val, val);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case G_TYPE_UINT:{
|
|
|
|
guint val = g_value_get_uint (&value);
|
|
|
|
|
|
|
|
g_string_append_printf (buf, "%u (0x%x)", val, val);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case G_TYPE_INT:{
|
|
|
|
gint val = g_value_get_int (&value);
|
|
|
|
|
|
|
|
g_string_append_printf (buf, "%d (0x%x)", val, val);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case G_TYPE_FLOAT:
|
|
|
|
g_string_append_printf (buf, "%f", g_value_get_float (&value));
|
|
|
|
break;
|
|
|
|
case G_TYPE_DOUBLE:
|
|
|
|
g_string_append_printf (buf, "%f", g_value_get_double (&value));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_string_append_printf (buf, "unknown value_type %d", G_VALUE_TYPE (&value));
|
|
|
|
break;
|
2001-09-18 04:20:04 +00:00
|
|
|
}
|
2001-10-21 18:00:31 +00:00
|
|
|
}
|
2001-09-18 04:20:04 +00:00
|
|
|
|
|
|
|
g_string_append_c (buf, '\n');
|
|
|
|
|
2001-12-04 22:12:50 +00:00
|
|
|
if (G_VALUE_TYPE (&value)) {
|
2001-09-18 04:20:04 +00:00
|
|
|
g_value_unset (&value);
|
2001-12-04 22:12:50 +00:00
|
|
|
}
|
2001-09-18 04:20:04 +00:00
|
|
|
}
|
|
|
|
g_free (property_specs);
|
|
|
|
}
|
2001-12-14 18:11:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_util_has_arg:
|
|
|
|
* @object: an object
|
|
|
|
* @argname: a property it might have
|
|
|
|
* @arg_type: the type of the argument it should have
|
|
|
|
*
|
|
|
|
* Determines whether this @object has a property of name
|
|
|
|
* @argname and of type @arg_type
|
|
|
|
*
|
|
|
|
* Return value: TRUE if it has the prop, else FALSE
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
gst_util_has_arg (GObject *object, const gchar *argname, GType arg_type)
|
|
|
|
{
|
|
|
|
GParamSpec *pspec;
|
|
|
|
|
|
|
|
pspec = g_object_class_find_property (
|
|
|
|
G_OBJECT_GET_CLASS (object), argname);
|
|
|
|
|
|
|
|
if (!pspec)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (pspec->value_type != arg_type)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|