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"
|
2003-02-10 20:32:32 +00:00
|
|
|
#include "gsturitype.h"
|
2003-06-29 14:05:49 +00:00
|
|
|
#include "gstinfo.h"
|
2000-01-30 09:03:00 +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
|
2004-03-22 22:23:50 +00:00
|
|
|
gst_util_dump_mem (const guchar * mem, guint size)
|
2001-03-21 21:43:56 +00:00
|
|
|
{
|
2000-07-15 13:26:28 +00:00
|
|
|
guint i, j;
|
2003-02-21 19:58:24 +00:00
|
|
|
GString *string = g_string_sized_new (50);
|
|
|
|
GString *chars = g_string_sized_new (18);
|
2000-07-15 13:26:28 +00:00
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
i = j = 0;
|
|
|
|
while (i < size) {
|
2003-02-21 19:58:24 +00:00
|
|
|
if (g_ascii_isprint (mem[i]))
|
|
|
|
g_string_append_printf (chars, "%c", mem[i]);
|
2004-03-13 15:27:01 +00:00
|
|
|
else
|
2003-02-21 19:58:24 +00:00
|
|
|
g_string_append_printf (chars, ".");
|
2002-05-29 15:01:50 +00:00
|
|
|
|
2003-01-26 23:38:30 +00:00
|
|
|
g_string_append_printf (string, "%02x ", mem[i]);
|
2003-02-21 19:58:24 +00:00
|
|
|
|
|
|
|
j++;
|
2000-07-15 13:26:28 +00:00
|
|
|
i++;
|
2003-02-21 19:58:24 +00:00
|
|
|
|
|
|
|
if (j == 16 || i == size) {
|
2004-03-13 15:27:01 +00:00
|
|
|
g_print ("%08x (%p): %-48.48s %-16.16s\n", i - j, mem + i - j,
|
2004-03-15 19:27:17 +00:00
|
|
|
string->str, chars->str);
|
2003-02-21 19:58:24 +00:00
|
|
|
g_string_set_size (string, 0);
|
|
|
|
g_string_set_size (chars, 0);
|
|
|
|
j = 0;
|
|
|
|
}
|
2000-07-15 13:26:28 +00:00
|
|
|
}
|
2003-01-26 23:38:30 +00:00
|
|
|
g_string_free (string, TRUE);
|
2003-02-21 19:58:24 +00:00
|
|
|
g_string_free (chars, TRUE);
|
2000-07-15 13:26:28 +00:00
|
|
|
}
|
2001-03-03 18:19:38 +00:00
|
|
|
|
2002-03-03 18:41:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_util_set_value_from_string:
|
|
|
|
* @value: the value to set
|
|
|
|
* @value_str: the string to get the value from
|
|
|
|
*
|
|
|
|
* Converts the string to the type of the value and
|
|
|
|
* sets the value with it.
|
|
|
|
*/
|
|
|
|
void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_util_set_value_from_string (GValue * value, const gchar * value_str)
|
2002-03-03 18:41:25 +00:00
|
|
|
{
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
g_return_if_fail (value != NULL);
|
|
|
|
g_return_if_fail (value_str != NULL);
|
|
|
|
|
|
|
|
GST_CAT_DEBUG (GST_CAT_PARAMS, "parsing '%s' to type %s", value_str,
|
|
|
|
g_type_name (G_VALUE_TYPE (value)));
|
|
|
|
|
|
|
|
switch (G_VALUE_TYPE (value)) {
|
|
|
|
case G_TYPE_STRING:
|
|
|
|
g_value_set_string (value, g_strdup (value_str));
|
|
|
|
break;
|
|
|
|
case G_TYPE_ENUM:
|
|
|
|
case G_TYPE_INT:{
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
sscanf (value_str, "%d", &i);
|
|
|
|
g_value_set_int (value, i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case G_TYPE_UINT:{
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
sscanf (value_str, "%u", &i);
|
|
|
|
g_value_set_uint (value, i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case G_TYPE_LONG:{
|
|
|
|
glong i;
|
|
|
|
|
|
|
|
sscanf (value_str, "%ld", &i);
|
|
|
|
g_value_set_long (value, i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case G_TYPE_ULONG:{
|
|
|
|
gulong i;
|
|
|
|
|
|
|
|
sscanf (value_str, "%lu", &i);
|
|
|
|
g_value_set_ulong (value, i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case G_TYPE_BOOLEAN:{
|
|
|
|
gboolean i = FALSE;
|
|
|
|
|
|
|
|
if (!strncmp ("true", value_str, 4))
|
2004-03-15 19:27:17 +00:00
|
|
|
i = TRUE;
|
2004-03-13 15:27:01 +00:00
|
|
|
g_value_set_boolean (value, i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case G_TYPE_CHAR:{
|
|
|
|
gchar i;
|
|
|
|
|
|
|
|
sscanf (value_str, "%c", &i);
|
|
|
|
g_value_set_char (value, i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case G_TYPE_UCHAR:{
|
|
|
|
guchar i;
|
|
|
|
|
|
|
|
sscanf (value_str, "%c", &i);
|
|
|
|
g_value_set_uchar (value, i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case G_TYPE_FLOAT:{
|
|
|
|
gfloat i;
|
|
|
|
|
|
|
|
sscanf (value_str, "%f", &i);
|
|
|
|
g_value_set_float (value, i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case G_TYPE_DOUBLE:{
|
|
|
|
gfloat i;
|
|
|
|
|
|
|
|
sscanf (value_str, "%g", &i);
|
|
|
|
g_value_set_double (value, (gdouble) i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2002-03-03 18:41:25 +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
|
2004-03-13 15:27:01 +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
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
paramspec =
|
2004-03-15 19:27:17 +00:00
|
|
|
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
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
GST_DEBUG ("paramspec->flags is %d, paramspec->value_type is %d",
|
2004-03-15 19:27:17 +00:00
|
|
|
paramspec->flags, (gint) paramspec->value_type);
|
2001-06-25 01:20:11 +00:00
|
|
|
|
|
|
|
if (paramspec->flags & G_PARAM_WRITABLE) {
|
|
|
|
switch (paramspec->value_type) {
|
2004-03-15 19:27:17 +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);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case G_TYPE_UINT:{
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
sscanf (value, "%u", &i);
|
|
|
|
g_object_set (G_OBJECT (object), name, i, NULL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case G_TYPE_LONG:{
|
|
|
|
glong i;
|
|
|
|
|
|
|
|
sscanf (value, "%ld", &i);
|
|
|
|
g_object_set (G_OBJECT (object), name, i, NULL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case G_TYPE_ULONG:{
|
|
|
|
gulong i;
|
|
|
|
|
|
|
|
sscanf (value, "%lu", &i);
|
|
|
|
g_object_set (G_OBJECT (object), name, i, NULL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case G_TYPE_BOOLEAN:{
|
|
|
|
gboolean i = FALSE;
|
|
|
|
|
|
|
|
if (!g_ascii_strncasecmp ("true", value, 4))
|
|
|
|
i = TRUE;
|
|
|
|
g_object_set (G_OBJECT (object), name, i, NULL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case G_TYPE_CHAR:{
|
|
|
|
gchar i;
|
|
|
|
|
|
|
|
sscanf (value, "%c", &i);
|
|
|
|
g_object_set (G_OBJECT (object), name, i, NULL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case G_TYPE_UCHAR:{
|
|
|
|
guchar i;
|
|
|
|
|
|
|
|
sscanf (value, "%c", &i);
|
|
|
|
g_object_set (G_OBJECT (object), name, i, NULL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case G_TYPE_FLOAT:{
|
|
|
|
gfloat i;
|
|
|
|
|
|
|
|
sscanf (value, "%f", &i);
|
|
|
|
g_object_set (G_OBJECT (object), name, i, NULL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case G_TYPE_DOUBLE:{
|
|
|
|
gfloat i;
|
|
|
|
|
|
|
|
sscanf (value, "%g", &i);
|
|
|
|
g_object_set (G_OBJECT (object), name, (gdouble) i, NULL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
if (G_IS_PARAM_SPEC_ENUM (paramspec)) {
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
sscanf (value, "%d", &i);
|
|
|
|
g_object_set (G_OBJECT (object), name, i, NULL);
|
|
|
|
} else if (paramspec->value_type == GST_TYPE_URI) {
|
|
|
|
g_object_set (G_OBJECT (object), name, value, NULL);
|
|
|
|
}
|
|
|
|
break;
|
2001-03-03 18:19:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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
|
2005-04-16 08:31:50 +00:00
|
|
|
* GStreamer library someday.
|
2001-12-14 22:59:21 +00:00
|
|
|
*/
|
2001-09-17 23:44:07 +00:00
|
|
|
|
|
|
|
#include "gstpad.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
|
|
|
/**
|
|
|
|
* 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);
|
2004-03-13 15:27:01 +00:00
|
|
|
g_string_printf (buf, "%s:%s has no capabilities",
|
2004-03-15 19:27:17 +00:00
|
|
|
GST_DEBUG_PAD_NAME (pad));
|
2004-03-13 15:27:01 +00:00
|
|
|
} else {
|
2003-12-22 01:39:35 +00:00
|
|
|
char *s;
|
2001-09-17 23:44:07 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
s = gst_caps_to_string (caps);
|
|
|
|
g_string_append (buf, s);
|
|
|
|
g_free (s);
|
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
|
|
|
{
|
|
|
|
guint width;
|
2004-03-15 19:27:17 +00:00
|
|
|
GValue value = { 0, }; /* the important thing is that value.type = 0 */
|
gst/: Aplied part of patch #157127: Cleanup of issues reported by sparse.
Original commit message from CVS:
reviewed by: Wim Taymans, Ronald Bultje.
* gst/cothreads.c: (cothread_create):
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
(gst_bin_child_state_change_func):
* gst/gstbuffer.c: (gst_buffer_span):
* gst/gstelement.c: (gst_element_get_index),
(gst_element_get_event_masks), (gst_element_get_query_types),
(gst_element_get_formats):
* gst/gsterror.c: (_gst_core_errors_init),
(_gst_library_errors_init), (_gst_resource_errors_init),
(_gst_stream_errors_init):
* gst/gstobject.c: (gst_object_default_deep_notify):
* gst/gstpad.c: (gst_pad_get_event_masks),
(gst_pad_get_internal_links_default):
* gst/gstplugin.c: (gst_plugin_register_func),
(gst_plugin_get_module):
* gst/gststructure.c: (gst_structure_get_string),
(gst_structure_get_abbrs), (gst_structure_from_abbr),
(gst_structure_to_abbr):
* gst/gstutils.c: (gst_print_element_args):
* gst/schedulers/gstoptimalscheduler.c: (add_to_group),
(setup_group_scheduler), (gst_opt_scheduler_iterate):
Aplied part of patch #157127: Cleanup of issues reported by
sparse.
Also do not try to use cothreads when there is no cothread
context yet.
2004-11-02 15:02:12 +00:00
|
|
|
gchar *str = NULL;
|
2002-02-06 16:35:16 +00:00
|
|
|
GParamSpec *spec, **specs, **walk;
|
2001-09-18 04:20:04 +00:00
|
|
|
|
2002-02-06 16:35:16 +00:00
|
|
|
specs = g_object_class_list_properties (G_OBJECT_GET_CLASS (element), NULL);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
width = 0;
|
2002-02-06 16:35:16 +00:00
|
|
|
for (walk = specs; *walk; walk++) {
|
|
|
|
spec = *walk;
|
|
|
|
if (width < strlen (spec->name))
|
|
|
|
width = strlen (spec->name);
|
2001-09-18 04:20:04 +00:00
|
|
|
}
|
|
|
|
|
2002-02-06 16:35:16 +00:00
|
|
|
for (walk = specs; *walk; walk++) {
|
|
|
|
spec = *walk;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-02-06 16:35:16 +00:00
|
|
|
if (spec->flags & G_PARAM_READABLE) {
|
2004-03-13 15:27:01 +00:00
|
|
|
g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (spec));
|
2002-02-06 16:35:16 +00:00
|
|
|
g_object_get_property (G_OBJECT (element), spec->name, &value);
|
|
|
|
str = g_strdup_value_contents (&value);
|
2004-03-13 15:27:01 +00:00
|
|
|
g_value_unset (&value);
|
2002-02-06 16:35:16 +00:00
|
|
|
} else {
|
|
|
|
str = g_strdup ("Parameter not readable.");
|
2001-10-21 18:00:31 +00:00
|
|
|
}
|
2001-09-18 04:20:04 +00:00
|
|
|
|
2002-02-06 16:35:16 +00:00
|
|
|
string_append_indent (buf, indent);
|
|
|
|
g_string_append (buf, spec->name);
|
|
|
|
string_append_indent (buf, 2 + width - strlen (spec->name));
|
|
|
|
g_string_append (buf, str);
|
2001-09-18 04:20:04 +00:00
|
|
|
g_string_append_c (buf, '\n');
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-02-06 16:35:16 +00:00
|
|
|
g_free (str);
|
2001-09-18 04:20:04 +00:00
|
|
|
}
|
2002-02-06 16:35:16 +00:00
|
|
|
|
|
|
|
g_free (specs);
|
2001-09-18 04:20:04 +00:00
|
|
|
}
|