mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
d7ddba92e9
Original commit message from CVS: We are nano seconds now..
218 lines
5.7 KiB
C
218 lines
5.7 KiB
C
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <gst/gst.h>
|
|
|
|
static guint64 iterations = 0;
|
|
static guint64 sum = 0;
|
|
static guint64 min = G_MAXINT;
|
|
static guint64 max = 0;
|
|
static GstClock *s_clock;
|
|
|
|
gboolean
|
|
idle_func (gpointer data)
|
|
{
|
|
gboolean busy;
|
|
GTimeVal tfthen, tfnow;
|
|
GstClockTimeDiff diff;
|
|
|
|
if (s_clock) {
|
|
//g_print ("%lld\n", gst_clock_get_time (s_clock));
|
|
}
|
|
|
|
g_get_current_time (&tfthen);
|
|
busy = gst_bin_iterate (GST_BIN (data));
|
|
iterations++;
|
|
g_get_current_time (&tfnow);
|
|
|
|
diff = GST_TIMEVAL_TO_TIME (tfnow) -
|
|
GST_TIMEVAL_TO_TIME (tfthen);
|
|
|
|
sum += diff;
|
|
min = MIN (min, diff);
|
|
max = MAX (max, diff);
|
|
|
|
if (!busy) {
|
|
gst_main_quit ();
|
|
g_print ("execution ended after %llu iterations (sum %llu ns, average %llu ns, min %llu ns, max %llu ns)\n",
|
|
iterations, sum, sum/iterations, min, max);
|
|
}
|
|
|
|
return busy;
|
|
}
|
|
|
|
static void
|
|
property_change_callback (GObject *object, GstObject *orig, GParamSpec *pspec, gchar **excluded_props)
|
|
{
|
|
GValue value = { 0, }; /* the important thing is that value.type = 0 */
|
|
gchar *str = 0;
|
|
|
|
if (pspec->flags & G_PARAM_READABLE) {
|
|
/* let's not print these out for excluded properties... */
|
|
while (excluded_props != NULL && *excluded_props != NULL)
|
|
{
|
|
if (strcmp (pspec->name, *excluded_props) == 0)
|
|
return;
|
|
excluded_props++;
|
|
}
|
|
g_value_init(&value, G_PARAM_SPEC_VALUE_TYPE (pspec));
|
|
g_object_get_property (G_OBJECT (orig), pspec->name, &value);
|
|
str = g_strdup_value_contents (&value);
|
|
g_print ("%s: %s = %s\n", GST_OBJECT_NAME (orig), pspec->name, str);
|
|
g_free (str);
|
|
g_value_unset(&value);
|
|
} else {
|
|
g_warning ("Parameter not readable. What's up with that?");
|
|
}
|
|
}
|
|
|
|
static void
|
|
error_callback (GObject *object, GstObject *orig, gchar *error)
|
|
{
|
|
g_print ("ERROR: %s: %s\n", GST_OBJECT_NAME (orig), error);
|
|
}
|
|
|
|
static GstElement*
|
|
xmllaunch_parse_cmdline (const gchar **argv)
|
|
{
|
|
GstElement *pipeline = NULL, *e;
|
|
GstXML *xml;
|
|
gboolean err;
|
|
const gchar *arg;
|
|
gchar *element, *property, *value;
|
|
GList *l;
|
|
gint i = 0;
|
|
|
|
if (!(arg = argv[0])) {
|
|
g_print ("usage: gst-xmllaunch <file.xml> [ element.property=value ... ]\n");
|
|
exit (1);
|
|
}
|
|
|
|
xml = gst_xml_new ();
|
|
err = gst_xml_parse_file(xml, arg, NULL);
|
|
|
|
if (err != TRUE) {
|
|
fprintf (stderr, "ERROR: parse of xml file '%s' failed\n", arg);
|
|
exit (1);
|
|
}
|
|
|
|
l = gst_xml_get_topelements (xml);
|
|
if (!l) {
|
|
fprintf (stderr, "ERROR: no toplevel pipeline element in file '%s'\n", arg);
|
|
exit (1);
|
|
}
|
|
|
|
if (l->next)
|
|
g_warning ("only one toplevel element is supported at this time");
|
|
|
|
pipeline = GST_ELEMENT (l->data);
|
|
|
|
while ((arg = argv[++i])) {
|
|
element = g_strdup (arg);
|
|
property = strchr (element, '.');
|
|
value = strchr (element, '=');
|
|
|
|
if (!(element < property && property < value)) {
|
|
fprintf (stderr, "ERROR: could not parse command line argument %d: %s", i, element);
|
|
g_free (element);
|
|
exit (1);
|
|
}
|
|
|
|
*property++ = '\0';
|
|
*value++ = '\0';
|
|
|
|
e = gst_bin_get_by_name (GST_BIN (pipeline), element);
|
|
if (!e) {
|
|
g_warning ("element named '%s' not found", element);
|
|
} else {
|
|
gst_util_set_object_arg (G_OBJECT (e), property, value);
|
|
}
|
|
g_free (element);
|
|
}
|
|
|
|
if (!l)
|
|
return NULL;
|
|
else
|
|
return l->data;
|
|
}
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
/* options */
|
|
gboolean silent = FALSE;
|
|
gchar *savefile = NULL;
|
|
gchar *exclude_args = NULL;
|
|
struct poptOption options[] = {
|
|
{"silent", 's', POPT_ARG_NONE|POPT_ARGFLAG_STRIP, &silent, 0,
|
|
"do not output status information", NULL},
|
|
{"exclude", 'X', POPT_ARG_STRING|POPT_ARGFLAG_STRIP, &exclude_args, 0,
|
|
"do not output status information of TYPE", "TYPE1,TYPE2,..."},
|
|
{"output", 'o', POPT_ARG_STRING|POPT_ARGFLAG_STRIP, &savefile, 0,
|
|
"save xml representation of pipeline to FILE and exit", "FILE"},
|
|
POPT_TABLEEND
|
|
};
|
|
|
|
GstElement *pipeline;
|
|
gchar **argvn;
|
|
GError *error = NULL;
|
|
|
|
free (malloc (8)); /* -lefence */
|
|
|
|
gst_init_with_popt_table (&argc, &argv, options);
|
|
|
|
/* make a null-terminated version of argv */
|
|
argvn = g_new0 (char*, argc);
|
|
memcpy (argvn, argv+1, sizeof (char*) * (argc-1));
|
|
if (strstr (argv[0], "gst-xmllaunch")) {
|
|
pipeline = xmllaunch_parse_cmdline ((const gchar**)argvn);
|
|
} else {
|
|
pipeline = (GstElement*) gst_parse_launchv ((const gchar**)argvn, &error);
|
|
}
|
|
|
|
if (!pipeline) {
|
|
if (error)
|
|
fprintf(stderr, "ERROR: pipeline could not be constructed: %s\n", error->message);
|
|
else
|
|
fprintf(stderr, "ERROR: pipeline could not be constructed\n");
|
|
exit(1);
|
|
}
|
|
|
|
if (!silent)
|
|
{
|
|
gchar **exclude_list = exclude_args ? g_strsplit (exclude_args, ",", 0) : NULL;
|
|
g_signal_connect (pipeline, "deep_notify", G_CALLBACK (property_change_callback), exclude_list);
|
|
}
|
|
g_signal_connect (pipeline, "error", G_CALLBACK (error_callback), NULL);
|
|
|
|
#ifndef GST_DISABLE_LOADSAVE
|
|
if (savefile) {
|
|
gst_xml_write_file (GST_ELEMENT (pipeline), fopen (savefile, "w"));
|
|
}
|
|
#endif
|
|
|
|
if (!savefile) {
|
|
gst_buffer_print_stats();
|
|
fprintf(stderr,"RUNNING pipeline\n");
|
|
if (gst_element_set_state (pipeline, GST_STATE_PLAYING) != GST_STATE_SUCCESS) {
|
|
fprintf(stderr,"pipeline doesn't want to play\n");
|
|
exit (-1);
|
|
}
|
|
|
|
s_clock = gst_bin_get_clock (GST_BIN (pipeline));
|
|
|
|
if (!GST_FLAG_IS_SET (GST_OBJECT (pipeline), GST_BIN_SELF_SCHEDULABLE)) {
|
|
g_idle_add (idle_func, pipeline);
|
|
gst_main ();
|
|
} else {
|
|
g_print ("waiting for the state change...\n");
|
|
gst_element_wait_state_change (pipeline);
|
|
}
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
|
gst_buffer_print_stats();
|
|
|
|
}
|
|
gst_object_unref (GST_OBJECT (pipeline));
|
|
|
|
return 0;
|
|
}
|