2004-01-20 14:09:42 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
* 2004 Thomas Vander Stichele <thomas@apestaart.org>
|
|
|
|
*
|
|
|
|
* gst-inspect.c: tool to inspect the GStreamer registry
|
|
|
|
*
|
|
|
|
* 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
|
2012-11-03 20:44:48 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2004-01-20 14:09:42 +00:00
|
|
|
*/
|
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2014-09-25 19:21:09 +00:00
|
|
|
/* FIXME 2.0: suppress warnings for deprecated API such as GValueArray
|
2012-07-08 18:15:33 +00:00
|
|
|
* with newer GLib versions (>= 2.31.0) */
|
|
|
|
#define GLIB_DISABLE_DEPRECATION_WARNINGS
|
|
|
|
|
2006-05-05 17:07:42 +00:00
|
|
|
#include "tools.h"
|
2004-02-03 11:23:59 +00:00
|
|
|
|
2001-01-04 10:47:39 +00:00
|
|
|
#include <string.h>
|
2004-02-03 11:23:59 +00:00
|
|
|
#include <locale.h>
|
2004-06-14 11:04:06 +00:00
|
|
|
#include <glib/gprintf.h>
|
|
|
|
|
2007-10-15 07:11:04 +00:00
|
|
|
static char *_name = NULL;
|
2004-06-14 11:04:06 +00:00
|
|
|
|
|
|
|
static int print_element_info (GstElementFactory * factory,
|
|
|
|
gboolean print_names);
|
|
|
|
|
2014-02-08 15:42:55 +00:00
|
|
|
/* *INDENT-OFF* */
|
|
|
|
G_GNUC_PRINTF (1, 2)
|
|
|
|
/* *INDENT-ON* */
|
Correct all relevant warnings found by the sparse semantic code analyzer. This include marking several symbols static...
Original commit message from CVS:
* gst/gstconfig.h.in:
* libs/gst/base/gstcollectpads.c: (gst_collect_pads_read_buffer):
* libs/gst/check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_drop_buffers),
(gst_check_element_push_buffer_list):
* libs/gst/controller/gstcontroller.c: (gst_controller_get),
(gst_controller_get_type):
* libs/gst/controller/gsthelper.c: (gst_object_control_properties),
(gst_object_get_controller), (gst_object_get_control_source):
* libs/gst/controller/gstinterpolationcontrolsource.c:
(gst_interpolation_control_source_new):
* libs/gst/controller/gstlfocontrolsource.c:
(gst_lfo_control_source_new):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_event_from_packet_0_2):
* plugins/elements/gstfdsrc.c:
* plugins/elements/gstmultiqueue.c:
* plugins/elements/gsttee.c:
* plugins/elements/gsttypefindelement.c:
* plugins/indexers/gstfileindex.c: (_file_index_id_save_xml),
(gst_file_index_add_association):
* plugins/indexers/gstmemindex.c:
* tests/benchmarks/gstpollstress.c: (mess_some_more):
* tests/check/elements/queue.c: (setup_queue):
* tests/check/gst/gstpipeline.c:
* tests/check/libs/collectpads.c: (setup), (teardown),
(gst_collect_pads_suite):
* tests/examples/adapter/adapter_test.c:
* tests/examples/metadata/read-metadata.c: (make_pipeline):
* tests/examples/xml/createxml.c:
* tests/examples/xml/runxml.c:
* tools/gst-inspect.c:
* tools/gst-run.c:
Correct all relevant warnings found by the sparse semantic code
analyzer. This include marking several symbols static, using
NULL instead of 0 for pointers, not using variable sized arrays
on the stack, moving variable declarations to the beginning of
a block and using "foo (void)" instead of "foo ()" for declarations.
2008-02-29 12:41:33 +00:00
|
|
|
static void
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
if (_name)
|
2008-05-04 19:07:21 +00:00
|
|
|
g_print ("%s", _name);
|
2004-06-14 11:04:06 +00:00
|
|
|
|
|
|
|
va_start (args, format);
|
2009-10-19 11:29:40 +00:00
|
|
|
g_vprintf (format, args);
|
2004-06-14 11:04:06 +00:00
|
|
|
va_end (args);
|
|
|
|
}
|
2001-01-03 07:38:45 +00:00
|
|
|
|
2004-04-29 01:44:13 +00:00
|
|
|
static gboolean
|
2005-03-07 18:27:42 +00:00
|
|
|
print_field (GQuark field, const GValue * value, gpointer pfx)
|
2004-04-29 01:44:13 +00:00
|
|
|
{
|
|
|
|
gchar *str = gst_value_serialize (value);
|
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("%s %15s: %s\n", (gchar *) pfx, g_quark_to_string (field), str);
|
2004-04-29 01:44:13 +00:00
|
|
|
g_free (str);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2003-03-16 20:06:02 +00:00
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
print_caps (const GstCaps * caps, const gchar * pfx)
|
2001-08-21 20:16:48 +00:00
|
|
|
{
|
2004-04-29 01:44:13 +00:00
|
|
|
guint i;
|
|
|
|
|
|
|
|
g_return_if_fail (caps != NULL);
|
|
|
|
|
|
|
|
if (gst_caps_is_any (caps)) {
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("%sANY\n", pfx);
|
2004-04-29 01:44:13 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (gst_caps_is_empty (caps)) {
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("%sEMPTY\n", pfx);
|
2004-04-29 01:44:13 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < gst_caps_get_size (caps); i++) {
|
|
|
|
GstStructure *structure = gst_caps_get_structure (caps, i);
|
2013-04-01 08:20:01 +00:00
|
|
|
GstCapsFeatures *features = gst_caps_get_features (caps, i);
|
|
|
|
|
2013-04-06 19:49:25 +00:00
|
|
|
if (features && (gst_caps_features_is_any (features) ||
|
|
|
|
!gst_caps_features_is_equal (features,
|
|
|
|
GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY))) {
|
2013-04-01 08:20:01 +00:00
|
|
|
gchar *features_string = gst_caps_features_to_string (features);
|
|
|
|
|
|
|
|
n_print ("%s%s(%s)\n", pfx, gst_structure_get_name (structure),
|
|
|
|
features_string);
|
|
|
|
g_free (features_string);
|
|
|
|
} else {
|
|
|
|
n_print ("%s%s\n", pfx, gst_structure_get_name (structure));
|
|
|
|
}
|
2004-04-29 01:44:13 +00:00
|
|
|
gst_structure_foreach (structure, print_field, (gpointer) pfx);
|
|
|
|
}
|
2002-09-17 21:32:26 +00:00
|
|
|
}
|
|
|
|
|
2010-03-03 10:45:38 +00:00
|
|
|
static const char *
|
2010-06-11 23:12:33 +00:00
|
|
|
get_rank_name (char *s, gint rank)
|
2004-05-23 17:52:54 +00:00
|
|
|
{
|
2010-06-11 23:12:33 +00:00
|
|
|
static const int ranks[4] = {
|
|
|
|
GST_RANK_NONE, GST_RANK_MARGINAL, GST_RANK_SECONDARY, GST_RANK_PRIMARY
|
|
|
|
};
|
|
|
|
static const char *rank_names[4] = { "none", "marginal", "secondary",
|
|
|
|
"primary"
|
|
|
|
};
|
|
|
|
int i;
|
|
|
|
int best_i;
|
|
|
|
|
|
|
|
best_i = 0;
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
if (rank == ranks[i])
|
|
|
|
return rank_names[i];
|
|
|
|
if (abs (rank - ranks[i]) < abs (rank - ranks[best_i])) {
|
|
|
|
best_i = i;
|
|
|
|
}
|
2004-05-23 17:52:54 +00:00
|
|
|
}
|
2010-06-11 23:12:33 +00:00
|
|
|
|
|
|
|
sprintf (s, "%s %c %d", rank_names[best_i],
|
|
|
|
(rank - ranks[best_i] > 0) ? '+' : '-', abs (ranks[best_i] - rank));
|
|
|
|
|
|
|
|
return s;
|
2002-07-24 21:13:30 +00:00
|
|
|
}
|
|
|
|
|
2001-07-25 21:40:42 +00:00
|
|
|
static void
|
2004-05-23 17:52:54 +00:00
|
|
|
print_factory_details_info (GstElementFactory * factory)
|
|
|
|
{
|
2012-05-19 13:59:14 +00:00
|
|
|
gchar **keys, **k;
|
2012-05-19 16:23:43 +00:00
|
|
|
GstRank rank;
|
2010-06-11 23:12:33 +00:00
|
|
|
char s[20];
|
|
|
|
|
2012-05-19 16:23:43 +00:00
|
|
|
rank = gst_plugin_feature_get_rank (GST_PLUGIN_FEATURE (factory));
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("Factory Details:\n");
|
2012-11-06 17:03:47 +00:00
|
|
|
n_print (" %-25s%s (%d)\n", "Rank", get_rank_name (s, rank), rank);
|
2012-05-19 13:59:14 +00:00
|
|
|
|
|
|
|
keys = gst_element_factory_get_metadata_keys (factory);
|
|
|
|
if (keys != NULL) {
|
|
|
|
for (k = keys; *k != NULL; ++k) {
|
|
|
|
const gchar *val;
|
|
|
|
gchar *key = *k;
|
|
|
|
|
|
|
|
val = gst_element_factory_get_metadata (factory, key);
|
|
|
|
key[0] = g_ascii_toupper (key[0]);
|
2012-11-06 17:03:47 +00:00
|
|
|
n_print (" %-25s%s\n", key, val);
|
2012-05-19 13:59:14 +00:00
|
|
|
}
|
|
|
|
g_strfreev (keys);
|
|
|
|
}
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("\n");
|
2004-05-23 17:52:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
print_hierarchy (GType type, gint level, gint * maxlevel)
|
2001-07-25 21:40:42 +00:00
|
|
|
{
|
|
|
|
GType parent;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
parent = g_type_parent (type);
|
|
|
|
|
|
|
|
*maxlevel = *maxlevel + 1;
|
|
|
|
level++;
|
|
|
|
|
|
|
|
if (parent)
|
2004-05-23 17:52:54 +00:00
|
|
|
print_hierarchy (parent, level, maxlevel);
|
2003-03-16 20:06:02 +00:00
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
if (_name)
|
2008-05-04 19:07:21 +00:00
|
|
|
g_print ("%s", _name);
|
2004-06-14 11:04:06 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
for (i = 1; i < *maxlevel - level; i++)
|
|
|
|
g_print (" ");
|
|
|
|
if (*maxlevel - level)
|
2001-07-25 21:40:42 +00:00
|
|
|
g_print (" +----");
|
|
|
|
|
|
|
|
g_print ("%s\n", g_type_name (type));
|
2003-03-16 20:06:02 +00:00
|
|
|
|
2001-07-25 21:40:42 +00:00
|
|
|
if (level == 1)
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("\n");
|
2001-07-25 21:40:42 +00:00
|
|
|
}
|
|
|
|
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
static void
|
|
|
|
print_interfaces (GType type)
|
|
|
|
{
|
|
|
|
guint n_ifaces;
|
|
|
|
GType *iface, *ifaces = g_type_interfaces (type, &n_ifaces);
|
|
|
|
|
|
|
|
if (ifaces) {
|
|
|
|
if (n_ifaces) {
|
2007-10-15 07:11:04 +00:00
|
|
|
if (_name)
|
2008-05-04 19:07:21 +00:00
|
|
|
g_print ("%s", _name);
|
2006-05-24 09:00:10 +00:00
|
|
|
g_print (_("Implemented Interfaces:\n"));
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
iface = ifaces;
|
|
|
|
while (*iface) {
|
2007-10-15 07:11:04 +00:00
|
|
|
if (_name)
|
2008-05-04 19:07:21 +00:00
|
|
|
g_print ("%s", _name);
|
2007-10-15 07:11:04 +00:00
|
|
|
g_print (" %s\n", g_type_name (*iface));
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
iface++;
|
|
|
|
}
|
2007-10-15 07:11:04 +00:00
|
|
|
if (_name)
|
2008-05-04 19:07:21 +00:00
|
|
|
g_print ("%s", _name);
|
2007-10-15 07:11:04 +00:00
|
|
|
g_print ("\n");
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
}
|
2008-02-02 06:48:37 +00:00
|
|
|
g_free (ifaces);
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-19 20:03:46 +00:00
|
|
|
static gchar *
|
|
|
|
flags_to_string (GFlagsValue * vals, guint flags)
|
|
|
|
{
|
|
|
|
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 (vals[i].value != 0 && (flags_left & vals[i].value) == vals[i].value) {
|
|
|
|
if (s->len > 0)
|
2011-05-06 07:54:08 +00:00
|
|
|
g_string_append_c (s, '+');
|
2009-06-19 20:03:46 +00:00
|
|
|
g_string_append (s, vals[i].value_nick);
|
|
|
|
flags_left -= vals[i].value;
|
|
|
|
if (flags_left == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (s->len == 0)
|
|
|
|
g_string_assign (s, "(none)");
|
|
|
|
|
|
|
|
return g_string_free (s, FALSE);
|
|
|
|
}
|
|
|
|
|
2010-09-23 19:48:25 +00:00
|
|
|
#define KNOWN_PARAM_FLAGS \
|
|
|
|
(G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY | \
|
|
|
|
G_PARAM_LAX_VALIDATION | G_PARAM_STATIC_STRINGS | \
|
2014-11-01 21:30:30 +00:00
|
|
|
G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_DEPRECATED | \
|
|
|
|
GST_PARAM_CONTROLLABLE | GST_PARAM_MUTABLE_PLAYING | \
|
|
|
|
GST_PARAM_MUTABLE_PAUSED | GST_PARAM_MUTABLE_READY)
|
2010-09-23 19:48:25 +00:00
|
|
|
|
2002-05-08 20:40:48 +00:00
|
|
|
static void
|
2004-05-23 17:52:54 +00:00
|
|
|
print_element_properties_info (GstElement * element)
|
2002-05-08 20:40:48 +00:00
|
|
|
{
|
|
|
|
GParamSpec **property_specs;
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
guint num_properties, i;
|
2002-09-19 18:14:09 +00:00
|
|
|
gboolean readable;
|
2005-08-29 19:59:52 +00:00
|
|
|
gboolean first_flag;
|
2003-03-16 20:06:02 +00:00
|
|
|
|
|
|
|
property_specs = g_object_class_list_properties
|
2004-03-13 15:27:01 +00:00
|
|
|
(G_OBJECT_GET_CLASS (element), &num_properties);
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("\n");
|
|
|
|
n_print ("Element Properties:\n");
|
2002-05-08 20:40:48 +00:00
|
|
|
|
|
|
|
for (i = 0; i < num_properties; i++) {
|
|
|
|
GValue value = { 0, };
|
|
|
|
GParamSpec *param = property_specs[i];
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-09-19 18:14:09 +00:00
|
|
|
readable = FALSE;
|
2002-05-08 20:40:48 +00:00
|
|
|
|
2002-09-19 18:14:09 +00:00
|
|
|
g_value_init (&value, param->value_type);
|
2005-08-29 19:59:52 +00:00
|
|
|
|
|
|
|
n_print (" %-20s: %s\n", g_param_spec_get_name (param),
|
|
|
|
g_param_spec_get_blurb (param));
|
|
|
|
|
|
|
|
first_flag = TRUE;
|
2005-09-20 17:21:13 +00:00
|
|
|
n_print ("%-23.23s flags: ", "");
|
2002-05-08 20:40:48 +00:00
|
|
|
if (param->flags & G_PARAM_READABLE) {
|
|
|
|
g_object_get_property (G_OBJECT (element), param->name, &value);
|
2002-09-19 18:14:09 +00:00
|
|
|
readable = TRUE;
|
2010-09-23 19:48:25 +00:00
|
|
|
g_print ("%s%s", (first_flag) ? "" : ", ", _("readable"));
|
|
|
|
first_flag = FALSE;
|
2011-11-12 16:42:14 +00:00
|
|
|
} else {
|
|
|
|
/* if we can't read the property value, assume it's set to the default
|
|
|
|
* (which might not be entirely true for sub-classes, but that's an
|
|
|
|
* unlikely corner-case anyway) */
|
|
|
|
g_param_value_set_default (param, &value);
|
2002-05-08 20:40:48 +00:00
|
|
|
}
|
2005-08-29 19:59:52 +00:00
|
|
|
if (param->flags & G_PARAM_WRITABLE) {
|
2010-09-23 19:48:25 +00:00
|
|
|
g_print ("%s%s", (first_flag) ? "" : ", ", _("writable"));
|
|
|
|
first_flag = FALSE;
|
2005-08-29 19:59:52 +00:00
|
|
|
}
|
2014-11-01 21:30:30 +00:00
|
|
|
if (param->flags & G_PARAM_DEPRECATED) {
|
|
|
|
g_print ("%s%s", (first_flag) ? "" : ", ", _("deprecated"));
|
|
|
|
first_flag = FALSE;
|
|
|
|
}
|
2005-08-29 19:59:52 +00:00
|
|
|
if (param->flags & GST_PARAM_CONTROLLABLE) {
|
2010-09-23 19:48:25 +00:00
|
|
|
g_print (", %s", _("controllable"));
|
|
|
|
first_flag = FALSE;
|
|
|
|
}
|
|
|
|
if (param->flags & GST_PARAM_MUTABLE_PLAYING) {
|
|
|
|
g_print (", %s", _("changeable in NULL, READY, PAUSED or PLAYING state"));
|
|
|
|
} else if (param->flags & GST_PARAM_MUTABLE_PAUSED) {
|
|
|
|
g_print (", %s", _("changeable only in NULL, READY or PAUSED state"));
|
|
|
|
} else if (param->flags & GST_PARAM_MUTABLE_READY) {
|
|
|
|
g_print (", %s", _("changeable only in NULL or READY state"));
|
|
|
|
}
|
|
|
|
if (param->flags & ~KNOWN_PARAM_FLAGS) {
|
|
|
|
g_print ("%s0x%0x", (first_flag) ? "" : ", ",
|
|
|
|
param->flags & ~KNOWN_PARAM_FLAGS);
|
2005-08-29 19:59:52 +00:00
|
|
|
}
|
|
|
|
n_print ("\n");
|
2002-05-08 20:40:48 +00:00
|
|
|
|
|
|
|
switch (G_VALUE_TYPE (&value)) {
|
2003-03-16 20:06:02 +00:00
|
|
|
case G_TYPE_STRING:
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
{
|
2011-11-12 16:42:14 +00:00
|
|
|
const char *string_val = g_value_get_string (&value);
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("%-23.23s String. ", "");
|
2005-10-08 11:16:03 +00:00
|
|
|
|
2011-11-12 16:42:14 +00:00
|
|
|
if (string_val == NULL)
|
|
|
|
g_print ("Default: null");
|
2005-10-08 11:16:03 +00:00
|
|
|
else
|
2011-11-12 16:42:14 +00:00
|
|
|
g_print ("Default: \"%s\"", string_val);
|
2004-03-15 19:27:17 +00:00
|
|
|
break;
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
}
|
2003-03-16 20:06:02 +00:00
|
|
|
case G_TYPE_BOOLEAN:
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
{
|
2011-11-12 16:42:14 +00:00
|
|
|
gboolean bool_val = g_value_get_boolean (&value);
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("%-23.23s Boolean. ", "");
|
2011-11-12 16:42:14 +00:00
|
|
|
|
|
|
|
g_print ("Default: %s", bool_val ? "true" : "false");
|
2004-03-15 19:27:17 +00:00
|
|
|
break;
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
}
|
2003-03-16 20:06:02 +00:00
|
|
|
case G_TYPE_ULONG:
|
2002-05-08 20:40:48 +00:00
|
|
|
{
|
2004-03-15 19:27:17 +00:00
|
|
|
GParamSpecULong *pulong = G_PARAM_SPEC_ULONG (param);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("%-23.23s Unsigned Long. ", "");
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
g_print ("Range: %lu - %lu Default: %lu ",
|
2011-11-12 16:42:14 +00:00
|
|
|
pulong->minimum, pulong->maximum, g_value_get_ulong (&value));
|
2011-11-24 01:06:52 +00:00
|
|
|
|
2012-01-22 15:23:13 +00:00
|
|
|
GST_ERROR ("%s: property '%s' of type ulong: consider changing to "
|
2011-11-24 01:06:52 +00:00
|
|
|
"uint/uint64", GST_OBJECT_NAME (element),
|
|
|
|
g_param_spec_get_name (param));
|
2004-03-15 19:27:17 +00:00
|
|
|
break;
|
2002-05-08 20:40:48 +00:00
|
|
|
}
|
2003-03-16 20:06:02 +00:00
|
|
|
case G_TYPE_LONG:
|
2002-05-08 20:40:48 +00:00
|
|
|
{
|
2004-03-15 19:27:17 +00:00
|
|
|
GParamSpecLong *plong = G_PARAM_SPEC_LONG (param);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("%-23.23s Long. ", "");
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
g_print ("Range: %ld - %ld Default: %ld ",
|
2011-11-12 16:42:14 +00:00
|
|
|
plong->minimum, plong->maximum, g_value_get_long (&value));
|
2011-11-24 01:06:52 +00:00
|
|
|
|
|
|
|
GST_ERROR ("%s: property '%s' of type long: consider changing to "
|
|
|
|
"int/int64", GST_OBJECT_NAME (element),
|
|
|
|
g_param_spec_get_name (param));
|
2004-03-15 19:27:17 +00:00
|
|
|
break;
|
2002-05-08 20:40:48 +00:00
|
|
|
}
|
2003-03-16 20:06:02 +00:00
|
|
|
case G_TYPE_UINT:
|
2002-05-08 20:40:48 +00:00
|
|
|
{
|
2004-03-15 19:27:17 +00:00
|
|
|
GParamSpecUInt *puint = G_PARAM_SPEC_UINT (param);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("%-23.23s Unsigned Integer. ", "");
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
g_print ("Range: %u - %u Default: %u ",
|
2011-11-12 16:42:14 +00:00
|
|
|
puint->minimum, puint->maximum, g_value_get_uint (&value));
|
2004-03-15 19:27:17 +00:00
|
|
|
break;
|
2002-05-08 20:40:48 +00:00
|
|
|
}
|
2003-03-16 20:06:02 +00:00
|
|
|
case G_TYPE_INT:
|
2002-05-08 20:40:48 +00:00
|
|
|
{
|
2004-03-15 19:27:17 +00:00
|
|
|
GParamSpecInt *pint = G_PARAM_SPEC_INT (param);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("%-23.23s Integer. ", "");
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
g_print ("Range: %d - %d Default: %d ",
|
2011-11-12 16:42:14 +00:00
|
|
|
pint->minimum, pint->maximum, g_value_get_int (&value));
|
2004-03-15 19:27:17 +00:00
|
|
|
break;
|
2002-05-08 20:40:48 +00:00
|
|
|
}
|
2003-03-16 20:06:02 +00:00
|
|
|
case G_TYPE_UINT64:
|
2002-05-14 00:45:10 +00:00
|
|
|
{
|
2004-03-15 19:27:17 +00:00
|
|
|
GParamSpecUInt64 *puint64 = G_PARAM_SPEC_UINT64 (param);
|
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("%-23.23s Unsigned Integer64. ", "");
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
g_print ("Range: %" G_GUINT64_FORMAT " - %" G_GUINT64_FORMAT
|
|
|
|
" Default: %" G_GUINT64_FORMAT " ",
|
2011-11-12 16:42:14 +00:00
|
|
|
puint64->minimum, puint64->maximum, g_value_get_uint64 (&value));
|
2004-03-15 19:27:17 +00:00
|
|
|
break;
|
2002-05-14 00:45:10 +00:00
|
|
|
}
|
2003-03-16 20:06:02 +00:00
|
|
|
case G_TYPE_INT64:
|
2002-05-14 00:45:10 +00:00
|
|
|
{
|
2004-03-15 19:27:17 +00:00
|
|
|
GParamSpecInt64 *pint64 = G_PARAM_SPEC_INT64 (param);
|
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("%-23.23s Integer64. ", "");
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
g_print ("Range: %" G_GINT64_FORMAT " - %" G_GINT64_FORMAT
|
|
|
|
" Default: %" G_GINT64_FORMAT " ",
|
2011-11-12 16:42:14 +00:00
|
|
|
pint64->minimum, pint64->maximum, g_value_get_int64 (&value));
|
2004-03-15 19:27:17 +00:00
|
|
|
break;
|
2002-05-14 00:45:10 +00:00
|
|
|
}
|
2003-03-16 20:06:02 +00:00
|
|
|
case G_TYPE_FLOAT:
|
2002-05-08 20:40:48 +00:00
|
|
|
{
|
2004-03-15 19:27:17 +00:00
|
|
|
GParamSpecFloat *pfloat = G_PARAM_SPEC_FLOAT (param);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
n_print ("%-23.23s Float. ", "");
|
|
|
|
g_print ("Range: %15.7g - %15.7g Default: %15.7g ",
|
2011-11-12 16:42:14 +00:00
|
|
|
pfloat->minimum, pfloat->maximum, g_value_get_float (&value));
|
2004-03-15 19:27:17 +00:00
|
|
|
break;
|
2002-05-08 20:40:48 +00:00
|
|
|
}
|
2003-03-16 20:06:02 +00:00
|
|
|
case G_TYPE_DOUBLE:
|
2002-05-08 20:40:48 +00:00
|
|
|
{
|
2004-03-15 19:27:17 +00:00
|
|
|
GParamSpecDouble *pdouble = G_PARAM_SPEC_DOUBLE (param);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
n_print ("%-23.23s Double. ", "");
|
|
|
|
g_print ("Range: %15.7g - %15.7g Default: %15.7g ",
|
2011-11-12 16:42:14 +00:00
|
|
|
pdouble->minimum, pdouble->maximum, g_value_get_double (&value));
|
2004-03-15 19:27:17 +00:00
|
|
|
break;
|
2002-05-08 20:40:48 +00:00
|
|
|
}
|
2011-11-24 01:06:52 +00:00
|
|
|
case G_TYPE_CHAR:
|
|
|
|
case G_TYPE_UCHAR:
|
|
|
|
GST_ERROR ("%s: property '%s' of type char: consider changing to "
|
|
|
|
"int/string", GST_OBJECT_NAME (element),
|
|
|
|
g_param_spec_get_name (param));
|
|
|
|
/* fall through */
|
2002-05-08 20:40:48 +00:00
|
|
|
default:
|
2004-03-15 19:27:17 +00:00
|
|
|
if (param->value_type == GST_TYPE_CAPS) {
|
|
|
|
const GstCaps *caps = gst_value_get_caps (&value);
|
|
|
|
|
|
|
|
if (!caps)
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("%-23.23s Caps (NULL)", "");
|
2004-03-15 19:27:17 +00:00
|
|
|
else {
|
|
|
|
print_caps (caps, " ");
|
|
|
|
}
|
|
|
|
} else if (G_IS_PARAM_SPEC_ENUM (param)) {
|
|
|
|
GEnumValue *values;
|
|
|
|
guint j = 0;
|
|
|
|
gint enum_value;
|
2011-11-12 16:42:14 +00:00
|
|
|
const gchar *value_nick = "";
|
2004-03-15 19:27:17 +00:00
|
|
|
|
|
|
|
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)
|
2011-11-12 16:42:14 +00:00
|
|
|
value_nick = values[j].value_nick;
|
2004-03-15 19:27:17 +00:00
|
|
|
j++;
|
|
|
|
}
|
|
|
|
|
2011-11-12 16:42:14 +00:00
|
|
|
n_print ("%-23.23s Enum \"%s\" Default: %d, \"%s\"", "",
|
|
|
|
g_type_name (G_VALUE_TYPE (&value)), enum_value, value_nick);
|
2004-03-15 19:27:17 +00:00
|
|
|
|
|
|
|
j = 0;
|
|
|
|
while (values[j].value_name) {
|
2007-10-15 07:11:04 +00:00
|
|
|
g_print ("\n");
|
|
|
|
if (_name)
|
2008-05-04 19:07:21 +00:00
|
|
|
g_print ("%s", _name);
|
2007-10-15 07:11:04 +00:00
|
|
|
g_print ("%-23.23s (%d): %-16s - %s", "",
|
|
|
|
values[j].value, values[j].value_nick, values[j].value_name);
|
2004-03-15 19:27:17 +00:00
|
|
|
j++;
|
|
|
|
}
|
|
|
|
/* g_type_class_unref (ec); */
|
|
|
|
} else if (G_IS_PARAM_SPEC_FLAGS (param)) {
|
2007-11-22 21:32:09 +00:00
|
|
|
GParamSpecFlags *pflags = G_PARAM_SPEC_FLAGS (param);
|
2009-06-19 20:03:46 +00:00
|
|
|
GFlagsValue *vals;
|
2011-11-12 16:42:14 +00:00
|
|
|
gchar *cur;
|
2004-03-15 19:27:17 +00:00
|
|
|
|
2009-06-19 20:03:46 +00:00
|
|
|
vals = pflags->flags_class->values;
|
2004-03-15 19:27:17 +00:00
|
|
|
|
2009-06-19 20:03:46 +00:00
|
|
|
cur = flags_to_string (vals, g_value_get_flags (&value));
|
2004-03-15 19:27:17 +00:00
|
|
|
|
2011-11-12 16:42:14 +00:00
|
|
|
n_print ("%-23.23s Flags \"%s\" Default: 0x%08x, \"%s\"", "",
|
|
|
|
g_type_name (G_VALUE_TYPE (&value)),
|
|
|
|
g_value_get_flags (&value), cur);
|
2004-03-15 19:27:17 +00:00
|
|
|
|
2009-06-19 20:03:46 +00:00
|
|
|
while (vals[0].value_name) {
|
2007-10-15 07:11:04 +00:00
|
|
|
g_print ("\n");
|
|
|
|
if (_name)
|
2008-05-04 19:07:21 +00:00
|
|
|
g_print ("%s", _name);
|
2007-10-15 07:11:04 +00:00
|
|
|
g_print ("%-23.23s (0x%08x): %-16s - %s", "",
|
2009-06-19 20:03:46 +00:00
|
|
|
vals[0].value, vals[0].value_nick, vals[0].value_name);
|
|
|
|
++vals;
|
2004-03-15 19:27:17 +00:00
|
|
|
}
|
|
|
|
|
2009-06-19 20:03:46 +00:00
|
|
|
g_free (cur);
|
2004-03-15 19:27:17 +00:00
|
|
|
} else if (G_IS_PARAM_SPEC_OBJECT (param)) {
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("%-23.23s Object of type \"%s\"", "",
|
2004-03-15 19:27:17 +00:00
|
|
|
g_type_name (param->value_type));
|
2005-12-27 18:04:58 +00:00
|
|
|
} else if (G_IS_PARAM_SPEC_BOXED (param)) {
|
|
|
|
n_print ("%-23.23s Boxed pointer of type \"%s\"", "",
|
|
|
|
g_type_name (param->value_type));
|
2014-04-12 05:13:02 +00:00
|
|
|
if (param->value_type == GST_TYPE_STRUCTURE) {
|
|
|
|
const GstStructure *s = gst_value_get_structure (&value);
|
|
|
|
if (s)
|
|
|
|
gst_structure_foreach (s, print_field,
|
|
|
|
(gpointer) " ");
|
|
|
|
}
|
2005-12-27 18:04:58 +00:00
|
|
|
} else if (G_IS_PARAM_SPEC_POINTER (param)) {
|
|
|
|
if (param->value_type != G_TYPE_POINTER) {
|
|
|
|
n_print ("%-23.23s Pointer of type \"%s\".", "",
|
|
|
|
g_type_name (param->value_type));
|
|
|
|
} else {
|
|
|
|
n_print ("%-23.23s Pointer.", "");
|
|
|
|
}
|
2006-11-08 11:41:13 +00:00
|
|
|
} else if (param->value_type == G_TYPE_VALUE_ARRAY) {
|
2008-05-28 10:44:15 +00:00
|
|
|
GParamSpecValueArray *pvarray = G_PARAM_SPEC_VALUE_ARRAY (param);
|
|
|
|
|
|
|
|
if (pvarray->element_spec) {
|
|
|
|
n_print ("%-23.23s Array of GValues of type \"%s\"", "",
|
|
|
|
g_type_name (pvarray->element_spec->value_type));
|
|
|
|
} else {
|
|
|
|
n_print ("%-23.23s Array of GValues", "");
|
|
|
|
}
|
2007-12-13 10:31:33 +00:00
|
|
|
} else if (GST_IS_PARAM_SPEC_FRACTION (param)) {
|
|
|
|
GstParamSpecFraction *pfraction = GST_PARAM_SPEC_FRACTION (param);
|
|
|
|
|
|
|
|
n_print ("%-23.23s Fraction. ", "");
|
|
|
|
|
|
|
|
g_print ("Range: %d/%d - %d/%d Default: %d/%d ",
|
|
|
|
pfraction->min_num, pfraction->min_den,
|
|
|
|
pfraction->max_num, pfraction->max_den,
|
2011-11-12 16:42:14 +00:00
|
|
|
gst_value_get_fraction_numerator (&value),
|
|
|
|
gst_value_get_fraction_denominator (&value));
|
2004-03-15 19:27:17 +00:00
|
|
|
} else {
|
2014-02-10 16:09:59 +00:00
|
|
|
n_print ("%-23.23s Unknown type %ld \"%s\"", "",
|
|
|
|
(glong) param->value_type, g_type_name (param->value_type));
|
2004-03-15 19:27:17 +00:00
|
|
|
}
|
|
|
|
break;
|
2002-05-08 20:40:48 +00:00
|
|
|
}
|
2003-03-16 20:06:02 +00:00
|
|
|
if (!readable)
|
2003-01-21 21:34:31 +00:00
|
|
|
g_print (" Write only\n");
|
2003-03-16 20:06:02 +00:00
|
|
|
else
|
2002-09-19 18:14:09 +00:00
|
|
|
g_print ("\n");
|
2008-02-02 06:48:37 +00:00
|
|
|
|
|
|
|
g_value_reset (&value);
|
2002-05-08 20:40:48 +00:00
|
|
|
}
|
2003-03-16 20:06:02 +00:00
|
|
|
if (num_properties == 0)
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" none\n");
|
2005-08-24 13:04:31 +00:00
|
|
|
|
|
|
|
g_free (property_specs);
|
2002-05-08 20:40:48 +00:00
|
|
|
}
|
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
static void
|
2004-06-14 11:04:06 +00:00
|
|
|
print_pad_templates_info (GstElement * element, GstElementFactory * factory)
|
2001-03-07 21:52:56 +00:00
|
|
|
{
|
2004-05-23 17:52:54 +00:00
|
|
|
const GList *pads;
|
Use libxml2 for registry parsing, use staticpadtemplates in elementfactories. Makes gst_init() +/- 10x faster.
Original commit message from CVS:
* docs/gst/tmpl/gstelementfactory.sgml:
* gst/gstelement.h:
* gst/gstelementfactory.c: (gst_element_factory_init),
(gst_element_factory_cleanup), (gst_element_register),
(__gst_element_factory_add_static_pad_template),
(gst_element_factory_get_static_pad_templates),
(gst_element_factory_can_src_caps),
(gst_element_factory_can_sink_caps):
* gst/registries/Makefile.am:
* gst/registries/gstlibxmlregistry.c: (gst_xml_registry_get_type),
(gst_xml_registry_class_init), (gst_xml_registry_init),
(gst_xml_registry_new), (gst_xml_registry_set_property),
(gst_xml_registry_get_property), (get_time), (make_dir),
(gst_xml_registry_get_perms_func),
(plugin_times_older_than_recurse), (plugin_times_older_than),
(gst_xml_registry_open_func), (gst_xml_registry_load_func),
(gst_xml_registry_save_func), (gst_xml_registry_close_func),
(add_to_char_array), (read_string), (read_uint), (read_enum),
(load_pad_template), (load_feature), (load_plugin), (load_paths),
(gst_xml_registry_load), (gst_xml_registry_load_plugin),
(gst_xml_registry_save_caps), (gst_xml_registry_save_pad_template),
(gst_xml_registry_save_feature), (gst_xml_registry_save_plugin),
(gst_xml_registry_save), (gst_xml_registry_rebuild_recurse),
(gst_xml_registry_rebuild):
* gst/registries/gstlibxmlregistry.h:
* tools/gst-compprep.c: (main):
* tools/gst-inspect.c: (print_pad_templates_info):
* tools/gst-xmlinspect.c: (print_element_info):
Use libxml2 for registry parsing, use staticpadtemplates in
elementfactories. Makes gst_init() +/- 10x faster.
2005-04-12 15:00:30 +00:00
|
|
|
GstStaticPadTemplate *padtemplate;
|
2004-05-23 17:52:54 +00:00
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("Pad Templates:\n");
|
2012-05-19 13:59:14 +00:00
|
|
|
if (gst_element_factory_get_num_pad_templates (factory) == 0) {
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" none\n");
|
2004-05-23 17:52:54 +00:00
|
|
|
return;
|
2001-01-03 20:21:22 +00:00
|
|
|
}
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2012-05-19 13:59:14 +00:00
|
|
|
pads = gst_element_factory_get_static_pad_templates (factory);
|
2004-05-23 17:52:54 +00:00
|
|
|
while (pads) {
|
Use libxml2 for registry parsing, use staticpadtemplates in elementfactories. Makes gst_init() +/- 10x faster.
Original commit message from CVS:
* docs/gst/tmpl/gstelementfactory.sgml:
* gst/gstelement.h:
* gst/gstelementfactory.c: (gst_element_factory_init),
(gst_element_factory_cleanup), (gst_element_register),
(__gst_element_factory_add_static_pad_template),
(gst_element_factory_get_static_pad_templates),
(gst_element_factory_can_src_caps),
(gst_element_factory_can_sink_caps):
* gst/registries/Makefile.am:
* gst/registries/gstlibxmlregistry.c: (gst_xml_registry_get_type),
(gst_xml_registry_class_init), (gst_xml_registry_init),
(gst_xml_registry_new), (gst_xml_registry_set_property),
(gst_xml_registry_get_property), (get_time), (make_dir),
(gst_xml_registry_get_perms_func),
(plugin_times_older_than_recurse), (plugin_times_older_than),
(gst_xml_registry_open_func), (gst_xml_registry_load_func),
(gst_xml_registry_save_func), (gst_xml_registry_close_func),
(add_to_char_array), (read_string), (read_uint), (read_enum),
(load_pad_template), (load_feature), (load_plugin), (load_paths),
(gst_xml_registry_load), (gst_xml_registry_load_plugin),
(gst_xml_registry_save_caps), (gst_xml_registry_save_pad_template),
(gst_xml_registry_save_feature), (gst_xml_registry_save_plugin),
(gst_xml_registry_save), (gst_xml_registry_rebuild_recurse),
(gst_xml_registry_rebuild):
* gst/registries/gstlibxmlregistry.h:
* tools/gst-compprep.c: (main):
* tools/gst-inspect.c: (print_pad_templates_info):
* tools/gst-xmlinspect.c: (print_element_info):
Use libxml2 for registry parsing, use staticpadtemplates in
elementfactories. Makes gst_init() +/- 10x faster.
2005-04-12 15:00:30 +00:00
|
|
|
padtemplate = (GstStaticPadTemplate *) (pads->data);
|
2004-05-23 17:52:54 +00:00
|
|
|
pads = g_list_next (pads);
|
Updates, it prints a lot more stuff now, like padtemplates, caps/props, and arguments. More stuff can be done, but n...
Original commit message from CVS:
Updates, it prints a lot more stuff now, like padtemplates, caps/props,
and arguments. More stuff can be done, but not now, I must sleep.
2001-01-03 08:48:36 +00:00
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
if (padtemplate->direction == GST_PAD_SRC)
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" SRC template: '%s'\n", padtemplate->name_template);
|
2004-05-23 17:52:54 +00:00
|
|
|
else if (padtemplate->direction == GST_PAD_SINK)
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" SINK template: '%s'\n", padtemplate->name_template);
|
2004-05-23 17:52:54 +00:00
|
|
|
else
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" UNKNOWN!!! template: '%s'\n", padtemplate->name_template);
|
2004-05-23 17:52:54 +00:00
|
|
|
|
|
|
|
if (padtemplate->presence == GST_PAD_ALWAYS)
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" Availability: Always\n");
|
2004-05-23 17:52:54 +00:00
|
|
|
else if (padtemplate->presence == GST_PAD_SOMETIMES)
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" Availability: Sometimes\n");
|
2004-05-23 17:52:54 +00:00
|
|
|
else if (padtemplate->presence == GST_PAD_REQUEST) {
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" Availability: On request\n");
|
2004-05-23 17:52:54 +00:00
|
|
|
} else
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" Availability: UNKNOWN!!!\n");
|
2004-05-23 17:52:54 +00:00
|
|
|
|
Use libxml2 for registry parsing, use staticpadtemplates in elementfactories. Makes gst_init() +/- 10x faster.
Original commit message from CVS:
* docs/gst/tmpl/gstelementfactory.sgml:
* gst/gstelement.h:
* gst/gstelementfactory.c: (gst_element_factory_init),
(gst_element_factory_cleanup), (gst_element_register),
(__gst_element_factory_add_static_pad_template),
(gst_element_factory_get_static_pad_templates),
(gst_element_factory_can_src_caps),
(gst_element_factory_can_sink_caps):
* gst/registries/Makefile.am:
* gst/registries/gstlibxmlregistry.c: (gst_xml_registry_get_type),
(gst_xml_registry_class_init), (gst_xml_registry_init),
(gst_xml_registry_new), (gst_xml_registry_set_property),
(gst_xml_registry_get_property), (get_time), (make_dir),
(gst_xml_registry_get_perms_func),
(plugin_times_older_than_recurse), (plugin_times_older_than),
(gst_xml_registry_open_func), (gst_xml_registry_load_func),
(gst_xml_registry_save_func), (gst_xml_registry_close_func),
(add_to_char_array), (read_string), (read_uint), (read_enum),
(load_pad_template), (load_feature), (load_plugin), (load_paths),
(gst_xml_registry_load), (gst_xml_registry_load_plugin),
(gst_xml_registry_save_caps), (gst_xml_registry_save_pad_template),
(gst_xml_registry_save_feature), (gst_xml_registry_save_plugin),
(gst_xml_registry_save), (gst_xml_registry_rebuild_recurse),
(gst_xml_registry_rebuild):
* gst/registries/gstlibxmlregistry.h:
* tools/gst-compprep.c: (main):
* tools/gst-inspect.c: (print_pad_templates_info):
* tools/gst-xmlinspect.c: (print_element_info):
Use libxml2 for registry parsing, use staticpadtemplates in
elementfactories. Makes gst_init() +/- 10x faster.
2005-04-12 15:00:30 +00:00
|
|
|
if (padtemplate->static_caps.string) {
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" Capabilities:\n");
|
Use libxml2 for registry parsing, use staticpadtemplates in elementfactories. Makes gst_init() +/- 10x faster.
Original commit message from CVS:
* docs/gst/tmpl/gstelementfactory.sgml:
* gst/gstelement.h:
* gst/gstelementfactory.c: (gst_element_factory_init),
(gst_element_factory_cleanup), (gst_element_register),
(__gst_element_factory_add_static_pad_template),
(gst_element_factory_get_static_pad_templates),
(gst_element_factory_can_src_caps),
(gst_element_factory_can_sink_caps):
* gst/registries/Makefile.am:
* gst/registries/gstlibxmlregistry.c: (gst_xml_registry_get_type),
(gst_xml_registry_class_init), (gst_xml_registry_init),
(gst_xml_registry_new), (gst_xml_registry_set_property),
(gst_xml_registry_get_property), (get_time), (make_dir),
(gst_xml_registry_get_perms_func),
(plugin_times_older_than_recurse), (plugin_times_older_than),
(gst_xml_registry_open_func), (gst_xml_registry_load_func),
(gst_xml_registry_save_func), (gst_xml_registry_close_func),
(add_to_char_array), (read_string), (read_uint), (read_enum),
(load_pad_template), (load_feature), (load_plugin), (load_paths),
(gst_xml_registry_load), (gst_xml_registry_load_plugin),
(gst_xml_registry_save_caps), (gst_xml_registry_save_pad_template),
(gst_xml_registry_save_feature), (gst_xml_registry_save_plugin),
(gst_xml_registry_save), (gst_xml_registry_rebuild_recurse),
(gst_xml_registry_rebuild):
* gst/registries/gstlibxmlregistry.h:
* tools/gst-compprep.c: (main):
* tools/gst-inspect.c: (print_pad_templates_info):
* tools/gst-xmlinspect.c: (print_element_info):
Use libxml2 for registry parsing, use staticpadtemplates in
elementfactories. Makes gst_init() +/- 10x faster.
2005-04-12 15:00:30 +00:00
|
|
|
print_caps (gst_static_caps_get (&padtemplate->static_caps), " ");
|
Updates, it prints a lot more stuff now, like padtemplates, caps/props, and arguments. More stuff can be done, but n...
Original commit message from CVS:
Updates, it prints a lot more stuff now, like padtemplates, caps/props,
and arguments. More stuff can be done, but not now, I must sleep.
2001-01-03 08:48:36 +00:00
|
|
|
}
|
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("\n");
|
2004-05-23 17:52:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
print_element_flag_info (GstElement * element)
|
|
|
|
{
|
|
|
|
gboolean have_flags = FALSE;
|
2001-05-20 20:12:45 +00:00
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("\n");
|
|
|
|
n_print ("Element Flags:\n");
|
2004-05-23 17:52:54 +00:00
|
|
|
|
2001-05-20 20:12:45 +00:00
|
|
|
if (!have_flags)
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" no flags set\n");
|
2001-01-03 07:38:45 +00:00
|
|
|
|
2002-03-30 17:06:45 +00:00
|
|
|
if (GST_IS_BIN (element)) {
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("\n");
|
|
|
|
n_print ("Bin Flags:\n");
|
2002-03-30 17:06:45 +00:00
|
|
|
if (!have_flags)
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" no flags set\n");
|
2002-03-30 17:06:45 +00:00
|
|
|
}
|
2004-05-23 17:52:54 +00:00
|
|
|
}
|
2002-03-30 17:06:45 +00:00
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
static void
|
|
|
|
print_implementation_info (GstElement * element)
|
|
|
|
{
|
|
|
|
GstElementClass *gstelement_class;
|
2001-01-03 07:38:45 +00:00
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
gstelement_class = GST_ELEMENT_CLASS (G_OBJECT_GET_CLASS (element));
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("\n");
|
|
|
|
n_print ("Element Implementation:\n");
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" Has change_state() function: %s\n",
|
2004-03-13 15:27:01 +00:00
|
|
|
GST_DEBUG_FUNCPTR_NAME (gstelement_class->change_state));
|
2004-05-23 17:52:54 +00:00
|
|
|
}
|
2001-01-03 07:38:45 +00:00
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
static void
|
|
|
|
print_clocking_info (GstElement * element)
|
|
|
|
{
|
2011-11-28 16:22:44 +00:00
|
|
|
gboolean requires_clock, provides_clock;
|
|
|
|
|
|
|
|
requires_clock =
|
|
|
|
GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_REQUIRE_CLOCK);
|
|
|
|
provides_clock =
|
|
|
|
GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
|
|
|
|
|
|
|
|
if (!requires_clock && !provides_clock) {
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("\n");
|
2014-04-02 21:52:10 +00:00
|
|
|
n_print ("Element has no clocking capabilities.\n");
|
2004-05-23 17:52:54 +00:00
|
|
|
return;
|
|
|
|
}
|
2002-03-30 17:06:45 +00:00
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("\n");
|
|
|
|
n_print ("Clocking Interaction:\n");
|
2011-11-28 16:22:44 +00:00
|
|
|
if (requires_clock) {
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" element requires a clock\n");
|
2002-03-30 17:06:45 +00:00
|
|
|
}
|
2004-05-23 17:52:54 +00:00
|
|
|
|
2011-11-28 16:22:44 +00:00
|
|
|
if (provides_clock) {
|
2002-03-30 17:06:45 +00:00
|
|
|
GstClock *clock;
|
|
|
|
|
|
|
|
clock = gst_element_get_clock (element);
|
2011-11-28 16:22:44 +00:00
|
|
|
if (clock) {
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" element provides a clock: %s\n", GST_OBJECT_NAME (clock));
|
2011-11-28 16:22:44 +00:00
|
|
|
gst_object_unref (clock);
|
|
|
|
} else
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" element is supposed to provide a clock but returned NULL\n");
|
2002-03-30 17:06:45 +00:00
|
|
|
}
|
2004-05-23 17:52:54 +00:00
|
|
|
}
|
|
|
|
|
2008-04-20 09:55:25 +00:00
|
|
|
static void
|
|
|
|
print_uri_handler_info (GstElement * element)
|
|
|
|
{
|
|
|
|
if (GST_IS_URI_HANDLER (element)) {
|
2011-11-13 23:25:23 +00:00
|
|
|
const gchar *const *uri_protocols;
|
2008-04-20 09:55:25 +00:00
|
|
|
const gchar *uri_type;
|
|
|
|
|
|
|
|
if (gst_uri_handler_get_uri_type (GST_URI_HANDLER (element)) == GST_URI_SRC)
|
|
|
|
uri_type = "source";
|
|
|
|
else if (gst_uri_handler_get_uri_type (GST_URI_HANDLER (element)) ==
|
|
|
|
GST_URI_SINK)
|
|
|
|
uri_type = "sink";
|
|
|
|
else
|
|
|
|
uri_type = "unknown";
|
|
|
|
|
|
|
|
uri_protocols = gst_uri_handler_get_protocols (GST_URI_HANDLER (element));
|
|
|
|
|
|
|
|
n_print ("\n");
|
|
|
|
n_print ("URI handling capabilities:\n");
|
|
|
|
n_print (" Element can act as %s.\n", uri_type);
|
|
|
|
|
|
|
|
if (uri_protocols && *uri_protocols) {
|
|
|
|
n_print (" Supported URI protocols:\n");
|
|
|
|
for (; *uri_protocols != NULL; uri_protocols++)
|
|
|
|
n_print (" %s\n", *uri_protocols);
|
|
|
|
} else {
|
|
|
|
n_print (" No supported URI protocols\n");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
n_print ("Element has no URI handling capabilities.\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
static void
|
|
|
|
print_pad_info (GstElement * element)
|
|
|
|
{
|
|
|
|
const GList *pads;
|
|
|
|
GstPad *pad;
|
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("\n");
|
|
|
|
n_print ("Pads:\n");
|
Updates, it prints a lot more stuff now, like padtemplates, caps/props, and arguments. More stuff can be done, but n...
Original commit message from CVS:
Updates, it prints a lot more stuff now, like padtemplates, caps/props,
and arguments. More stuff can be done, but not now, I must sleep.
2001-01-03 08:48:36 +00:00
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
if (!element->numpads) {
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" none\n");
|
2004-05-23 17:52:54 +00:00
|
|
|
return;
|
|
|
|
}
|
2002-07-24 21:13:30 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
pads = element->pads;
|
2004-05-23 17:52:54 +00:00
|
|
|
while (pads) {
|
2008-02-02 06:48:37 +00:00
|
|
|
gchar *name;
|
2011-05-09 08:54:10 +00:00
|
|
|
GstCaps *caps;
|
2008-02-02 06:48:37 +00:00
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
pad = GST_PAD (pads->data);
|
|
|
|
pads = g_list_next (pads);
|
2002-07-24 21:13:30 +00:00
|
|
|
|
2008-02-02 06:48:37 +00:00
|
|
|
name = gst_pad_get_name (pad);
|
gst/gstutils.c: RPAD fixes all around.
Original commit message from CVS:
2005-06-08 Andy Wingo <wingo@pobox.com>
* gst/gstutils.c: RPAD fixes all around.
(gst_element_link_pads): Refcounting fixes.
* tools/gst-inspect.c:
* tools/gst-xmlinspect.c:
* parse/grammar.y:
* gst/base/gsttypefindhelper.c:
* gst/base/gstbasesink.c:
* gst/gstqueue.c: RPAD fixes.
* gst/gstghostpad.h:
* gst/gstghostpad.c: New ghost pad implementation as full proxy
pads. The tricky thing is they provide both source and sink
interfaces, since they proxy the internal pad for the external
pad, and vice versa. Implement with lower-level ProxyPad objects,
with the interior proxy pad as a child of the exterior ghost pad.
Should write a doc on this.
* gst/gstpad.h: s/RPAD/PAD/, s/RealPad/Pad/.
(gst_pad_set_name, gst_pad_set_parent): Macros removed, use
gst_object API.
* gst/gstpad.c: Big changes. No more stub base GstPad, now all
pads are real pads. No ghost pads in this file. Not documenting
the myriad s/RPAD/PAD/ and REALIZE fixes.
(gst_pad_class_init): Add properties for "direction" and
"template". Both are construct-only, so they can't change during
the life of the pad. Fixes properly deriving from GstPad.
(gst_pad_custom_new, gst_pad_custom_new_from_template): Gone. For
derived objects, just set properties when creating the objects via
g_object_new.
(gst_pad_get_parent): Implement as a function, return NULL if the
parent is not an element.
(gst_pad_get_real_parent, gst_pad_add_ghost_pad)
(gst_pad_remove_ghost_pad, gst_pad_realize): Removed.
* gst/gstobject.c (gst_object_class_init): Make name a construct
property. Don't set it in the object init.
* gst/gstelement.c (gst_element_add_pad): Don't allow adding pads
with UNKNOWN direction.
(gst_element_add_ghost_pad): Remove non-orthogonal API. Replace
with gst_element_add_pad (e, gst_ghost_pad_new (name, pad)).
(gst_element_remove_pad): Remove ghost-pad special cases.
(gst_element_pads_activate): Remove rpad cruft.
* gst/gstbin.c (gst_bin_change_state): Use gst_pad_get_parent to
catch the pad's-parent-not-an-element case.
* gst/gst.h: Include gstghostpad.h.
* gst/gst.c (init_post): No more real, ghost pads.
* gst/Makefile.am: Add gstghostpad.[ch].
* check/Makefile.am:
* check/gst/gstbin.c:
* check/gst/gstghostpad.c (test_ghost_pads): Check that linking
into a bin creates ghost pads, and that the refcounts are right.
Partly moved from gstbin.c.
2005-06-08 22:16:27 +00:00
|
|
|
if (gst_pad_get_direction (pad) == GST_PAD_SRC)
|
2015-01-04 21:51:09 +00:00
|
|
|
n_print (" SRC: '%s'\n", name);
|
gst/gstutils.c: RPAD fixes all around.
Original commit message from CVS:
2005-06-08 Andy Wingo <wingo@pobox.com>
* gst/gstutils.c: RPAD fixes all around.
(gst_element_link_pads): Refcounting fixes.
* tools/gst-inspect.c:
* tools/gst-xmlinspect.c:
* parse/grammar.y:
* gst/base/gsttypefindhelper.c:
* gst/base/gstbasesink.c:
* gst/gstqueue.c: RPAD fixes.
* gst/gstghostpad.h:
* gst/gstghostpad.c: New ghost pad implementation as full proxy
pads. The tricky thing is they provide both source and sink
interfaces, since they proxy the internal pad for the external
pad, and vice versa. Implement with lower-level ProxyPad objects,
with the interior proxy pad as a child of the exterior ghost pad.
Should write a doc on this.
* gst/gstpad.h: s/RPAD/PAD/, s/RealPad/Pad/.
(gst_pad_set_name, gst_pad_set_parent): Macros removed, use
gst_object API.
* gst/gstpad.c: Big changes. No more stub base GstPad, now all
pads are real pads. No ghost pads in this file. Not documenting
the myriad s/RPAD/PAD/ and REALIZE fixes.
(gst_pad_class_init): Add properties for "direction" and
"template". Both are construct-only, so they can't change during
the life of the pad. Fixes properly deriving from GstPad.
(gst_pad_custom_new, gst_pad_custom_new_from_template): Gone. For
derived objects, just set properties when creating the objects via
g_object_new.
(gst_pad_get_parent): Implement as a function, return NULL if the
parent is not an element.
(gst_pad_get_real_parent, gst_pad_add_ghost_pad)
(gst_pad_remove_ghost_pad, gst_pad_realize): Removed.
* gst/gstobject.c (gst_object_class_init): Make name a construct
property. Don't set it in the object init.
* gst/gstelement.c (gst_element_add_pad): Don't allow adding pads
with UNKNOWN direction.
(gst_element_add_ghost_pad): Remove non-orthogonal API. Replace
with gst_element_add_pad (e, gst_ghost_pad_new (name, pad)).
(gst_element_remove_pad): Remove ghost-pad special cases.
(gst_element_pads_activate): Remove rpad cruft.
* gst/gstbin.c (gst_bin_change_state): Use gst_pad_get_parent to
catch the pad's-parent-not-an-element case.
* gst/gst.h: Include gstghostpad.h.
* gst/gst.c (init_post): No more real, ghost pads.
* gst/Makefile.am: Add gstghostpad.[ch].
* check/Makefile.am:
* check/gst/gstbin.c:
* check/gst/gstghostpad.c (test_ghost_pads): Check that linking
into a bin creates ghost pads, and that the refcounts are right.
Partly moved from gstbin.c.
2005-06-08 22:16:27 +00:00
|
|
|
else if (gst_pad_get_direction (pad) == GST_PAD_SINK)
|
2015-01-04 21:51:09 +00:00
|
|
|
n_print (" SINK: '%s'\n", name);
|
2004-05-23 17:52:54 +00:00
|
|
|
else
|
2015-01-04 21:51:09 +00:00
|
|
|
n_print (" UNKNOWN!!!: '%s'\n", name);
|
2008-02-02 06:48:37 +00:00
|
|
|
|
|
|
|
g_free (name);
|
Updates, it prints a lot more stuff now, like padtemplates, caps/props, and arguments. More stuff can be done, but n...
Original commit message from CVS:
Updates, it prints a lot more stuff now, like padtemplates, caps/props,
and arguments. More stuff can be done, but not now, I must sleep.
2001-01-03 08:48:36 +00:00
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
if (pad->padtemplate)
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" Pad Template: '%s'\n", pad->padtemplate->name_template);
|
2004-05-23 17:52:54 +00:00
|
|
|
|
2011-05-09 08:54:10 +00:00
|
|
|
caps = gst_pad_get_current_caps (pad);
|
|
|
|
if (caps) {
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" Capabilities:\n");
|
2011-05-09 08:54:10 +00:00
|
|
|
print_caps (caps, " ");
|
|
|
|
gst_caps_unref (caps);
|
2004-05-23 17:52:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-28 14:56:23 +00:00
|
|
|
static gboolean
|
|
|
|
has_sometimes_template (GstElement * element)
|
2004-05-23 17:52:54 +00:00
|
|
|
{
|
2011-02-28 14:56:23 +00:00
|
|
|
GstElementClass *klass = GST_ELEMENT_GET_CLASS (element);
|
|
|
|
GList *l;
|
|
|
|
|
|
|
|
for (l = klass->padtemplates; l != NULL; l = l->next) {
|
|
|
|
if (GST_PAD_TEMPLATE (l->data)->presence == GST_PAD_SOMETIMES)
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
2004-05-23 17:52:54 +00:00
|
|
|
}
|
|
|
|
|
2016-09-04 19:39:31 +00:00
|
|
|
static gboolean
|
|
|
|
gtype_needs_ptr_marker (GType type)
|
|
|
|
{
|
|
|
|
if (type == G_TYPE_POINTER)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (G_TYPE_FUNDAMENTAL (type) == G_TYPE_POINTER || G_TYPE_IS_BOXED (type)
|
|
|
|
|| G_TYPE_IS_OBJECT (type))
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
static void
|
|
|
|
print_signal_info (GstElement * element)
|
|
|
|
{
|
2003-03-16 20:06:02 +00:00
|
|
|
/* Signals/Actions Block */
|
2004-05-23 17:52:54 +00:00
|
|
|
guint *signals;
|
|
|
|
guint nsignals;
|
|
|
|
gint i = 0, j, k;
|
|
|
|
GSignalQuery *query = NULL;
|
|
|
|
GType type;
|
|
|
|
GSList *found_signals, *l;
|
|
|
|
|
|
|
|
for (k = 0; k < 2; k++) {
|
|
|
|
found_signals = NULL;
|
2011-02-28 14:56:23 +00:00
|
|
|
|
|
|
|
/* For elements that have sometimes pads, also list a few useful GstElement
|
|
|
|
* signals. Put these first, so element-specific ones come later. */
|
|
|
|
if (k == 0 && has_sometimes_template (element)) {
|
|
|
|
query = g_new0 (GSignalQuery, 1);
|
|
|
|
g_signal_query (g_signal_lookup ("pad-added", GST_TYPE_ELEMENT), query);
|
|
|
|
found_signals = g_slist_append (found_signals, query);
|
|
|
|
query = g_new0 (GSignalQuery, 1);
|
|
|
|
g_signal_query (g_signal_lookup ("pad-removed", GST_TYPE_ELEMENT), query);
|
|
|
|
found_signals = g_slist_append (found_signals, query);
|
|
|
|
query = g_new0 (GSignalQuery, 1);
|
|
|
|
g_signal_query (g_signal_lookup ("no-more-pads", GST_TYPE_ELEMENT),
|
|
|
|
query);
|
|
|
|
found_signals = g_slist_append (found_signals, query);
|
|
|
|
}
|
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
for (type = G_OBJECT_TYPE (element); type; type = g_type_parent (type)) {
|
|
|
|
if (type == GST_TYPE_ELEMENT || type == GST_TYPE_OBJECT)
|
|
|
|
break;
|
2003-03-16 20:06:02 +00:00
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
if (type == GST_TYPE_BIN && G_OBJECT_TYPE (element) != GST_TYPE_BIN)
|
|
|
|
continue;
|
2002-07-24 21:13:30 +00:00
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
signals = g_signal_list_ids (type, &nsignals);
|
|
|
|
for (i = 0; i < nsignals; i++) {
|
|
|
|
query = g_new0 (GSignalQuery, 1);
|
|
|
|
g_signal_query (signals[i], query);
|
|
|
|
|
|
|
|
if ((k == 0 && !(query->signal_flags & G_SIGNAL_ACTION)) ||
|
|
|
|
(k == 1 && (query->signal_flags & G_SIGNAL_ACTION)))
|
|
|
|
found_signals = g_slist_append (found_signals, query);
|
2008-02-02 06:48:37 +00:00
|
|
|
else
|
|
|
|
g_free (query);
|
2004-05-23 17:52:54 +00:00
|
|
|
}
|
2008-02-02 06:48:37 +00:00
|
|
|
g_free (signals);
|
|
|
|
signals = NULL;
|
2004-05-23 17:52:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (found_signals) {
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("\n");
|
2002-07-24 21:13:30 +00:00
|
|
|
if (k == 0)
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("Element Signals:\n");
|
2002-07-24 21:13:30 +00:00
|
|
|
else
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("Element Actions:\n");
|
2004-05-23 17:52:54 +00:00
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
2001-01-03 07:38:45 +00:00
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
for (l = found_signals; l; l = l->next) {
|
|
|
|
gchar *indent;
|
2013-04-11 12:54:32 +00:00
|
|
|
const gchar *pmark;
|
2004-05-23 17:52:54 +00:00
|
|
|
int indent_len;
|
2004-03-15 19:27:17 +00:00
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
query = (GSignalQuery *) l->data;
|
|
|
|
indent_len = strlen (query->signal_name) +
|
|
|
|
strlen (g_type_name (query->return_type)) + 24;
|
2004-03-15 19:27:17 +00:00
|
|
|
|
2016-09-04 19:39:31 +00:00
|
|
|
if (gtype_needs_ptr_marker (query->return_type)) {
|
2013-04-11 12:54:32 +00:00
|
|
|
pmark = "* ";
|
|
|
|
indent_len += 2;
|
|
|
|
} else {
|
|
|
|
pmark = "";
|
|
|
|
}
|
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
indent = g_new0 (gchar, indent_len + 1);
|
|
|
|
memset (indent, ' ', indent_len);
|
2004-03-15 19:27:17 +00:00
|
|
|
|
2013-04-11 12:54:32 +00:00
|
|
|
n_print (" \"%s\" : %s %suser_function (%s* object",
|
|
|
|
query->signal_name, g_type_name (query->return_type), pmark,
|
|
|
|
g_type_name (type));
|
2004-03-15 19:27:17 +00:00
|
|
|
|
2004-10-22 20:11:43 +00:00
|
|
|
for (j = 0; j < query->n_params; j++) {
|
2016-09-04 19:39:31 +00:00
|
|
|
const gchar *type_name, *asterisk;
|
|
|
|
|
|
|
|
type_name = g_type_name (query->param_types[j]);
|
|
|
|
asterisk = gtype_needs_ptr_marker (query->param_types[j]) ? "*" : "";
|
|
|
|
|
2012-04-16 21:14:02 +00:00
|
|
|
g_print (",\n");
|
2016-09-04 19:39:31 +00:00
|
|
|
n_print ("%s%s%s arg%d", indent, type_name, asterisk, j);
|
2004-10-22 20:11:43 +00:00
|
|
|
}
|
2004-03-15 19:27:17 +00:00
|
|
|
|
2007-10-15 07:11:04 +00:00
|
|
|
if (k == 0) {
|
2012-04-16 21:14:02 +00:00
|
|
|
g_print (",\n");
|
|
|
|
n_print ("%sgpointer user_data);\n", indent);
|
2007-10-15 07:11:04 +00:00
|
|
|
} else
|
2004-05-23 17:52:54 +00:00
|
|
|
g_print (");\n");
|
2004-03-15 19:27:17 +00:00
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
g_free (indent);
|
|
|
|
}
|
2004-03-15 19:27:17 +00:00
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
if (found_signals) {
|
|
|
|
g_slist_foreach (found_signals, (GFunc) g_free, NULL);
|
|
|
|
g_slist_free (found_signals);
|
2001-07-25 21:40:42 +00:00
|
|
|
}
|
|
|
|
}
|
2004-05-23 17:52:54 +00:00
|
|
|
}
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
static void
|
|
|
|
print_children_info (GstElement * element)
|
|
|
|
{
|
|
|
|
GList *children;
|
|
|
|
|
|
|
|
if (!GST_IS_BIN (element))
|
|
|
|
return;
|
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
children = (GList *) GST_BIN (element)->children;
|
2004-06-14 11:04:06 +00:00
|
|
|
if (children) {
|
|
|
|
n_print ("\n");
|
2012-04-16 21:14:17 +00:00
|
|
|
n_print ("Children:\n");
|
2004-06-14 11:04:06 +00:00
|
|
|
}
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
while (children) {
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" %s\n", GST_ELEMENT_NAME (GST_ELEMENT (children->data)));
|
2004-05-23 17:52:54 +00:00
|
|
|
children = g_list_next (children);
|
|
|
|
}
|
2001-01-03 07:38:45 +00:00
|
|
|
}
|
2001-01-04 10:47:39 +00:00
|
|
|
|
2014-12-15 13:03:54 +00:00
|
|
|
static void
|
|
|
|
print_preset_list (GstElement * element)
|
|
|
|
{
|
|
|
|
gchar **presets, **preset;
|
|
|
|
|
|
|
|
if (!GST_IS_PRESET (element))
|
|
|
|
return;
|
|
|
|
|
|
|
|
presets = gst_preset_get_preset_names (GST_PRESET (element));
|
2015-01-04 22:08:47 +00:00
|
|
|
if (presets && *presets) {
|
2014-12-15 13:03:54 +00:00
|
|
|
n_print ("\n");
|
|
|
|
n_print ("Presets:\n");
|
|
|
|
for (preset = presets; *preset; preset++) {
|
|
|
|
n_print (" \"%s\"\n", *preset);
|
|
|
|
}
|
|
|
|
g_strfreev (presets);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-23 21:15:43 +00:00
|
|
|
static void
|
2010-03-03 09:26:14 +00:00
|
|
|
print_blacklist (void)
|
2009-01-23 21:15:43 +00:00
|
|
|
{
|
|
|
|
GList *plugins, *cur;
|
|
|
|
gint count = 0;
|
|
|
|
|
|
|
|
g_print ("%s\n", _("Blacklisted files:"));
|
|
|
|
|
2012-01-02 02:22:51 +00:00
|
|
|
plugins = gst_registry_get_plugin_list (gst_registry_get ());
|
2009-01-23 21:15:43 +00:00
|
|
|
for (cur = plugins; cur != NULL; cur = g_list_next (cur)) {
|
|
|
|
GstPlugin *plugin = (GstPlugin *) (cur->data);
|
2012-04-29 16:46:32 +00:00
|
|
|
if (GST_OBJECT_FLAG_IS_SET (plugin, GST_PLUGIN_FLAG_BLACKLISTED)) {
|
2012-04-29 15:49:57 +00:00
|
|
|
g_print (" %s\n", gst_plugin_get_name (plugin));
|
2009-01-23 21:15:43 +00:00
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_print ("\n");
|
|
|
|
g_print (_("Total count: "));
|
|
|
|
g_print (ngettext ("%d blacklisted file", "%d blacklisted files", count),
|
|
|
|
count);
|
|
|
|
g_print ("\n");
|
|
|
|
gst_plugin_list_free (plugins);
|
|
|
|
}
|
|
|
|
|
2003-03-16 20:06:02 +00:00
|
|
|
static void
|
2016-12-22 00:58:53 +00:00
|
|
|
print_element_list (gboolean print_all, gchar * ftypes)
|
2001-08-21 20:16:48 +00:00
|
|
|
{
|
2009-01-23 21:15:43 +00:00
|
|
|
int plugincount = 0, featurecount = 0, blacklistcount = 0;
|
2005-09-22 12:05:05 +00:00
|
|
|
GList *plugins, *orig_plugins;
|
2016-12-22 00:58:53 +00:00
|
|
|
gchar **types = NULL;
|
|
|
|
|
|
|
|
if (ftypes) {
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
types = g_strsplit (ftypes, "/", -1);
|
|
|
|
for (i = 0; types[i]; i++)
|
|
|
|
*types[i] = g_ascii_toupper (*types[i]);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2001-01-04 10:47:39 +00:00
|
|
|
|
2012-01-02 02:22:51 +00:00
|
|
|
orig_plugins = plugins = gst_registry_get_plugin_list (gst_registry_get ());
|
2001-01-04 10:47:39 +00:00
|
|
|
while (plugins) {
|
2005-09-22 12:05:05 +00:00
|
|
|
GList *features, *orig_features;
|
2001-08-21 20:16:48 +00:00
|
|
|
GstPlugin *plugin;
|
2003-03-16 20:06:02 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
plugin = (GstPlugin *) (plugins->data);
|
2001-01-04 10:47:39 +00:00
|
|
|
plugins = g_list_next (plugins);
|
2005-10-07 10:32:24 +00:00
|
|
|
plugincount++;
|
2001-01-04 10:47:39 +00:00
|
|
|
|
2012-04-29 16:46:32 +00:00
|
|
|
if (GST_OBJECT_FLAG_IS_SET (plugin, GST_PLUGIN_FLAG_BLACKLISTED)) {
|
2009-01-23 21:15:43 +00:00
|
|
|
blacklistcount++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2005-09-22 12:05:05 +00:00
|
|
|
orig_features = features =
|
2012-01-02 02:22:51 +00:00
|
|
|
gst_registry_get_feature_list_by_plugin (gst_registry_get (),
|
2012-04-29 15:49:57 +00:00
|
|
|
gst_plugin_get_name (plugin));
|
2001-08-21 20:16:48 +00:00
|
|
|
while (features) {
|
|
|
|
GstPluginFeature *feature;
|
2001-01-04 10:47:39 +00:00
|
|
|
|
2009-10-19 11:30:10 +00:00
|
|
|
if (G_UNLIKELY (features->data == NULL))
|
|
|
|
goto next;
|
2001-08-21 20:16:48 +00:00
|
|
|
feature = GST_PLUGIN_FEATURE (features->data);
|
2005-10-07 10:32:24 +00:00
|
|
|
featurecount++;
|
2001-01-04 10:47:39 +00:00
|
|
|
|
2002-04-11 20:35:18 +00:00
|
|
|
if (GST_IS_ELEMENT_FACTORY (feature)) {
|
2016-12-22 00:58:53 +00:00
|
|
|
const gchar *klass;
|
2004-03-15 19:27:17 +00:00
|
|
|
GstElementFactory *factory;
|
2001-08-21 20:16:48 +00:00
|
|
|
|
2004-03-15 19:27:17 +00:00
|
|
|
factory = GST_ELEMENT_FACTORY (feature);
|
2016-12-22 00:58:53 +00:00
|
|
|
if (types) {
|
|
|
|
gint i;
|
|
|
|
gboolean all_found = TRUE;
|
|
|
|
|
|
|
|
klass =
|
|
|
|
gst_element_factory_get_metadata (factory,
|
|
|
|
GST_ELEMENT_METADATA_KLASS);
|
|
|
|
for (i = 0; types[i]; i++) {
|
|
|
|
if (!strstr (klass, types[i])) {
|
|
|
|
all_found = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!all_found)
|
|
|
|
goto next;
|
|
|
|
}
|
2004-06-14 11:04:06 +00:00
|
|
|
if (print_all)
|
2004-06-14 11:28:16 +00:00
|
|
|
print_element_info (factory, TRUE);
|
2004-06-14 11:04:06 +00:00
|
|
|
else
|
2012-04-29 15:49:57 +00:00
|
|
|
g_print ("%s: %s: %s\n", gst_plugin_get_name (plugin),
|
2011-05-24 16:17:24 +00:00
|
|
|
GST_OBJECT_NAME (factory),
|
2012-09-15 16:43:39 +00:00
|
|
|
gst_element_factory_get_metadata (factory,
|
|
|
|
GST_ELEMENT_METADATA_LONGNAME));
|
Remove GST_DISABLE_(ENUMTYPES|INDEX|URI) everywhere.
Original commit message from CVS:
* configure.ac:
* docs/gst/gstreamer-sections.txt:
* docs/gst/gstreamer.types:
* docs/gst/gstreamer.types.in:
* gst/Makefile.am:
* gst/gst.c:
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_index_func):
* gst/gstconfig.h.in:
* gst/gstelement.c: (gst_element_get_index):
* gst/gstregistrybinary.c: (gst_registry_binary_save_feature),
(gst_registry_binary_load_feature),
(gst_registry_binary_read_cache):
* gst/gstregistryxml.c: (load_feature),
(gst_registry_xml_read_cache), (gst_registry_xml_save_feature):
* plugins/Makefile.am:
* tools/gst-indent:
* tools/gst-inspect.c: (print_index_info), (print_element_list),
(print_plugin_features), (print_element_features):
* tools/gst-xmlinspect.c: (print_event_masks),
(print_element_info):
* win32/common/gstconfig.h:
Remove GST_DISABLE_(ENUMTYPES|INDEX|URI) everywhere.
Disabling the indexers and URI handler code will only reduce the
required amount of memory by a very small amount but on the other hand
requires much more maintaince work. Apart from that many places of
code are broken when disabling them.
Disabling the enum types doesn't reduce the required amount of memory
by more than a few bytes and makes it hard to fix bugs like #539772,
i.e. use the enums as GObject properties.
2008-07-31 15:20:32 +00:00
|
|
|
} else if (GST_IS_TYPE_FIND_FACTORY (feature)) {
|
2004-03-15 19:27:17 +00:00
|
|
|
GstTypeFindFactory *factory;
|
2012-05-01 21:28:11 +00:00
|
|
|
const gchar *const *extensions;
|
2004-03-15 19:27:17 +00:00
|
|
|
|
2016-12-22 00:58:53 +00:00
|
|
|
if (types)
|
|
|
|
goto next;
|
2004-03-15 19:27:17 +00:00
|
|
|
factory = GST_TYPE_FIND_FACTORY (feature);
|
2004-06-14 11:04:06 +00:00
|
|
|
if (!print_all)
|
2012-04-29 15:49:57 +00:00
|
|
|
g_print ("%s: %s: ", gst_plugin_get_name (plugin),
|
2004-06-14 11:04:06 +00:00
|
|
|
gst_plugin_feature_get_name (feature));
|
2012-05-01 21:28:11 +00:00
|
|
|
|
|
|
|
extensions = gst_type_find_factory_get_extensions (factory);
|
|
|
|
if (extensions != NULL) {
|
2004-03-15 19:27:17 +00:00
|
|
|
guint i = 0;
|
|
|
|
|
2012-05-01 21:28:11 +00:00
|
|
|
while (extensions[i]) {
|
2004-06-14 11:04:06 +00:00
|
|
|
if (!print_all)
|
2012-05-01 21:28:11 +00:00
|
|
|
g_print ("%s%s", i > 0 ? ", " : "", extensions[i]);
|
2004-03-15 19:27:17 +00:00
|
|
|
i++;
|
|
|
|
}
|
2004-06-14 11:04:06 +00:00
|
|
|
if (!print_all)
|
|
|
|
g_print ("\n");
|
2004-03-15 19:27:17 +00:00
|
|
|
} else {
|
2004-06-14 11:04:06 +00:00
|
|
|
if (!print_all)
|
|
|
|
g_print ("no extensions\n");
|
2004-03-15 19:27:17 +00:00
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
} else {
|
2016-12-22 00:58:53 +00:00
|
|
|
if (types)
|
|
|
|
goto next;
|
2004-06-14 11:04:06 +00:00
|
|
|
if (!print_all)
|
2012-04-29 15:49:57 +00:00
|
|
|
n_print ("%s: %s (%s)\n", gst_plugin_get_name (plugin),
|
2011-05-24 16:17:24 +00:00
|
|
|
GST_OBJECT_NAME (feature), g_type_name (G_OBJECT_TYPE (feature)));
|
2001-08-21 20:16:48 +00:00
|
|
|
}
|
|
|
|
|
2009-10-19 11:30:10 +00:00
|
|
|
next:
|
2001-08-21 20:16:48 +00:00
|
|
|
features = g_list_next (features);
|
|
|
|
}
|
2005-09-22 12:05:05 +00:00
|
|
|
|
|
|
|
gst_plugin_feature_list_free (orig_features);
|
2001-01-04 10:47:39 +00:00
|
|
|
}
|
2005-09-22 12:05:05 +00:00
|
|
|
|
2006-04-04 17:54:30 +00:00
|
|
|
gst_plugin_list_free (orig_plugins);
|
2016-12-22 00:58:53 +00:00
|
|
|
g_strfreev (types);
|
2005-10-07 10:32:24 +00:00
|
|
|
|
2006-05-24 09:00:10 +00:00
|
|
|
g_print ("\n");
|
|
|
|
g_print (_("Total count: "));
|
|
|
|
g_print (ngettext ("%d plugin", "%d plugins", plugincount), plugincount);
|
2009-01-23 21:15:43 +00:00
|
|
|
if (blacklistcount) {
|
|
|
|
g_print (" (");
|
|
|
|
g_print (ngettext ("%d blacklist entry", "%d blacklist entries",
|
|
|
|
blacklistcount), blacklistcount);
|
|
|
|
g_print (" not shown)");
|
|
|
|
}
|
2006-05-24 09:00:10 +00:00
|
|
|
g_print (", ");
|
|
|
|
g_print (ngettext ("%d feature", "%d features", featurecount), featurecount);
|
|
|
|
g_print ("\n");
|
2001-01-04 10:47:39 +00:00
|
|
|
}
|
|
|
|
|
2008-11-17 15:48:14 +00:00
|
|
|
static void
|
|
|
|
print_all_uri_handlers (void)
|
|
|
|
{
|
|
|
|
GList *plugins, *p, *features, *f;
|
|
|
|
|
2012-01-02 02:22:51 +00:00
|
|
|
plugins = gst_registry_get_plugin_list (gst_registry_get ());
|
2008-11-17 15:48:14 +00:00
|
|
|
|
|
|
|
for (p = plugins; p; p = p->next) {
|
|
|
|
GstPlugin *plugin = (GstPlugin *) (p->data);
|
|
|
|
|
|
|
|
features =
|
2012-01-02 02:22:51 +00:00
|
|
|
gst_registry_get_feature_list_by_plugin (gst_registry_get (),
|
2012-04-29 15:49:57 +00:00
|
|
|
gst_plugin_get_name (plugin));
|
2008-11-17 15:48:14 +00:00
|
|
|
|
|
|
|
for (f = features; f; f = f->next) {
|
2009-02-23 14:24:00 +00:00
|
|
|
GstPluginFeature *feature = GST_PLUGIN_FEATURE (f->data);
|
2008-11-17 15:48:14 +00:00
|
|
|
|
|
|
|
if (GST_IS_ELEMENT_FACTORY (feature)) {
|
|
|
|
GstElementFactory *factory;
|
|
|
|
GstElement *element;
|
|
|
|
|
|
|
|
factory = GST_ELEMENT_FACTORY (gst_plugin_feature_load (feature));
|
|
|
|
if (!factory) {
|
2012-04-29 15:49:57 +00:00
|
|
|
g_print ("element plugin %s couldn't be loaded\n",
|
|
|
|
gst_plugin_get_name (plugin));
|
2008-11-17 15:48:14 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
element = gst_element_factory_create (factory, NULL);
|
|
|
|
if (!element) {
|
|
|
|
g_print ("couldn't construct element for %s for some reason\n",
|
|
|
|
GST_OBJECT_NAME (factory));
|
2012-01-27 18:00:03 +00:00
|
|
|
gst_object_unref (factory);
|
2008-11-17 15:48:14 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GST_IS_URI_HANDLER (element)) {
|
2011-11-13 23:25:23 +00:00
|
|
|
const gchar *const *uri_protocols;
|
2008-11-17 15:48:14 +00:00
|
|
|
const gchar *dir;
|
2011-11-13 23:25:23 +00:00
|
|
|
gchar *joined;
|
2008-11-17 15:48:14 +00:00
|
|
|
|
|
|
|
switch (gst_uri_handler_get_uri_type (GST_URI_HANDLER (element))) {
|
|
|
|
case GST_URI_SRC:
|
|
|
|
dir = "read";
|
|
|
|
break;
|
|
|
|
case GST_URI_SINK:
|
|
|
|
dir = "write";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
dir = "unknown";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
uri_protocols =
|
|
|
|
gst_uri_handler_get_protocols (GST_URI_HANDLER (element));
|
2011-11-13 23:25:23 +00:00
|
|
|
joined = g_strjoinv (", ", (gchar **) uri_protocols);
|
2008-11-17 15:48:14 +00:00
|
|
|
|
2010-10-15 17:45:14 +00:00
|
|
|
g_print ("%s (%s, rank %u): %s\n",
|
|
|
|
gst_plugin_feature_get_name (GST_PLUGIN_FEATURE (factory)), dir,
|
2008-11-17 15:48:14 +00:00
|
|
|
gst_plugin_feature_get_rank (GST_PLUGIN_FEATURE (factory)),
|
|
|
|
joined);
|
|
|
|
|
|
|
|
g_free (joined);
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_object_unref (element);
|
2012-01-27 18:00:03 +00:00
|
|
|
gst_object_unref (factory);
|
2008-11-17 15:48:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_plugin_feature_list_free (features);
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_plugin_list_free (plugins);
|
|
|
|
}
|
|
|
|
|
2001-08-21 20:16:48 +00:00
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
print_plugin_info (GstPlugin * plugin)
|
2001-03-07 21:52:56 +00:00
|
|
|
{
|
2012-04-29 15:49:57 +00:00
|
|
|
const gchar *release_date = gst_plugin_get_release_date_string (plugin);
|
|
|
|
const gchar *filename = gst_plugin_get_filename (plugin);
|
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("Plugin Details:\n");
|
2012-11-06 17:03:47 +00:00
|
|
|
n_print (" %-25s%s\n", "Name", gst_plugin_get_name (plugin));
|
|
|
|
n_print (" %-25s%s\n", "Description", gst_plugin_get_description (plugin));
|
|
|
|
n_print (" %-25s%s\n", "Filename", (filename != NULL) ? filename : "(null)");
|
|
|
|
n_print (" %-25s%s\n", "Version", gst_plugin_get_version (plugin));
|
|
|
|
n_print (" %-25s%s\n", "License", gst_plugin_get_license (plugin));
|
|
|
|
n_print (" %-25s%s\n", "Source module", gst_plugin_get_source (plugin));
|
2012-04-29 15:49:57 +00:00
|
|
|
|
|
|
|
if (release_date != NULL) {
|
2010-07-23 19:46:10 +00:00
|
|
|
const gchar *tz = "(UTC)";
|
|
|
|
gchar *str, *sep;
|
|
|
|
|
|
|
|
/* may be: YYYY-MM-DD or YYYY-MM-DDTHH:MMZ */
|
|
|
|
/* YYYY-MM-DDTHH:MMZ => YYYY-MM-DD HH:MM (UTC) */
|
2012-04-29 15:49:57 +00:00
|
|
|
str = g_strdup (release_date);
|
2010-07-23 19:46:10 +00:00
|
|
|
sep = strstr (str, "T");
|
|
|
|
if (sep != NULL) {
|
|
|
|
*sep = ' ';
|
|
|
|
sep = strstr (sep + 1, "Z");
|
|
|
|
if (sep != NULL)
|
|
|
|
*sep = ' ';
|
|
|
|
} else {
|
|
|
|
tz = "";
|
|
|
|
}
|
2012-11-06 17:03:47 +00:00
|
|
|
n_print (" %-25s%s%s\n", "Source release date", str, tz);
|
2010-07-23 19:46:10 +00:00
|
|
|
g_free (str);
|
|
|
|
}
|
2012-11-06 17:03:47 +00:00
|
|
|
n_print (" %-25s%s\n", "Binary package", gst_plugin_get_package (plugin));
|
|
|
|
n_print (" %-25s%s\n", "Origin URL", gst_plugin_get_origin (plugin));
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("\n");
|
2004-08-12 11:50:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
print_plugin_features (GstPlugin * plugin)
|
|
|
|
{
|
2011-10-14 07:27:38 +00:00
|
|
|
GList *features, *origlist;
|
2004-08-12 11:50:31 +00:00
|
|
|
gint num_features = 0;
|
|
|
|
gint num_elements = 0;
|
2013-10-26 20:05:13 +00:00
|
|
|
gint num_tracers = 0;
|
2009-07-10 18:27:21 +00:00
|
|
|
gint num_typefinders = 0;
|
2014-06-26 18:28:09 +00:00
|
|
|
gint num_devproviders = 0;
|
2004-08-12 11:50:31 +00:00
|
|
|
gint num_other = 0;
|
2001-01-04 10:47:39 +00:00
|
|
|
|
2011-10-14 07:27:38 +00:00
|
|
|
origlist = features =
|
2012-01-02 02:22:51 +00:00
|
|
|
gst_registry_get_feature_list_by_plugin (gst_registry_get (),
|
2012-04-29 15:49:57 +00:00
|
|
|
gst_plugin_get_name (plugin));
|
2001-01-04 10:47:39 +00:00
|
|
|
|
2001-08-21 20:16:48 +00:00
|
|
|
while (features) {
|
|
|
|
GstPluginFeature *feature;
|
2001-03-07 21:52:56 +00:00
|
|
|
|
2001-08-21 20:16:48 +00:00
|
|
|
feature = GST_PLUGIN_FEATURE (features->data);
|
2001-03-07 21:52:56 +00:00
|
|
|
|
2002-04-11 20:35:18 +00:00
|
|
|
if (GST_IS_ELEMENT_FACTORY (feature)) {
|
2001-08-21 20:16:48 +00:00
|
|
|
GstElementFactory *factory;
|
2001-03-07 21:52:56 +00:00
|
|
|
|
2002-04-11 20:35:18 +00:00
|
|
|
factory = GST_ELEMENT_FACTORY (feature);
|
2011-05-24 16:17:24 +00:00
|
|
|
n_print (" %s: %s\n", GST_OBJECT_NAME (factory),
|
2012-09-15 16:43:39 +00:00
|
|
|
gst_element_factory_get_metadata (factory,
|
|
|
|
GST_ELEMENT_METADATA_LONGNAME));
|
2002-11-27 20:47:39 +00:00
|
|
|
num_elements++;
|
Remove GST_DISABLE_(ENUMTYPES|INDEX|URI) everywhere.
Original commit message from CVS:
* configure.ac:
* docs/gst/gstreamer-sections.txt:
* docs/gst/gstreamer.types:
* docs/gst/gstreamer.types.in:
* gst/Makefile.am:
* gst/gst.c:
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_index_func):
* gst/gstconfig.h.in:
* gst/gstelement.c: (gst_element_get_index):
* gst/gstregistrybinary.c: (gst_registry_binary_save_feature),
(gst_registry_binary_load_feature),
(gst_registry_binary_read_cache):
* gst/gstregistryxml.c: (load_feature),
(gst_registry_xml_read_cache), (gst_registry_xml_save_feature):
* plugins/Makefile.am:
* tools/gst-indent:
* tools/gst-inspect.c: (print_index_info), (print_element_list),
(print_plugin_features), (print_element_features):
* tools/gst-xmlinspect.c: (print_event_masks),
(print_element_info):
* win32/common/gstconfig.h:
Remove GST_DISABLE_(ENUMTYPES|INDEX|URI) everywhere.
Disabling the indexers and URI handler code will only reduce the
required amount of memory by a very small amount but on the other hand
requires much more maintaince work. Apart from that many places of
code are broken when disabling them.
Disabling the enum types doesn't reduce the required amount of memory
by more than a few bytes and makes it hard to fix bugs like #539772,
i.e. use the enums as GObject properties.
2008-07-31 15:20:32 +00:00
|
|
|
} else if (GST_IS_TYPE_FIND_FACTORY (feature)) {
|
2003-10-28 20:25:30 +00:00
|
|
|
GstTypeFindFactory *factory;
|
2012-05-01 21:28:11 +00:00
|
|
|
const gchar *const *extensions;
|
2003-10-28 20:25:30 +00:00
|
|
|
|
|
|
|
factory = GST_TYPE_FIND_FACTORY (feature);
|
2012-05-01 21:28:11 +00:00
|
|
|
extensions = gst_type_find_factory_get_extensions (factory);
|
|
|
|
if (extensions) {
|
2004-03-15 19:27:17 +00:00
|
|
|
guint i = 0;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2012-11-12 09:30:08 +00:00
|
|
|
g_print (" %s: %s: ", gst_plugin_get_name (plugin),
|
2007-07-23 13:03:43 +00:00
|
|
|
gst_plugin_feature_get_name (feature));
|
2012-05-01 21:28:11 +00:00
|
|
|
while (extensions[i]) {
|
|
|
|
g_print ("%s%s", i > 0 ? ", " : "", extensions[i]);
|
2004-03-15 19:27:17 +00:00
|
|
|
i++;
|
|
|
|
}
|
2004-10-19 09:33:58 +00:00
|
|
|
g_print ("\n");
|
2003-10-28 20:25:30 +00:00
|
|
|
} else
|
2012-11-12 09:30:08 +00:00
|
|
|
g_print (" %s: %s: no extensions\n", gst_plugin_get_name (plugin),
|
2007-07-23 13:03:43 +00:00
|
|
|
gst_plugin_feature_get_name (feature));
|
2001-08-21 20:16:48 +00:00
|
|
|
|
2009-07-10 18:27:21 +00:00
|
|
|
num_typefinders++;
|
2014-06-26 18:28:09 +00:00
|
|
|
} else if (GST_IS_DEVICE_PROVIDER_FACTORY (feature)) {
|
|
|
|
GstDeviceProviderFactory *factory;
|
2014-03-17 00:50:53 +00:00
|
|
|
|
2014-06-26 18:28:09 +00:00
|
|
|
factory = GST_DEVICE_PROVIDER_FACTORY (feature);
|
2014-03-17 00:50:53 +00:00
|
|
|
n_print (" %s: %s\n", GST_OBJECT_NAME (factory),
|
2014-06-26 18:28:09 +00:00
|
|
|
gst_device_provider_factory_get_metadata (factory,
|
2014-03-17 00:50:53 +00:00
|
|
|
GST_ELEMENT_METADATA_LONGNAME));
|
2014-06-26 18:28:09 +00:00
|
|
|
num_devproviders++;
|
2013-10-26 20:05:13 +00:00
|
|
|
} else if (GST_IS_TRACER_FACTORY (feature)) {
|
|
|
|
n_print (" %s (%s)\n", gst_object_get_name (GST_OBJECT (feature)),
|
|
|
|
g_type_name (G_OBJECT_TYPE (feature)));
|
|
|
|
num_tracers++;
|
2009-10-19 11:30:10 +00:00
|
|
|
} else if (feature) {
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" %s (%s)\n", gst_object_get_name (GST_OBJECT (feature)),
|
2004-03-15 19:27:17 +00:00
|
|
|
g_type_name (G_OBJECT_TYPE (feature)));
|
2002-11-27 20:47:39 +00:00
|
|
|
num_other++;
|
2001-08-21 20:16:48 +00:00
|
|
|
}
|
2002-11-27 20:47:39 +00:00
|
|
|
num_features++;
|
2001-08-21 20:16:48 +00:00
|
|
|
features = g_list_next (features);
|
2001-03-07 21:52:56 +00:00
|
|
|
}
|
2011-10-14 07:27:38 +00:00
|
|
|
|
|
|
|
gst_plugin_feature_list_free (origlist);
|
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("\n");
|
|
|
|
n_print (" %d features:\n", num_features);
|
2002-11-27 20:47:39 +00:00
|
|
|
if (num_elements > 0)
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" +-- %d elements\n", num_elements);
|
2009-07-10 18:27:21 +00:00
|
|
|
if (num_typefinders > 0)
|
|
|
|
n_print (" +-- %d typefinders\n", num_typefinders);
|
2014-06-26 18:28:09 +00:00
|
|
|
if (num_devproviders > 0)
|
|
|
|
n_print (" +-- %d device providers\n", num_devproviders);
|
2013-10-26 20:05:13 +00:00
|
|
|
if (num_tracers > 0)
|
|
|
|
n_print (" +-- %d tracers\n", num_tracers);
|
2002-11-27 20:47:39 +00:00
|
|
|
if (num_other > 0)
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print (" +-- %d other objects\n", num_other);
|
2003-03-16 20:06:02 +00:00
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("\n");
|
2001-01-04 10:47:39 +00:00
|
|
|
}
|
|
|
|
|
2004-05-23 17:52:54 +00:00
|
|
|
static int
|
|
|
|
print_element_features (const gchar * element_name)
|
|
|
|
{
|
|
|
|
GstPluginFeature *feature;
|
|
|
|
|
|
|
|
/* FIXME implement other pretty print function for these */
|
2012-01-02 02:22:51 +00:00
|
|
|
feature = gst_registry_find_feature (gst_registry_get (), element_name,
|
2004-05-23 17:52:54 +00:00
|
|
|
GST_TYPE_TYPE_FIND_FACTORY);
|
|
|
|
if (feature) {
|
2004-06-14 11:04:06 +00:00
|
|
|
n_print ("%s: a typefind function\n", element_name);
|
2004-05-23 17:52:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2013-10-26 20:05:13 +00:00
|
|
|
feature = gst_registry_find_feature (gst_registry_get (), element_name,
|
|
|
|
GST_TYPE_TRACER_FACTORY);
|
|
|
|
if (feature) {
|
|
|
|
n_print ("%s: a tracer module\n", element_name);
|
|
|
|
return 0;
|
|
|
|
}
|
2004-05-23 18:41:25 +00:00
|
|
|
|
|
|
|
return -1;
|
2004-05-23 17:52:54 +00:00
|
|
|
}
|
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
static int
|
|
|
|
print_element_info (GstElementFactory * factory, gboolean print_names)
|
|
|
|
{
|
|
|
|
GstElement *element;
|
2012-05-19 16:23:43 +00:00
|
|
|
GstPlugin *plugin;
|
2004-06-14 11:04:06 +00:00
|
|
|
gint maxlevel = 0;
|
|
|
|
|
2005-09-15 00:13:26 +00:00
|
|
|
factory =
|
|
|
|
GST_ELEMENT_FACTORY (gst_plugin_feature_load (GST_PLUGIN_FEATURE
|
|
|
|
(factory)));
|
|
|
|
|
2005-10-04 11:10:04 +00:00
|
|
|
if (!factory) {
|
|
|
|
g_print ("element plugin couldn't be loaded\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2004-06-14 11:04:06 +00:00
|
|
|
element = gst_element_factory_create (factory, NULL);
|
|
|
|
if (!element) {
|
2012-01-13 10:43:12 +00:00
|
|
|
gst_object_unref (factory);
|
2004-06-14 11:04:06 +00:00
|
|
|
g_print ("couldn't construct element for some reason\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (print_names)
|
2011-05-24 16:17:24 +00:00
|
|
|
_name = g_strdup_printf ("%s: ", GST_OBJECT_NAME (factory));
|
2004-06-14 11:04:06 +00:00
|
|
|
else
|
2007-10-15 07:11:04 +00:00
|
|
|
_name = NULL;
|
2004-06-14 11:04:06 +00:00
|
|
|
|
|
|
|
print_factory_details_info (factory);
|
2004-08-12 11:50:31 +00:00
|
|
|
|
2012-05-19 16:23:43 +00:00
|
|
|
plugin = gst_plugin_feature_get_plugin (GST_PLUGIN_FEATURE (factory));
|
|
|
|
if (plugin) {
|
|
|
|
print_plugin_info (plugin);
|
|
|
|
gst_object_unref (plugin);
|
2004-08-12 11:50:31 +00:00
|
|
|
}
|
2004-06-14 11:04:06 +00:00
|
|
|
|
|
|
|
print_hierarchy (G_OBJECT_TYPE (element), 0, &maxlevel);
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
print_interfaces (G_OBJECT_TYPE (element));
|
2004-06-14 11:04:06 +00:00
|
|
|
|
|
|
|
print_pad_templates_info (element, factory);
|
|
|
|
print_element_flag_info (element);
|
|
|
|
print_implementation_info (element);
|
|
|
|
print_clocking_info (element);
|
2008-04-20 09:55:25 +00:00
|
|
|
print_uri_handler_info (element);
|
2004-06-14 11:04:06 +00:00
|
|
|
print_pad_info (element);
|
|
|
|
print_element_properties_info (element);
|
|
|
|
print_signal_info (element);
|
|
|
|
print_children_info (element);
|
2014-12-15 13:03:54 +00:00
|
|
|
print_preset_list (element);
|
2004-06-14 11:04:06 +00:00
|
|
|
|
2008-02-02 06:48:37 +00:00
|
|
|
gst_object_unref (element);
|
2006-12-07 12:11:14 +00:00
|
|
|
gst_object_unref (factory);
|
2007-10-15 14:33:16 +00:00
|
|
|
g_free (_name);
|
2004-06-14 11:04:06 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-01-11 14:16:23 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
|
|
|
|
{
|
|
|
|
GstPadDirection direction;
|
|
|
|
const gchar *type_name;
|
|
|
|
const gchar *klass;
|
|
|
|
const GList *static_templates, *l;
|
|
|
|
GstCaps *caps = NULL;
|
|
|
|
guint i, num;
|
|
|
|
|
2012-09-15 16:43:39 +00:00
|
|
|
klass =
|
|
|
|
gst_element_factory_get_metadata (factory, GST_ELEMENT_METADATA_KLASS);
|
2007-01-11 14:16:23 +00:00
|
|
|
g_return_if_fail (klass != NULL);
|
|
|
|
|
|
|
|
if (strstr (klass, "Demuxer") ||
|
|
|
|
strstr (klass, "Decoder") ||
|
|
|
|
strstr (klass, "Depay") || strstr (klass, "Parser")) {
|
|
|
|
type_name = "decoder";
|
|
|
|
direction = GST_PAD_SINK;
|
|
|
|
} else if (strstr (klass, "Muxer") ||
|
|
|
|
strstr (klass, "Encoder") || strstr (klass, "Pay")) {
|
|
|
|
type_name = "encoder";
|
|
|
|
direction = GST_PAD_SRC;
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* decoder/demuxer sink pads should always be static and there should only
|
|
|
|
* be one, the same applies to encoders/muxers and source pads */
|
|
|
|
static_templates = gst_element_factory_get_static_pad_templates (factory);
|
|
|
|
for (l = static_templates; l != NULL; l = l->next) {
|
|
|
|
GstStaticPadTemplate *tmpl = NULL;
|
|
|
|
|
|
|
|
tmpl = (GstStaticPadTemplate *) l->data;
|
|
|
|
if (tmpl->direction == direction) {
|
|
|
|
caps = gst_static_pad_template_get_caps (tmpl);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (caps == NULL) {
|
|
|
|
g_printerr ("Couldn't find static pad template for %s '%s'\n",
|
2011-05-24 16:17:24 +00:00
|
|
|
type_name, GST_OBJECT_NAME (factory));
|
2007-01-11 14:16:23 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
caps = gst_caps_make_writable (caps);
|
|
|
|
num = gst_caps_get_size (caps);
|
|
|
|
for (i = 0; i < num; ++i) {
|
|
|
|
GstStructure *s;
|
|
|
|
gchar *s_str;
|
|
|
|
|
|
|
|
s = gst_caps_get_structure (caps, i);
|
|
|
|
/* remove fields that are almost always just MIN-MAX of some sort
|
|
|
|
* in order to make the caps look less messy */
|
|
|
|
gst_structure_remove_field (s, "pixel-aspect-ratio");
|
|
|
|
gst_structure_remove_field (s, "framerate");
|
|
|
|
gst_structure_remove_field (s, "channels");
|
|
|
|
gst_structure_remove_field (s, "width");
|
|
|
|
gst_structure_remove_field (s, "height");
|
|
|
|
gst_structure_remove_field (s, "rate");
|
|
|
|
gst_structure_remove_field (s, "depth");
|
|
|
|
gst_structure_remove_field (s, "clock-rate");
|
|
|
|
s_str = gst_structure_to_string (s);
|
|
|
|
g_print ("%s-%s\n", type_name, s_str);
|
|
|
|
g_free (s_str);
|
|
|
|
}
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
|
|
|
|
{
|
2011-11-13 23:25:23 +00:00
|
|
|
const gchar *const *protocols;
|
2007-01-11 14:16:23 +00:00
|
|
|
|
|
|
|
protocols = gst_element_factory_get_uri_protocols (factory);
|
|
|
|
if (protocols != NULL && *protocols != NULL) {
|
|
|
|
switch (gst_element_factory_get_uri_type (factory)) {
|
|
|
|
case GST_URI_SINK:
|
2011-11-13 23:25:23 +00:00
|
|
|
while (*protocols != NULL) {
|
|
|
|
g_print ("urisink-%s\n", *protocols);
|
|
|
|
++protocols;
|
|
|
|
}
|
2007-01-11 14:16:23 +00:00
|
|
|
break;
|
|
|
|
case GST_URI_SRC:
|
2011-11-13 23:25:23 +00:00
|
|
|
while (*protocols != NULL) {
|
|
|
|
g_print ("urisource-%s\n", *protocols);
|
|
|
|
++protocols;
|
|
|
|
}
|
2007-01-11 14:16:23 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
print_plugin_automatic_install_info (GstPlugin * plugin)
|
|
|
|
{
|
|
|
|
GList *features, *l;
|
|
|
|
|
|
|
|
/* not interested in typefind factories, only element factories */
|
2012-01-02 02:22:51 +00:00
|
|
|
features = gst_registry_get_feature_list (gst_registry_get (),
|
2007-01-11 14:16:23 +00:00
|
|
|
GST_TYPE_ELEMENT_FACTORY);
|
|
|
|
|
|
|
|
for (l = features; l != NULL; l = l->next) {
|
|
|
|
GstPluginFeature *feature;
|
2012-05-19 16:23:43 +00:00
|
|
|
GstPlugin *feature_plugin;
|
2007-01-11 14:16:23 +00:00
|
|
|
|
|
|
|
feature = GST_PLUGIN_FEATURE (l->data);
|
|
|
|
|
|
|
|
/* only interested in the ones that are in the plugin we just loaded */
|
2012-05-19 16:23:43 +00:00
|
|
|
feature_plugin = gst_plugin_feature_get_plugin (feature);
|
|
|
|
if (feature_plugin == plugin) {
|
2007-01-11 14:16:23 +00:00
|
|
|
GstElementFactory *factory;
|
|
|
|
|
|
|
|
g_print ("element-%s\n", gst_plugin_feature_get_name (feature));
|
|
|
|
|
|
|
|
factory = GST_ELEMENT_FACTORY (feature);
|
|
|
|
print_plugin_automatic_install_info_protocols (factory);
|
|
|
|
print_plugin_automatic_install_info_codecs (factory);
|
|
|
|
}
|
2012-05-19 16:23:43 +00:00
|
|
|
if (feature_plugin)
|
|
|
|
gst_object_unref (feature_plugin);
|
2007-01-11 14:16:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
g_list_foreach (features, (GFunc) gst_object_unref, NULL);
|
|
|
|
g_list_free (features);
|
|
|
|
}
|
|
|
|
|
2009-11-09 12:55:54 +00:00
|
|
|
static void
|
|
|
|
print_all_plugin_automatic_install_info (void)
|
|
|
|
{
|
|
|
|
GList *plugins, *orig_plugins;
|
|
|
|
|
2012-01-02 02:22:51 +00:00
|
|
|
orig_plugins = plugins = gst_registry_get_plugin_list (gst_registry_get ());
|
2009-11-09 12:55:54 +00:00
|
|
|
while (plugins) {
|
|
|
|
GstPlugin *plugin;
|
|
|
|
|
|
|
|
plugin = (GstPlugin *) (plugins->data);
|
|
|
|
plugins = g_list_next (plugins);
|
|
|
|
|
|
|
|
print_plugin_automatic_install_info (plugin);
|
|
|
|
}
|
|
|
|
gst_plugin_list_free (orig_plugins);
|
|
|
|
}
|
|
|
|
|
2003-03-16 20:06:02 +00:00
|
|
|
int
|
|
|
|
main (int argc, char *argv[])
|
2001-08-21 20:16:48 +00:00
|
|
|
{
|
2005-09-18 07:41:28 +00:00
|
|
|
gboolean print_all = FALSE;
|
2009-01-23 21:15:43 +00:00
|
|
|
gboolean do_print_blacklist = FALSE;
|
2008-11-12 16:55:00 +00:00
|
|
|
gboolean plugin_name = FALSE;
|
2007-01-11 14:16:23 +00:00
|
|
|
gboolean print_aii = FALSE;
|
2008-11-17 15:48:14 +00:00
|
|
|
gboolean uri_handlers = FALSE;
|
2012-09-01 16:47:58 +00:00
|
|
|
gboolean check_exists = FALSE;
|
|
|
|
gchar *min_version = NULL;
|
|
|
|
guint minver_maj = GST_VERSION_MAJOR;
|
|
|
|
guint minver_min = GST_VERSION_MINOR;
|
|
|
|
guint minver_micro = 0;
|
2016-12-22 00:58:53 +00:00
|
|
|
gchar *types = NULL;
|
2009-07-08 13:15:04 +00:00
|
|
|
#ifndef GST_DISABLE_OPTION_PARSING
|
Merged in popt removal + GOption addition patch from Ronald, bug #169772.
Original commit message from CVS:
2005-10-10 Andy Wingo <wingo@pobox.com>
Merged in popt removal + GOption addition patch from Ronald, bug
#169772.
* docs/gst/gstreamer-sections.txt: Add STATE_(UN)LOCK_FULL, move
GstElement macros around, remove popt-related symbols, add goption
stuff.
* configure.ac: Remove popt checks, require GLib 2.6 for GOption.
* docs/gst/Makefile.am:
* docs/libs/Makefile.am: No POPT_CFLAGS.
* examples/manual/Makefile.am:
* docs/manual/basics-init.xml: Doc updates with an example.
* gst/gst.c: (gst_init_get_option_group), (gst_init_check),
(gst_init), (parse_one_option), (parse_goption_arg):
* gst/gst.h: Removed gst_init_with_popt_table and friends. Took a
bit of hand merging and debugging to get the GOption stuff working
tho.
* tests/Makefile.am:
* tools/Makefile.am:
* tools/gst-inspect.c: (main):
* tools/gst-launch.c: (main):
* tools/gst-run.c: (main):
* tools/gst-xmlinspect.c: (main): Thanks Ronald!
2005-10-10 15:53:59 +00:00
|
|
|
GOptionEntry options[] = {
|
|
|
|
{"print-all", 'a', 0, G_OPTION_ARG_NONE, &print_all,
|
2005-09-18 07:41:28 +00:00
|
|
|
N_("Print all elements"), NULL},
|
2009-01-23 21:15:43 +00:00
|
|
|
{"print-blacklist", 'b', 0, G_OPTION_ARG_NONE, &do_print_blacklist,
|
|
|
|
N_("Print list of blacklisted files"), NULL},
|
2007-01-11 14:16:23 +00:00
|
|
|
{"print-plugin-auto-install-info", '\0', 0, G_OPTION_ARG_NONE, &print_aii,
|
|
|
|
N_("Print a machine-parsable list of features the specified plugin "
|
2009-11-09 12:55:54 +00:00
|
|
|
"or all plugins provide.\n "
|
2007-01-11 14:16:23 +00:00
|
|
|
"Useful in connection with external automatic plugin "
|
|
|
|
"installation mechanisms"), NULL},
|
2008-11-12 16:55:00 +00:00
|
|
|
{"plugin", '\0', 0, G_OPTION_ARG_NONE, &plugin_name,
|
|
|
|
N_("List the plugin contents"), NULL},
|
2016-12-22 00:58:53 +00:00
|
|
|
{"types", 't', 0, G_OPTION_ARG_STRING, &types,
|
|
|
|
N_("A slashes ('/') separated list of types of elements (also known "
|
|
|
|
"as klass) to list. (unordered)"), NULL},
|
2012-09-01 16:47:58 +00:00
|
|
|
{"exists", '\0', 0, G_OPTION_ARG_NONE, &check_exists,
|
|
|
|
N_("Check if the specified element or plugin exists"), NULL},
|
|
|
|
{"atleast-version", '\0', 0, G_OPTION_ARG_STRING, &min_version,
|
|
|
|
N_
|
|
|
|
("When checking if an element or plugin exists, also check that its "
|
|
|
|
"version is at least the version specified"), NULL},
|
2008-11-17 15:48:14 +00:00
|
|
|
{"uri-handlers", 'u', 0, G_OPTION_ARG_NONE, &uri_handlers,
|
|
|
|
N_
|
|
|
|
("Print supported URI schemes, with the elements that implement them"),
|
|
|
|
NULL},
|
2006-05-05 17:07:42 +00:00
|
|
|
GST_TOOLS_GOPTION_VERSION,
|
Merged in popt removal + GOption addition patch from Ronald, bug #169772.
Original commit message from CVS:
2005-10-10 Andy Wingo <wingo@pobox.com>
Merged in popt removal + GOption addition patch from Ronald, bug
#169772.
* docs/gst/gstreamer-sections.txt: Add STATE_(UN)LOCK_FULL, move
GstElement macros around, remove popt-related symbols, add goption
stuff.
* configure.ac: Remove popt checks, require GLib 2.6 for GOption.
* docs/gst/Makefile.am:
* docs/libs/Makefile.am: No POPT_CFLAGS.
* examples/manual/Makefile.am:
* docs/manual/basics-init.xml: Doc updates with an example.
* gst/gst.c: (gst_init_get_option_group), (gst_init_check),
(gst_init), (parse_one_option), (parse_goption_arg):
* gst/gst.h: Removed gst_init_with_popt_table and friends. Took a
bit of hand merging and debugging to get the GOption stuff working
tho.
* tests/Makefile.am:
* tools/Makefile.am:
* tools/gst-inspect.c: (main):
* tools/gst-launch.c: (main):
* tools/gst-run.c: (main):
* tools/gst-xmlinspect.c: (main): Thanks Ronald!
2005-10-10 15:53:59 +00:00
|
|
|
{NULL}
|
2005-09-18 07:41:28 +00:00
|
|
|
};
|
Merged in popt removal + GOption addition patch from Ronald, bug #169772.
Original commit message from CVS:
2005-10-10 Andy Wingo <wingo@pobox.com>
Merged in popt removal + GOption addition patch from Ronald, bug
#169772.
* docs/gst/gstreamer-sections.txt: Add STATE_(UN)LOCK_FULL, move
GstElement macros around, remove popt-related symbols, add goption
stuff.
* configure.ac: Remove popt checks, require GLib 2.6 for GOption.
* docs/gst/Makefile.am:
* docs/libs/Makefile.am: No POPT_CFLAGS.
* examples/manual/Makefile.am:
* docs/manual/basics-init.xml: Doc updates with an example.
* gst/gst.c: (gst_init_get_option_group), (gst_init_check),
(gst_init), (parse_one_option), (parse_goption_arg):
* gst/gst.h: Removed gst_init_with_popt_table and friends. Took a
bit of hand merging and debugging to get the GOption stuff working
tho.
* tests/Makefile.am:
* tools/Makefile.am:
* tools/gst-inspect.c: (main):
* tools/gst-launch.c: (main):
* tools/gst-run.c: (main):
* tools/gst-xmlinspect.c: (main): Thanks Ronald!
2005-10-10 15:53:59 +00:00
|
|
|
GOptionContext *ctx;
|
|
|
|
GError *err = NULL;
|
2009-07-08 13:15:04 +00:00
|
|
|
#endif
|
2002-09-15 18:59:27 +00:00
|
|
|
|
2014-01-30 20:24:21 +00:00
|
|
|
setlocale (LC_ALL, "");
|
|
|
|
|
2005-10-11 16:05:16 +00:00
|
|
|
#ifdef ENABLE_NLS
|
2004-02-03 11:23:59 +00:00
|
|
|
bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
|
2004-03-13 15:27:01 +00:00
|
|
|
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
|
2004-02-03 11:23:59 +00:00
|
|
|
textdomain (GETTEXT_PACKAGE);
|
2004-05-07 02:36:28 +00:00
|
|
|
#endif
|
2004-02-03 11:23:59 +00:00
|
|
|
|
2014-07-04 18:40:28 +00:00
|
|
|
/* avoid glib warnings when inspecting deprecated properties */
|
|
|
|
g_setenv ("G_ENABLE_DIAGNOSTIC", "0", FALSE);
|
|
|
|
|
2012-06-26 16:04:01 +00:00
|
|
|
g_set_prgname ("gst-inspect-" GST_API_VERSION);
|
2010-02-16 11:30:35 +00:00
|
|
|
|
2009-07-08 13:15:04 +00:00
|
|
|
#ifndef GST_DISABLE_OPTION_PARSING
|
2006-05-05 17:45:41 +00:00
|
|
|
ctx = g_option_context_new ("[ELEMENT-NAME | PLUGIN-NAME]");
|
Merged in popt removal + GOption addition patch from Ronald, bug #169772.
Original commit message from CVS:
2005-10-10 Andy Wingo <wingo@pobox.com>
Merged in popt removal + GOption addition patch from Ronald, bug
#169772.
* docs/gst/gstreamer-sections.txt: Add STATE_(UN)LOCK_FULL, move
GstElement macros around, remove popt-related symbols, add goption
stuff.
* configure.ac: Remove popt checks, require GLib 2.6 for GOption.
* docs/gst/Makefile.am:
* docs/libs/Makefile.am: No POPT_CFLAGS.
* examples/manual/Makefile.am:
* docs/manual/basics-init.xml: Doc updates with an example.
* gst/gst.c: (gst_init_get_option_group), (gst_init_check),
(gst_init), (parse_one_option), (parse_goption_arg):
* gst/gst.h: Removed gst_init_with_popt_table and friends. Took a
bit of hand merging and debugging to get the GOption stuff working
tho.
* tests/Makefile.am:
* tools/Makefile.am:
* tools/gst-inspect.c: (main):
* tools/gst-launch.c: (main):
* tools/gst-run.c: (main):
* tools/gst-xmlinspect.c: (main): Thanks Ronald!
2005-10-10 15:53:59 +00:00
|
|
|
g_option_context_add_main_entries (ctx, options, GETTEXT_PACKAGE);
|
|
|
|
g_option_context_add_group (ctx, gst_init_get_option_group ());
|
|
|
|
if (!g_option_context_parse (ctx, &argc, &argv, &err)) {
|
2012-08-29 21:57:02 +00:00
|
|
|
g_printerr ("Error initializing: %s\n", err->message);
|
2015-08-20 07:21:59 +00:00
|
|
|
g_clear_error (&err);
|
|
|
|
g_option_context_free (ctx);
|
2012-09-01 16:47:58 +00:00
|
|
|
return -1;
|
Merged in popt removal + GOption addition patch from Ronald, bug #169772.
Original commit message from CVS:
2005-10-10 Andy Wingo <wingo@pobox.com>
Merged in popt removal + GOption addition patch from Ronald, bug
#169772.
* docs/gst/gstreamer-sections.txt: Add STATE_(UN)LOCK_FULL, move
GstElement macros around, remove popt-related symbols, add goption
stuff.
* configure.ac: Remove popt checks, require GLib 2.6 for GOption.
* docs/gst/Makefile.am:
* docs/libs/Makefile.am: No POPT_CFLAGS.
* examples/manual/Makefile.am:
* docs/manual/basics-init.xml: Doc updates with an example.
* gst/gst.c: (gst_init_get_option_group), (gst_init_check),
(gst_init), (parse_one_option), (parse_goption_arg):
* gst/gst.h: Removed gst_init_with_popt_table and friends. Took a
bit of hand merging and debugging to get the GOption stuff working
tho.
* tests/Makefile.am:
* tools/Makefile.am:
* tools/gst-inspect.c: (main):
* tools/gst-launch.c: (main):
* tools/gst-run.c: (main):
* tools/gst-xmlinspect.c: (main): Thanks Ronald!
2005-10-10 15:53:59 +00:00
|
|
|
}
|
2005-10-13 09:57:15 +00:00
|
|
|
g_option_context_free (ctx);
|
2009-07-08 13:15:04 +00:00
|
|
|
#else
|
|
|
|
gst_init (&argc, &argv);
|
|
|
|
#endif
|
2003-03-16 20:06:02 +00:00
|
|
|
|
2012-06-26 16:27:31 +00:00
|
|
|
gst_tools_print_version ();
|
2010-02-16 11:24:33 +00:00
|
|
|
|
2008-11-17 15:48:14 +00:00
|
|
|
if (print_all && argc > 1) {
|
2012-08-29 21:57:02 +00:00
|
|
|
g_printerr ("-a requires no extra arguments\n");
|
2012-09-01 16:47:58 +00:00
|
|
|
return -1;
|
2004-06-14 11:04:06 +00:00
|
|
|
}
|
|
|
|
|
2008-11-17 15:48:14 +00:00
|
|
|
if (uri_handlers && argc > 1) {
|
2012-08-29 21:57:02 +00:00
|
|
|
g_printerr ("-u requires no extra arguments\n");
|
2012-09-01 16:47:58 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --atleast-version implies --exists */
|
|
|
|
if (min_version != NULL) {
|
|
|
|
if (sscanf (min_version, "%u.%u.%u", &minver_maj, &minver_min,
|
|
|
|
&minver_micro) < 2) {
|
|
|
|
g_printerr ("Can't parse version '%s' passed to --atleast-version\n",
|
|
|
|
min_version);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
check_exists = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (check_exists) {
|
|
|
|
int exit_code;
|
|
|
|
|
|
|
|
if (argc == 1) {
|
|
|
|
g_printerr ("--exists requires an extra command line argument\n");
|
|
|
|
exit_code = -1;
|
|
|
|
} else {
|
|
|
|
if (!plugin_name) {
|
|
|
|
GstPluginFeature *feature;
|
|
|
|
|
|
|
|
feature = gst_registry_lookup_feature (gst_registry_get (), argv[1]);
|
|
|
|
if (feature != NULL && gst_plugin_feature_check_version (feature,
|
|
|
|
minver_maj, minver_min, minver_micro)) {
|
|
|
|
exit_code = 0;
|
|
|
|
} else {
|
|
|
|
exit_code = 1;
|
|
|
|
}
|
2016-05-02 15:35:29 +00:00
|
|
|
|
|
|
|
if (feature)
|
|
|
|
gst_object_unref (feature);
|
2012-09-01 16:47:58 +00:00
|
|
|
} else {
|
|
|
|
/* FIXME: support checking for plugins too */
|
|
|
|
g_printerr ("Checking for plugins is not supported yet\n");
|
|
|
|
exit_code = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return exit_code;
|
2008-11-17 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
2001-12-14 20:56:51 +00:00
|
|
|
/* if no arguments, print out list of elements */
|
2008-11-17 15:48:14 +00:00
|
|
|
if (uri_handlers) {
|
|
|
|
print_all_uri_handlers ();
|
|
|
|
} else if (argc == 1 || print_all) {
|
2009-01-23 21:15:43 +00:00
|
|
|
if (do_print_blacklist)
|
|
|
|
print_blacklist ();
|
2009-11-09 12:55:54 +00:00
|
|
|
else {
|
|
|
|
if (print_aii)
|
|
|
|
print_all_plugin_automatic_install_info ();
|
|
|
|
else
|
2016-12-22 00:58:53 +00:00
|
|
|
print_element_list (print_all, types);
|
2009-11-09 12:55:54 +00:00
|
|
|
}
|
2001-01-04 10:47:39 +00:00
|
|
|
} else {
|
2008-11-17 15:48:14 +00:00
|
|
|
/* else we try to get a factory */
|
2004-06-15 14:17:55 +00:00
|
|
|
GstElementFactory *factory;
|
|
|
|
GstPlugin *plugin;
|
2004-06-14 11:04:06 +00:00
|
|
|
const char *arg = argv[argc - 1];
|
2004-06-15 14:17:55 +00:00
|
|
|
int retval;
|
2004-06-14 11:04:06 +00:00
|
|
|
|
2008-11-12 16:55:00 +00:00
|
|
|
if (!plugin_name) {
|
|
|
|
factory = gst_element_factory_find (arg);
|
|
|
|
|
|
|
|
/* if there's a factory, print out the info */
|
|
|
|
if (factory) {
|
|
|
|
retval = print_element_info (factory, print_all);
|
|
|
|
gst_object_unref (factory);
|
|
|
|
} else {
|
|
|
|
retval = print_element_features (arg);
|
|
|
|
}
|
2001-01-04 10:47:39 +00:00
|
|
|
} else {
|
2008-11-12 16:55:00 +00:00
|
|
|
retval = -1;
|
2001-01-04 10:47:39 +00:00
|
|
|
}
|
|
|
|
|
2004-06-15 14:17:55 +00:00
|
|
|
/* otherwise check if it's a plugin */
|
|
|
|
if (retval) {
|
2012-01-02 02:22:51 +00:00
|
|
|
plugin = gst_registry_find_plugin (gst_registry_get (), arg);
|
2001-01-04 10:47:39 +00:00
|
|
|
|
2004-06-15 14:17:55 +00:00
|
|
|
/* if there is such a plugin, print out info */
|
|
|
|
if (plugin) {
|
2007-01-11 14:16:23 +00:00
|
|
|
if (print_aii) {
|
|
|
|
print_plugin_automatic_install_info (plugin);
|
|
|
|
} else {
|
|
|
|
print_plugin_info (plugin);
|
|
|
|
print_plugin_features (plugin);
|
|
|
|
}
|
2004-06-15 14:17:55 +00:00
|
|
|
} else {
|
2005-09-29 19:45:27 +00:00
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
if (g_file_test (arg, G_FILE_TEST_EXISTS)) {
|
|
|
|
plugin = gst_plugin_load_file (arg, &error);
|
|
|
|
|
|
|
|
if (plugin) {
|
2007-01-11 14:16:23 +00:00
|
|
|
if (print_aii) {
|
|
|
|
print_plugin_automatic_install_info (plugin);
|
|
|
|
} else {
|
|
|
|
print_plugin_info (plugin);
|
|
|
|
print_plugin_features (plugin);
|
|
|
|
}
|
2005-09-29 19:45:27 +00:00
|
|
|
} else {
|
2012-08-29 21:57:02 +00:00
|
|
|
g_printerr (_("Could not load plugin file: %s\n"), error->message);
|
2015-08-20 07:21:59 +00:00
|
|
|
g_clear_error (&error);
|
2005-09-29 19:45:27 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
} else {
|
2012-08-29 21:57:02 +00:00
|
|
|
g_printerr (_("No such element or plugin '%s'\n"), arg);
|
2005-09-29 19:45:27 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2004-06-15 14:17:55 +00:00
|
|
|
}
|
2001-01-04 10:47:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|