2001-10-24 22:42:40 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
*
|
|
|
|
* gststatistics.c:
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
2001-10-24 22:42:40 +00:00
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
#include "gststatistics.h"
|
|
|
|
|
gst/: s/gst_pad_new/&_from_template/ register pad templates in the base_init function add static pad template definit...
Original commit message from CVS:
* gst/autoplug/gstspideridentity.c:
(gst_spider_identity_request_new_pad):
* gst/elements/gstaggregator.c: (gst_aggregator_base_init),
(gst_aggregator_init):
* gst/elements/gstfakesink.c: (gst_fakesink_base_init),
(gst_fakesink_init):
* gst/elements/gstfakesrc.c: (gst_fakesrc_base_init),
(gst_fakesrc_init):
* gst/elements/gstfdsink.c: (gst_fdsink_base_init),
(gst_fdsink_init):
* gst/elements/gstfdsrc.c: (gst_fdsrc_base_init), (gst_fdsrc_init):
* gst/elements/gstfilesink.c: (gst_filesink_base_init),
(gst_filesink_init):
* gst/elements/gstfilesrc.c: (gst_filesrc_base_init),
(gst_filesrc_init):
* gst/elements/gstidentity.c: (gst_identity_base_init),
(gst_identity_init):
* gst/elements/gstmultifilesrc.c: (gst_multifilesrc_base_init),
(gst_multifilesrc_init):
* gst/elements/gstpipefilter.c: (gst_pipefilter_base_init),
(gst_pipefilter_init):
* gst/elements/gststatistics.c: (gst_statistics_base_init),
(gst_statistics_init):
* gst/elements/gsttee.c: (gst_tee_base_init), (gst_tee_init):
* gst/gstqueue.c: (gst_queue_base_init), (gst_queue_init):
s/gst_pad_new/&_from_template/
register pad templates in the base_init function
add static pad template definitions
2004-08-17 14:11:23 +00:00
|
|
|
static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS_ANY);
|
|
|
|
|
|
|
|
static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS_ANY);
|
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (gst_statistics_debug);
|
2003-06-29 14:05:49 +00:00
|
|
|
#define GST_CAT_DEFAULT gst_statistics_debug
|
2001-10-24 22:42:40 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
GstElementDetails gst_statistics_details = GST_ELEMENT_DETAILS ("Statistics",
|
|
|
|
"Generic",
|
|
|
|
"Statistics on buffers/bytes/events",
|
|
|
|
"David I. Lehn <dlehn@users.sourceforge.net>");
|
2001-10-24 22:42:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Statistics signals and args */
|
2004-03-13 15:27:01 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-10-24 22:42:40 +00:00
|
|
|
SIGNAL_UPDATE,
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-10-24 22:42:40 +00:00
|
|
|
ARG_0,
|
|
|
|
ARG_BUFFERS,
|
|
|
|
ARG_BYTES,
|
|
|
|
ARG_EVENTS,
|
|
|
|
ARG_BUFFER_UPDATE_FREQ,
|
|
|
|
ARG_BYTES_UPDATE_FREQ,
|
|
|
|
ARG_EVENT_UPDATE_FREQ,
|
|
|
|
ARG_UPDATE_ON_EOS,
|
|
|
|
ARG_UPDATE,
|
2004-01-30 20:48:13 +00:00
|
|
|
ARG_SILENT
|
2001-10-24 22:42:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-01-08 04:10:18 +00:00
|
|
|
#define _do_init(bla) \
|
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_statistics_debug, "statistics", 0, "statistics element");
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
GST_BOILERPLATE_FULL (GstStatistics, gst_statistics, GstElement,
|
|
|
|
GST_TYPE_ELEMENT, _do_init);
|
2001-10-24 22:42:40 +00:00
|
|
|
|
2004-03-21 03:22:55 +00:00
|
|
|
static void gst_statistics_finalize (GObject * object);
|
2004-03-13 15:27:01 +00:00
|
|
|
static void gst_statistics_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_statistics_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
2001-10-24 22:42:40 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void gst_statistics_chain (GstPad * pad, GstData * _data);
|
|
|
|
static void gst_statistics_reset (GstStatistics * statistics);
|
|
|
|
static void gst_statistics_print (GstStatistics * statistics);
|
2001-10-24 22:42:40 +00:00
|
|
|
|
2001-10-27 20:28:31 +00:00
|
|
|
static guint gst_statistics_signals[LAST_SIGNAL] = { 0, };
|
2001-10-24 22:42:40 +00:00
|
|
|
|
|
|
|
static stats zero_stats = { 0, };
|
|
|
|
|
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
static void
|
|
|
|
gst_statistics_base_init (gpointer g_class)
|
|
|
|
{
|
|
|
|
GstElementClass *gstelement_class = GST_ELEMENT_CLASS (g_class);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
gst/: s/gst_pad_new/&_from_template/ register pad templates in the base_init function add static pad template definit...
Original commit message from CVS:
* gst/autoplug/gstspideridentity.c:
(gst_spider_identity_request_new_pad):
* gst/elements/gstaggregator.c: (gst_aggregator_base_init),
(gst_aggregator_init):
* gst/elements/gstfakesink.c: (gst_fakesink_base_init),
(gst_fakesink_init):
* gst/elements/gstfakesrc.c: (gst_fakesrc_base_init),
(gst_fakesrc_init):
* gst/elements/gstfdsink.c: (gst_fdsink_base_init),
(gst_fdsink_init):
* gst/elements/gstfdsrc.c: (gst_fdsrc_base_init), (gst_fdsrc_init):
* gst/elements/gstfilesink.c: (gst_filesink_base_init),
(gst_filesink_init):
* gst/elements/gstfilesrc.c: (gst_filesrc_base_init),
(gst_filesrc_init):
* gst/elements/gstidentity.c: (gst_identity_base_init),
(gst_identity_init):
* gst/elements/gstmultifilesrc.c: (gst_multifilesrc_base_init),
(gst_multifilesrc_init):
* gst/elements/gstpipefilter.c: (gst_pipefilter_base_init),
(gst_pipefilter_init):
* gst/elements/gststatistics.c: (gst_statistics_base_init),
(gst_statistics_init):
* gst/elements/gsttee.c: (gst_tee_base_init), (gst_tee_init):
* gst/gstqueue.c: (gst_queue_base_init), (gst_queue_init):
s/gst_pad_new/&_from_template/
register pad templates in the base_init function
add static pad template definitions
2004-08-17 14:11:23 +00:00
|
|
|
gst_element_class_add_pad_template (gstelement_class,
|
|
|
|
gst_static_pad_template_get (&srctemplate));
|
|
|
|
gst_element_class_add_pad_template (gstelement_class,
|
|
|
|
gst_static_pad_template_get (&sinktemplate));
|
2003-10-31 19:32:47 +00:00
|
|
|
gst_element_class_set_details (gstelement_class, &gst_statistics_details);
|
|
|
|
}
|
2004-03-21 03:22:55 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gst_statistics_finalize (GObject * object)
|
|
|
|
{
|
|
|
|
GstStatistics *statistics;
|
|
|
|
|
|
|
|
statistics = GST_STATISTICS (object);
|
|
|
|
|
|
|
|
if (statistics->timer)
|
|
|
|
g_timer_destroy (statistics->timer);
|
|
|
|
|
|
|
|
if (statistics->last_timer)
|
|
|
|
g_timer_destroy (statistics->last_timer);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void
|
|
|
|
gst_statistics_class_init (GstStatisticsClass * klass)
|
2001-10-24 22:42:40 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
gobject_class = G_OBJECT_CLASS (klass);
|
2001-10-24 22:42:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_BUFFERS,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_int64 ("buffers", "buffers", "total buffers count",
|
2004-03-15 19:27:17 +00:00
|
|
|
0, G_MAXINT64, 0, G_PARAM_READABLE));
|
2001-10-24 22:42:40 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_BYTES,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_int64 ("bytes", "bytes", "total bytes count",
|
2004-03-15 19:27:17 +00:00
|
|
|
0, G_MAXINT64, 0, G_PARAM_READABLE));
|
2001-10-24 22:42:40 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_EVENTS,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_int64 ("events", "events", "total event count",
|
2004-03-15 19:27:17 +00:00
|
|
|
0, G_MAXINT64, 0, G_PARAM_READABLE));
|
2004-03-13 15:27:01 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass),
|
|
|
|
ARG_BUFFER_UPDATE_FREQ, g_param_spec_int64 ("buffer_update_freq",
|
2004-03-15 19:27:17 +00:00
|
|
|
"buffer update freq", "buffer update frequency", 0, G_MAXINT64, 0,
|
|
|
|
G_PARAM_READWRITE));
|
2004-03-13 15:27:01 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass),
|
|
|
|
ARG_BYTES_UPDATE_FREQ, g_param_spec_int64 ("bytes_update_freq",
|
2004-03-15 19:27:17 +00:00
|
|
|
"bytes update freq", "bytes update frequency", 0, G_MAXINT64, 0,
|
|
|
|
G_PARAM_READWRITE));
|
2004-03-13 15:27:01 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass),
|
|
|
|
ARG_EVENT_UPDATE_FREQ, g_param_spec_int64 ("event_update_freq",
|
2004-03-15 19:27:17 +00:00
|
|
|
"event update freq", "event update frequency", 0, G_MAXINT64, 0,
|
|
|
|
G_PARAM_READWRITE));
|
2001-10-24 22:42:40 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_UPDATE_ON_EOS,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_boolean ("update_on_eos", "update on EOS",
|
2004-03-15 19:27:17 +00:00
|
|
|
"update on EOS event", TRUE, G_PARAM_READWRITE));
|
2001-10-24 22:42:40 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_UPDATE,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_boolean ("update", "update", "update", TRUE,
|
2004-03-15 19:27:17 +00:00
|
|
|
G_PARAM_READWRITE));
|
2001-10-24 22:42:40 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SILENT,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_boolean ("silent", "silent", "silent", TRUE,
|
2004-03-15 19:27:17 +00:00
|
|
|
G_PARAM_READWRITE));
|
2001-10-24 22:42:40 +00:00
|
|
|
|
|
|
|
gst_statistics_signals[SIGNAL_UPDATE] =
|
2004-03-13 15:27:01 +00:00
|
|
|
g_signal_new ("update", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GstStatisticsClass, update), NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
|
2001-10-24 22:42:40 +00:00
|
|
|
|
2004-03-21 03:22:55 +00:00
|
|
|
gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_statistics_finalize);
|
2001-10-24 22:42:40 +00:00
|
|
|
gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_statistics_set_property);
|
|
|
|
gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_statistics_get_property);
|
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void
|
|
|
|
gst_statistics_init (GstStatistics * statistics)
|
2001-10-24 22:42:40 +00:00
|
|
|
{
|
gst/: s/gst_pad_new/&_from_template/ register pad templates in the base_init function add static pad template definit...
Original commit message from CVS:
* gst/autoplug/gstspideridentity.c:
(gst_spider_identity_request_new_pad):
* gst/elements/gstaggregator.c: (gst_aggregator_base_init),
(gst_aggregator_init):
* gst/elements/gstfakesink.c: (gst_fakesink_base_init),
(gst_fakesink_init):
* gst/elements/gstfakesrc.c: (gst_fakesrc_base_init),
(gst_fakesrc_init):
* gst/elements/gstfdsink.c: (gst_fdsink_base_init),
(gst_fdsink_init):
* gst/elements/gstfdsrc.c: (gst_fdsrc_base_init), (gst_fdsrc_init):
* gst/elements/gstfilesink.c: (gst_filesink_base_init),
(gst_filesink_init):
* gst/elements/gstfilesrc.c: (gst_filesrc_base_init),
(gst_filesrc_init):
* gst/elements/gstidentity.c: (gst_identity_base_init),
(gst_identity_init):
* gst/elements/gstmultifilesrc.c: (gst_multifilesrc_base_init),
(gst_multifilesrc_init):
* gst/elements/gstpipefilter.c: (gst_pipefilter_base_init),
(gst_pipefilter_init):
* gst/elements/gststatistics.c: (gst_statistics_base_init),
(gst_statistics_init):
* gst/elements/gsttee.c: (gst_tee_base_init), (gst_tee_init):
* gst/gstqueue.c: (gst_queue_base_init), (gst_queue_init):
s/gst_pad_new/&_from_template/
register pad templates in the base_init function
add static pad template definitions
2004-08-17 14:11:23 +00:00
|
|
|
statistics->sinkpad =
|
|
|
|
gst_pad_new_from_template (gst_static_pad_template_get (&sinktemplate),
|
|
|
|
"sink");
|
2001-10-24 22:42:40 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (statistics), statistics->sinkpad);
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_pad_set_chain_function (statistics->sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_statistics_chain));
|
|
|
|
|
gst/: s/gst_pad_new/&_from_template/ register pad templates in the base_init function add static pad template definit...
Original commit message from CVS:
* gst/autoplug/gstspideridentity.c:
(gst_spider_identity_request_new_pad):
* gst/elements/gstaggregator.c: (gst_aggregator_base_init),
(gst_aggregator_init):
* gst/elements/gstfakesink.c: (gst_fakesink_base_init),
(gst_fakesink_init):
* gst/elements/gstfakesrc.c: (gst_fakesrc_base_init),
(gst_fakesrc_init):
* gst/elements/gstfdsink.c: (gst_fdsink_base_init),
(gst_fdsink_init):
* gst/elements/gstfdsrc.c: (gst_fdsrc_base_init), (gst_fdsrc_init):
* gst/elements/gstfilesink.c: (gst_filesink_base_init),
(gst_filesink_init):
* gst/elements/gstfilesrc.c: (gst_filesrc_base_init),
(gst_filesrc_init):
* gst/elements/gstidentity.c: (gst_identity_base_init),
(gst_identity_init):
* gst/elements/gstmultifilesrc.c: (gst_multifilesrc_base_init),
(gst_multifilesrc_init):
* gst/elements/gstpipefilter.c: (gst_pipefilter_base_init),
(gst_pipefilter_init):
* gst/elements/gststatistics.c: (gst_statistics_base_init),
(gst_statistics_init):
* gst/elements/gsttee.c: (gst_tee_base_init), (gst_tee_init):
* gst/gstqueue.c: (gst_queue_base_init), (gst_queue_init):
s/gst_pad_new/&_from_template/
register pad templates in the base_init function
add static pad template definitions
2004-08-17 14:11:23 +00:00
|
|
|
statistics->srcpad =
|
|
|
|
gst_pad_new_from_template (gst_static_pad_template_get (&srctemplate),
|
|
|
|
"src");
|
2001-10-24 22:42:40 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (statistics), statistics->srcpad);
|
|
|
|
|
|
|
|
statistics->timer = NULL;
|
|
|
|
statistics->last_timer = NULL;
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_statistics_reset (statistics);
|
2001-10-24 22:42:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_statistics_reset (GstStatistics * statistics)
|
2001-10-24 22:42:40 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (statistics != NULL);
|
|
|
|
g_return_if_fail (GST_IS_STATISTICS (statistics));
|
|
|
|
|
|
|
|
statistics->stats.buffers = 0;
|
|
|
|
statistics->stats.bytes = 0;
|
|
|
|
statistics->stats.events = 0;
|
|
|
|
|
|
|
|
statistics->last_stats.buffers = 0;
|
|
|
|
statistics->last_stats.bytes = 0;
|
|
|
|
statistics->last_stats.events = 0;
|
|
|
|
|
|
|
|
statistics->update_count.buffers = 0;
|
|
|
|
statistics->update_count.bytes = 0;
|
|
|
|
statistics->update_count.events = 0;
|
|
|
|
|
|
|
|
statistics->update_freq.buffers = 0;
|
|
|
|
statistics->update_freq.bytes = 0;
|
|
|
|
statistics->update_freq.events = 0;
|
|
|
|
|
|
|
|
statistics->update_on_eos = TRUE;
|
|
|
|
statistics->update = TRUE;
|
|
|
|
statistics->silent = FALSE;
|
|
|
|
|
|
|
|
if (!statistics->timer) {
|
2004-03-13 15:27:01 +00:00
|
|
|
statistics->timer = g_timer_new ();
|
2001-10-24 22:42:40 +00:00
|
|
|
}
|
|
|
|
if (!statistics->last_timer) {
|
2004-03-13 15:27:01 +00:00
|
|
|
statistics->last_timer = g_timer_new ();
|
2001-10-24 22:42:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
print_stats (gboolean first, const gchar * name, const gchar * type,
|
|
|
|
stats * base, stats * final, double time)
|
2001-10-24 22:42:40 +00:00
|
|
|
{
|
|
|
|
const gchar *header0 = "statistics";
|
|
|
|
const gchar *headerN = " ";
|
|
|
|
stats delta;
|
|
|
|
|
|
|
|
delta.buffers = final->buffers - base->buffers;
|
|
|
|
delta.bytes = final->bytes - base->bytes;
|
|
|
|
delta.events = final->events - base->events;
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
g_print ("%s: (%s) %s: s:%g buffers:%" G_GINT64_FORMAT
|
|
|
|
" bytes:%" G_GINT64_FORMAT
|
|
|
|
" events:%" G_GINT64_FORMAT "\n",
|
|
|
|
first ? header0 : headerN,
|
|
|
|
name, type, time, final->buffers, final->bytes, final->events);
|
|
|
|
g_print ("%s: (%s) %s: buf/s:%g B/s:%g e/s:%g B/buf:%g\n",
|
|
|
|
headerN,
|
|
|
|
name, type,
|
|
|
|
delta.buffers / time,
|
|
|
|
delta.bytes / time,
|
|
|
|
delta.events / time, ((double) delta.bytes / (double) delta.buffers));
|
2001-10-24 22:42:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_statistics_print (GstStatistics * statistics)
|
2001-10-24 22:42:40 +00:00
|
|
|
{
|
|
|
|
const gchar *name;
|
|
|
|
double elapsed;
|
|
|
|
double last_elapsed;
|
|
|
|
|
|
|
|
g_return_if_fail (statistics != NULL);
|
|
|
|
g_return_if_fail (GST_IS_STATISTICS (statistics));
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
name = gst_object_get_name (GST_OBJECT (statistics));
|
2001-10-24 22:42:40 +00:00
|
|
|
if (!name) {
|
|
|
|
name = "";
|
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
elapsed = g_timer_elapsed (statistics->timer, NULL);
|
|
|
|
last_elapsed = g_timer_elapsed (statistics->last_timer, NULL);
|
2001-10-24 22:42:40 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
print_stats (1, name, "total", &zero_stats, &statistics->stats, elapsed);
|
|
|
|
print_stats (0, name, "last", &statistics->last_stats, &statistics->stats,
|
|
|
|
last_elapsed);
|
2001-10-24 22:42:40 +00:00
|
|
|
statistics->last_stats = statistics->stats;
|
2004-03-13 15:27:01 +00:00
|
|
|
g_timer_reset (statistics->last_timer);
|
2001-10-24 22:42:40 +00:00
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void
|
|
|
|
gst_statistics_chain (GstPad * pad, GstData * _data)
|
2001-10-24 22:42:40 +00:00
|
|
|
{
|
2003-10-08 16:06:02 +00:00
|
|
|
GstBuffer *buf = GST_BUFFER (_data);
|
2001-10-24 22:42:40 +00:00
|
|
|
GstStatistics *statistics;
|
|
|
|
gboolean update = FALSE;
|
|
|
|
|
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_PAD (pad));
|
|
|
|
g_return_if_fail (buf != NULL);
|
|
|
|
|
|
|
|
statistics = GST_STATISTICS (gst_pad_get_parent (pad));
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
if (GST_IS_EVENT (buf)) {
|
2001-10-24 22:42:40 +00:00
|
|
|
GstEvent *event = GST_EVENT (buf);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-10-24 22:42:40 +00:00
|
|
|
statistics->stats.events += 1;
|
2004-03-13 15:27:01 +00:00
|
|
|
if (GST_EVENT_TYPE (event) == GST_EVENT_EOS) {
|
2001-12-28 20:20:26 +00:00
|
|
|
gst_element_set_eos (GST_ELEMENT (statistics));
|
2001-10-27 20:28:31 +00:00
|
|
|
if (statistics->update_on_eos) {
|
2004-03-15 19:27:17 +00:00
|
|
|
update = TRUE;
|
2001-10-27 20:28:31 +00:00
|
|
|
}
|
2001-10-24 22:42:40 +00:00
|
|
|
}
|
|
|
|
if (statistics->update_freq.events) {
|
|
|
|
statistics->update_count.events += 1;
|
|
|
|
if (statistics->update_count.events == statistics->update_freq.events) {
|
2004-03-15 19:27:17 +00:00
|
|
|
statistics->update_count.events = 0;
|
|
|
|
update = TRUE;
|
2001-10-24 22:42:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
statistics->stats.buffers += 1;
|
|
|
|
if (statistics->update_freq.buffers) {
|
|
|
|
statistics->update_count.buffers += 1;
|
|
|
|
if (statistics->update_count.buffers == statistics->update_freq.buffers) {
|
2004-03-15 19:27:17 +00:00
|
|
|
statistics->update_count.buffers = 0;
|
|
|
|
update = TRUE;
|
2001-10-24 22:42:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
statistics->stats.bytes += GST_BUFFER_SIZE (buf);
|
2001-10-24 22:42:40 +00:00
|
|
|
if (statistics->update_freq.bytes) {
|
2004-03-13 15:27:01 +00:00
|
|
|
statistics->update_count.bytes += GST_BUFFER_SIZE (buf);
|
2001-10-24 22:42:40 +00:00
|
|
|
if (statistics->update_count.bytes >= statistics->update_freq.bytes) {
|
2004-03-15 19:27:17 +00:00
|
|
|
statistics->update_count.bytes = 0;
|
|
|
|
update = TRUE;
|
2001-10-24 22:42:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (update) {
|
|
|
|
if (statistics->update) {
|
2003-06-29 14:05:49 +00:00
|
|
|
GST_DEBUG ("[%s]: pre update emit", GST_ELEMENT_NAME (statistics));
|
2004-03-13 15:27:01 +00:00
|
|
|
g_signal_emit (G_OBJECT (statistics),
|
2004-03-15 19:27:17 +00:00
|
|
|
gst_statistics_signals[SIGNAL_UPDATE], 0);
|
2003-06-29 14:05:49 +00:00
|
|
|
GST_DEBUG ("[%s]: post update emit", GST_ELEMENT_NAME (statistics));
|
2001-10-24 22:42:40 +00:00
|
|
|
}
|
|
|
|
if (!statistics->silent) {
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_statistics_print (statistics);
|
2001-10-24 22:42:40 +00:00
|
|
|
}
|
|
|
|
}
|
2003-10-08 16:06:02 +00:00
|
|
|
gst_pad_push (statistics->srcpad, GST_DATA (buf));
|
2001-10-24 22:42:40 +00:00
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void
|
|
|
|
gst_statistics_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
2001-10-24 22:42:40 +00:00
|
|
|
{
|
|
|
|
GstStatistics *statistics;
|
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
|
|
|
g_return_if_fail (GST_IS_STATISTICS (object));
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-10-24 22:42:40 +00:00
|
|
|
statistics = GST_STATISTICS (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_BUFFER_UPDATE_FREQ:
|
|
|
|
statistics->update_freq.buffers = g_value_get_int64 (value);
|
|
|
|
break;
|
|
|
|
case ARG_BYTES_UPDATE_FREQ:
|
|
|
|
statistics->update_freq.bytes = g_value_get_int64 (value);
|
|
|
|
break;
|
|
|
|
case ARG_EVENT_UPDATE_FREQ:
|
|
|
|
statistics->update_freq.events = g_value_get_int64 (value);
|
|
|
|
break;
|
|
|
|
case ARG_UPDATE_ON_EOS:
|
|
|
|
statistics->update_on_eos = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_UPDATE:
|
|
|
|
statistics->update = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_SILENT:
|
|
|
|
statistics->silent = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void
|
|
|
|
gst_statistics_get_property (GObject * object, guint prop_id, GValue * value,
|
|
|
|
GParamSpec * pspec)
|
|
|
|
{
|
2001-10-24 22:42:40 +00:00
|
|
|
GstStatistics *statistics;
|
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
|
|
|
g_return_if_fail (GST_IS_STATISTICS (object));
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-10-24 22:42:40 +00:00
|
|
|
statistics = GST_STATISTICS (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_BUFFERS:
|
|
|
|
g_value_set_int64 (value, statistics->stats.buffers);
|
|
|
|
break;
|
|
|
|
case ARG_BYTES:
|
|
|
|
g_value_set_int64 (value, statistics->stats.bytes);
|
|
|
|
break;
|
|
|
|
case ARG_EVENTS:
|
|
|
|
g_value_set_int64 (value, statistics->stats.events);
|
|
|
|
break;
|
|
|
|
case ARG_BUFFER_UPDATE_FREQ:
|
|
|
|
g_value_set_int64 (value, statistics->update_freq.buffers);
|
|
|
|
break;
|
|
|
|
case ARG_BYTES_UPDATE_FREQ:
|
|
|
|
g_value_set_int64 (value, statistics->update_freq.bytes);
|
|
|
|
break;
|
|
|
|
case ARG_EVENT_UPDATE_FREQ:
|
|
|
|
g_value_set_int64 (value, statistics->update_freq.events);
|
|
|
|
break;
|
|
|
|
case ARG_UPDATE_ON_EOS:
|
|
|
|
g_value_set_boolean (value, statistics->update_on_eos);
|
|
|
|
break;
|
|
|
|
case ARG_UPDATE:
|
|
|
|
g_value_set_boolean (value, statistics->update);
|
|
|
|
break;
|
|
|
|
case ARG_SILENT:
|
|
|
|
g_value_set_boolean (value, statistics->silent);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|