2000-12-29 05:38:06 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
*
|
|
|
|
* gstfakesink.c:
|
2000-01-30 09:03:00 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
#include "gstfakesink.h"
|
2004-02-03 03:31:26 +00:00
|
|
|
#include <gst/gstmarshal.h>
|
2003-06-29 14:05:49 +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
|
|
|
static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS_ANY);
|
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (gst_fakesink_debug);
|
2003-06-29 14:05:49 +00:00
|
|
|
#define GST_CAT_DEFAULT gst_fakesink_debug
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
GstElementDetails gst_fakesink_details = GST_ELEMENT_DETAILS ("Fake Sink",
|
|
|
|
"Sink",
|
|
|
|
"Black hole for data",
|
|
|
|
"Erik Walthinsen <omega@cse.ogi.edu>");
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* FakeSink signals and args */
|
2004-03-13 15:27:01 +00:00
|
|
|
enum
|
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
/* FILL ME */
|
2000-12-22 16:14:33 +00:00
|
|
|
SIGNAL_HANDOFF,
|
2000-01-30 09:03:00 +00:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
enum
|
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
ARG_0,
|
2003-06-03 20:22:52 +00:00
|
|
|
ARG_STATE_ERROR,
|
2001-07-11 15:51:40 +00:00
|
|
|
ARG_NUM_SINKS,
|
2001-04-16 16:45:53 +00:00
|
|
|
ARG_SILENT,
|
2001-10-17 10:21:27 +00:00
|
|
|
ARG_DUMP,
|
2002-03-30 17:05:03 +00:00
|
|
|
ARG_SYNC,
|
2003-08-07 12:45:31 +00:00
|
|
|
ARG_SIGNAL_HANDOFFS,
|
2004-05-28 05:01:05 +00:00
|
|
|
ARG_LAST_MESSAGE
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
GstStaticPadTemplate fakesink_sink_template = GST_STATIC_PAD_TEMPLATE ("sink%d",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_REQUEST,
|
|
|
|
GST_STATIC_CAPS_ANY);
|
2001-07-11 16:45:43 +00:00
|
|
|
|
2003-06-03 20:22:52 +00:00
|
|
|
#define GST_TYPE_FAKESINK_STATE_ERROR (gst_fakesink_state_error_get_type())
|
|
|
|
static GType
|
|
|
|
gst_fakesink_state_error_get_type (void)
|
|
|
|
{
|
|
|
|
static GType fakesink_state_error_type = 0;
|
|
|
|
static GEnumValue fakesink_state_error[] = {
|
2004-03-13 15:27:01 +00:00
|
|
|
{FAKESINK_STATE_ERROR_NONE, "0", "No state change errors"},
|
|
|
|
{FAKESINK_STATE_ERROR_NULL_READY, "1",
|
2004-03-15 19:27:17 +00:00
|
|
|
"Fail state change from NULL to READY"},
|
2004-03-13 15:27:01 +00:00
|
|
|
{FAKESINK_STATE_ERROR_READY_PAUSED, "2",
|
2004-03-15 19:27:17 +00:00
|
|
|
"Fail state change from READY to PAUSED"},
|
2004-03-13 15:27:01 +00:00
|
|
|
{FAKESINK_STATE_ERROR_PAUSED_PLAYING, "3",
|
2004-03-15 19:27:17 +00:00
|
|
|
"Fail state change from PAUSED to PLAYING"},
|
2004-03-13 15:27:01 +00:00
|
|
|
{FAKESINK_STATE_ERROR_PLAYING_PAUSED, "4",
|
2004-03-15 19:27:17 +00:00
|
|
|
"Fail state change from PLAYING to PAUSED"},
|
2004-03-13 15:27:01 +00:00
|
|
|
{FAKESINK_STATE_ERROR_PAUSED_READY, "5",
|
2004-03-15 19:27:17 +00:00
|
|
|
"Fail state change from PAUSED to READY"},
|
2004-03-13 15:27:01 +00:00
|
|
|
{FAKESINK_STATE_ERROR_READY_NULL, "6",
|
2004-03-15 19:27:17 +00:00
|
|
|
"Fail state change from READY to NULL"},
|
2003-06-03 20:22:52 +00:00
|
|
|
{0, NULL, NULL},
|
|
|
|
};
|
2004-03-15 19:27:17 +00:00
|
|
|
|
2003-06-03 20:22:52 +00:00
|
|
|
if (!fakesink_state_error_type) {
|
2004-03-13 15:27:01 +00:00
|
|
|
fakesink_state_error_type =
|
2004-03-15 19:27:17 +00:00
|
|
|
g_enum_register_static ("GstFakeSinkStateError", fakesink_state_error);
|
2003-06-03 20:22:52 +00:00
|
|
|
}
|
|
|
|
return fakesink_state_error_type;
|
|
|
|
}
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-01-08 04:10:18 +00:00
|
|
|
#define _do_init(bla) \
|
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_fakesink_debug, "fakesink", 0, "fakesink element");
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
GST_BOILERPLATE_FULL (GstFakeSink, gst_fakesink, GstElement, GST_TYPE_ELEMENT,
|
|
|
|
_do_init);
|
2001-01-04 10:54:27 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void gst_fakesink_set_clock (GstElement * element, GstClock * clock);
|
|
|
|
static GstPad *gst_fakesink_request_new_pad (GstElement * element,
|
|
|
|
GstPadTemplate * templ, const gchar * unused);
|
2001-07-11 16:45:43 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void gst_fakesink_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_fakesink_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static GstElementStateReturn gst_fakesink_change_state (GstElement * element);
|
2003-06-03 20:22:52 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void gst_fakesink_chain (GstPad * pad, GstData * _data);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-12-22 16:14:33 +00:00
|
|
|
static guint gst_fakesink_signals[LAST_SIGNAL] = { 0 };
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
static void
|
|
|
|
gst_fakesink_base_init (gpointer g_class)
|
|
|
|
{
|
2004-03-13 15:27:01 +00:00
|
|
|
GstElementClass *gstelement_class = GST_ELEMENT_CLASS (g_class);
|
|
|
|
|
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 (&sinktemplate));
|
2003-10-31 19:32:47 +00:00
|
|
|
gst_element_class_set_details (gstelement_class, &gst_fakesink_details);
|
2003-12-22 01:39:35 +00:00
|
|
|
gst_element_class_add_pad_template (gstelement_class,
|
|
|
|
gst_static_pad_template_get (&fakesink_sink_template));
|
2003-10-31 19:32:47 +00:00
|
|
|
}
|
2003-12-22 01:39:35 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_fakesink_class_init (GstFakeSinkClass * klass)
|
2000-11-25 14:18:47 +00:00
|
|
|
{
|
2001-06-25 01:20:11 +00:00
|
|
|
GObjectClass *gobject_class;
|
2001-07-11 16:45:43 +00:00
|
|
|
GstElementClass *gstelement_class;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
|
|
gstelement_class = (GstElementClass *) klass;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-01-04 10:54:27 +00:00
|
|
|
|
2001-07-11 15:51:40 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_NUM_SINKS,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_int ("num_sinks", "Number of sinks",
|
2004-03-15 19:27:17 +00:00
|
|
|
"The number of sinkpads", 1, G_MAXINT, 1, G_PARAM_READABLE));
|
2003-06-03 20:22:52 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_STATE_ERROR,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_enum ("state_error", "State Error",
|
2004-03-15 19:27:17 +00:00
|
|
|
"Generate a state change error", GST_TYPE_FAKESINK_STATE_ERROR,
|
|
|
|
FAKESINK_STATE_ERROR_NONE, G_PARAM_READWRITE));
|
2002-02-06 21:57:35 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_LAST_MESSAGE,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_string ("last_message", "Last Message",
|
2004-03-15 19:27:17 +00:00
|
|
|
"The message describing current status", NULL, G_PARAM_READABLE));
|
2002-11-21 23:52:30 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SYNC,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_boolean ("sync", "Sync", "Sync on the clock", FALSE,
|
2004-03-15 19:27:17 +00:00
|
|
|
G_PARAM_READWRITE));
|
2003-08-07 12:45:31 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SIGNAL_HANDOFFS,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_boolean ("signal-handoffs", "Signal handoffs",
|
2004-03-15 19:27:17 +00:00
|
|
|
"Send a signal before unreffing the buffer", FALSE,
|
|
|
|
G_PARAM_READWRITE));
|
2002-11-21 23:52:30 +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",
|
2004-03-15 19:27:17 +00:00
|
|
|
"Don't produce last_message events", FALSE, G_PARAM_READWRITE));
|
2002-11-21 23:52:30 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_DUMP,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_boolean ("dump", "Dump", "Dump received bytes to stdout",
|
2004-03-15 19:27:17 +00:00
|
|
|
FALSE, G_PARAM_READWRITE));
|
2001-01-04 10:54:27 +00:00
|
|
|
|
2000-12-22 16:14:33 +00:00
|
|
|
gst_fakesink_signals[SIGNAL_HANDOFF] =
|
2004-03-13 15:27:01 +00:00
|
|
|
g_signal_new ("handoff", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GstFakeSinkClass, handoff), NULL, NULL,
|
2004-11-03 18:01:29 +00:00
|
|
|
gst_marshal_VOID__BOXED_OBJECT, G_TYPE_NONE, 2,
|
2004-11-08 15:45:31 +00:00
|
|
|
GST_TYPE_BUFFER | G_SIGNAL_TYPE_STATIC_SCOPE, GST_TYPE_PAD);
|
2000-12-22 16:14:33 +00:00
|
|
|
|
2001-07-11 16:45:43 +00:00
|
|
|
gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_fakesink_set_property);
|
|
|
|
gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_fakesink_get_property);
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
gstelement_class->request_new_pad =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_fakesink_request_new_pad);
|
|
|
|
gstelement_class->set_clock = GST_DEBUG_FUNCPTR (gst_fakesink_set_clock);
|
|
|
|
gstelement_class->change_state =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_fakesink_change_state);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void
|
|
|
|
gst_fakesink_init (GstFakeSink * fakesink)
|
2000-11-25 14:18:47 +00:00
|
|
|
{
|
2001-01-04 10:54:27 +00:00
|
|
|
GstPad *pad;
|
2002-11-21 23:52:30 +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
|
|
|
pad =
|
|
|
|
gst_pad_new_from_template (gst_static_pad_template_get (&sinktemplate),
|
|
|
|
"sink");
|
2001-01-04 10:54:27 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (fakesink), pad);
|
2001-07-11 16:45:43 +00:00
|
|
|
gst_pad_set_chain_function (pad, GST_DEBUG_FUNCPTR (gst_fakesink_chain));
|
2001-07-11 15:51:40 +00:00
|
|
|
|
2001-04-16 16:45:53 +00:00
|
|
|
fakesink->silent = FALSE;
|
2001-10-17 10:21:27 +00:00
|
|
|
fakesink->dump = FALSE;
|
2002-03-30 17:05:03 +00:00
|
|
|
fakesink->sync = FALSE;
|
2002-02-06 21:57:35 +00:00
|
|
|
fakesink->last_message = NULL;
|
2003-06-03 20:22:52 +00:00
|
|
|
fakesink->state_error = FAKESINK_STATE_ERROR_NONE;
|
2003-08-07 12:45:31 +00:00
|
|
|
fakesink->signal_handoffs = FALSE;
|
2002-03-30 17:05:03 +00:00
|
|
|
|
2002-05-26 21:54:27 +00:00
|
|
|
GST_FLAG_SET (fakesink, GST_ELEMENT_EVENT_AWARE);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2002-03-30 17:05:03 +00:00
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_fakesink_set_clock (GstElement * element, GstClock * clock)
|
|
|
|
{
|
2002-03-30 17:05:03 +00:00
|
|
|
GstFakeSink *sink;
|
|
|
|
|
|
|
|
sink = GST_FAKESINK (element);
|
|
|
|
|
|
|
|
sink->clock = clock;
|
2004-03-13 15:27:01 +00:00
|
|
|
}
|
2002-03-30 17:05:03 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static GstPad *
|
|
|
|
gst_fakesink_request_new_pad (GstElement * element, GstPadTemplate * templ,
|
|
|
|
const gchar * unused)
|
2001-07-11 16:45:43 +00:00
|
|
|
{
|
|
|
|
gchar *name;
|
|
|
|
GstPad *sinkpad;
|
|
|
|
GstFakeSink *fakesink;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_FAKESINK (element), NULL);
|
|
|
|
|
|
|
|
if (templ->direction != GST_PAD_SINK) {
|
|
|
|
g_warning ("gstfakesink: request new pad that is not a SINK pad\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
fakesink = GST_FAKESINK (element);
|
|
|
|
|
2001-12-15 22:37:35 +00:00
|
|
|
name = g_strdup_printf ("sink%d", GST_ELEMENT (fakesink)->numsinkpads);
|
2001-07-11 16:45:43 +00:00
|
|
|
|
|
|
|
sinkpad = gst_pad_new_from_template (templ, name);
|
2002-09-08 18:27:36 +00:00
|
|
|
g_free (name);
|
2003-11-05 01:40:29 +00:00
|
|
|
gst_pad_set_chain_function (sinkpad, GST_DEBUG_FUNCPTR (gst_fakesink_chain));
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-07-11 16:45:43 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (fakesink), sinkpad);
|
|
|
|
|
|
|
|
return sinkpad;
|
|
|
|
}
|
|
|
|
|
2001-01-04 10:54:27 +00:00
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_fakesink_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
2001-01-04 10:54:27 +00:00
|
|
|
{
|
|
|
|
GstFakeSink *sink;
|
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
|
|
|
sink = GST_FAKESINK (object);
|
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
switch (prop_id) {
|
2001-04-16 16:45:53 +00:00
|
|
|
case ARG_SILENT:
|
2001-06-25 01:20:11 +00:00
|
|
|
sink->silent = g_value_get_boolean (value);
|
2001-04-16 16:45:53 +00:00
|
|
|
break;
|
2003-06-03 20:22:52 +00:00
|
|
|
case ARG_STATE_ERROR:
|
|
|
|
sink->state_error = g_value_get_enum (value);
|
|
|
|
break;
|
2001-10-17 10:21:27 +00:00
|
|
|
case ARG_DUMP:
|
|
|
|
sink->dump = g_value_get_boolean (value);
|
|
|
|
break;
|
2002-03-30 17:05:03 +00:00
|
|
|
case ARG_SYNC:
|
|
|
|
sink->sync = g_value_get_boolean (value);
|
|
|
|
break;
|
2003-08-07 12:45:31 +00:00
|
|
|
case ARG_SIGNAL_HANDOFFS:
|
|
|
|
sink->signal_handoffs = g_value_get_boolean (value);
|
|
|
|
break;
|
2001-01-04 10:54:27 +00:00
|
|
|
default:
|
2004-04-20 16:25:41 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
2001-01-04 10:54:27 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void
|
|
|
|
gst_fakesink_get_property (GObject * object, guint prop_id, GValue * value,
|
|
|
|
GParamSpec * pspec)
|
2001-01-04 10:54:27 +00:00
|
|
|
{
|
|
|
|
GstFakeSink *sink;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-01-04 10:54:27 +00:00
|
|
|
/* it's not null if we got it, but it might not be ours */
|
|
|
|
g_return_if_fail (GST_IS_FAKESINK (object));
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-01-04 10:54:27 +00:00
|
|
|
sink = GST_FAKESINK (object);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
switch (prop_id) {
|
2001-07-11 15:51:40 +00:00
|
|
|
case ARG_NUM_SINKS:
|
2001-12-15 22:37:35 +00:00
|
|
|
g_value_set_int (value, GST_ELEMENT (sink)->numsinkpads);
|
2001-01-04 10:54:27 +00:00
|
|
|
break;
|
2003-06-03 20:22:52 +00:00
|
|
|
case ARG_STATE_ERROR:
|
|
|
|
g_value_set_enum (value, sink->state_error);
|
|
|
|
break;
|
2001-04-16 16:45:53 +00:00
|
|
|
case ARG_SILENT:
|
2001-06-25 01:20:11 +00:00
|
|
|
g_value_set_boolean (value, sink->silent);
|
2001-04-16 16:45:53 +00:00
|
|
|
break;
|
2001-10-17 10:21:27 +00:00
|
|
|
case ARG_DUMP:
|
|
|
|
g_value_set_boolean (value, sink->dump);
|
|
|
|
break;
|
2002-03-30 17:05:03 +00:00
|
|
|
case ARG_SYNC:
|
|
|
|
g_value_set_boolean (value, sink->sync);
|
|
|
|
break;
|
2003-08-07 12:45:31 +00:00
|
|
|
case ARG_SIGNAL_HANDOFFS:
|
|
|
|
g_value_set_boolean (value, sink->signal_handoffs);
|
|
|
|
break;
|
2002-02-06 21:57:35 +00:00
|
|
|
case ARG_LAST_MESSAGE:
|
|
|
|
g_value_set_string (value, sink->last_message);
|
|
|
|
break;
|
2001-01-04 10:54:27 +00:00
|
|
|
default:
|
2001-06-25 01:20:11 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
2001-01-04 10:54:27 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void
|
|
|
|
gst_fakesink_chain (GstPad * pad, GstData * _data)
|
2000-11-25 14:18:47 +00:00
|
|
|
{
|
2003-10-08 16:06:02 +00:00
|
|
|
GstBuffer *buf = GST_BUFFER (_data);
|
2000-01-30 09:03:00 +00:00
|
|
|
GstFakeSink *fakesink;
|
|
|
|
|
2000-11-25 14:18:47 +00:00
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_PAD (pad));
|
|
|
|
g_return_if_fail (buf != NULL);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2003-08-07 12:45:31 +00:00
|
|
|
fakesink = GST_FAKESINK (GST_OBJECT_PARENT (pad));
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2002-05-26 21:54:27 +00:00
|
|
|
if (GST_IS_EVENT (buf)) {
|
|
|
|
GstEvent *event = GST_EVENT (buf);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
|
|
|
if (!fakesink->silent) {
|
2002-11-21 23:52:30 +00:00
|
|
|
g_free (fakesink->last_message);
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
fakesink->last_message =
|
2004-03-15 19:27:17 +00:00
|
|
|
g_strdup_printf ("chain ******* (%s:%s)E (type: %d) %p",
|
|
|
|
GST_DEBUG_PAD_NAME (pad), GST_EVENT_TYPE (event), event);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-11-21 23:52:30 +00:00
|
|
|
g_object_notify (G_OBJECT (fakesink), "last_message");
|
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-05-26 21:54:27 +00:00
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
case GST_EVENT_DISCONTINUOUS:
|
2004-03-15 19:27:17 +00:00
|
|
|
if (fakesink->sync && fakesink->clock) {
|
|
|
|
gint64 value = GST_EVENT_DISCONT_OFFSET (event, 0).value;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2004-03-15 19:27:17 +00:00
|
|
|
gst_element_set_time (GST_ELEMENT (fakesink), value);
|
|
|
|
}
|
2002-05-26 21:54:27 +00:00
|
|
|
default:
|
2004-03-15 19:27:17 +00:00
|
|
|
gst_pad_event_default (pad, event);
|
|
|
|
break;
|
2002-05-26 21:54:27 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
if (fakesink->sync && fakesink->clock) {
|
gst/gstclock.*: deprecate old interface and disable functions that aren't in use anymore.
Original commit message from CVS:
2004-01-13 Benjamin Otte <in7y118@public.uni-hamburg.de>
* gst/gstclock.c: (gst_clock_class_init), (gst_clock_init),
(gst_clock_set_speed), (gst_clock_set_active),
(gst_clock_is_active), (gst_clock_reset),
(gst_clock_handle_discont):
* gst/gstclock.h:
deprecate old interface and disable functions that aren't in use
anymore.
* gst/gstelement.h:
* gst/gstelement.c: (gst_element_get_time), (gst_element_wait),
(gst_element_set_time), (gst_element_adjust_time):
add concept of "element time" and functions to get/set this time.
* gst/gstelement.c: (gst_element_change_state):
update element time correctly.
* gst/gstelement.c: (gst_element_get_compatible_pad_filtered):
This is a debug message, not a g_critical.
* gst/gstpad.c: (gst_pad_event_default):
handle discontinuous events right with element time.
* gst/gstscheduler.c: (gst_scheduler_state_transition):
update to clocking fixes.
set clocks on elements in READY=>PAUSED. The old behaviour caused
a wrong element time on the first element that started playing.
* gst/schedulers/gstbasicscheduler.c:
(gst_basic_scheduler_class_init):
* gst/schedulers/gstoptimalscheduler.c:
(gst_opt_scheduler_class_init):
remove code that just implements the default behaviour.
* gst/elements/gstfakesink.c: (gst_fakesink_chain):
update to use new clocking functions
* testsuite/clock/clock1.c: (gst_clock_debug), (main):
* testsuite/clock/clock2.c: (gst_clock_debug), (main):
update to test new element time.
* gst/autoplug/gstspideridentity.c: (gst_spider_identity_getcaps):
use _get_allowed_caps instead of _get_caps. This catches filtered
caps correctly.
* testsuite/debug/commandline.c:
update for new GST_DEBUG syntax.
* testsuite/threads/Makefile.am:
disable a test that only works sometimes.
2004-01-14 00:46:48 +00:00
|
|
|
gst_element_wait (GST_ELEMENT (fakesink), GST_BUFFER_TIMESTAMP (buf));
|
2002-03-30 17:05:03 +00:00
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
if (!fakesink->silent) {
|
2002-03-30 17:05:03 +00:00
|
|
|
g_free (fakesink->last_message);
|
2002-02-06 21:57:35 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
fakesink->last_message =
|
2004-03-15 19:27:17 +00:00
|
|
|
g_strdup_printf ("chain ******* (%s:%s)< (%d bytes, timestamp: %"
|
2004-04-20 16:25:41 +00:00
|
|
|
GST_TIME_FORMAT ", duration: %" GST_TIME_FORMAT ", offset: %"
|
2004-06-09 14:19:50 +00:00
|
|
|
G_GINT64_FORMAT ", offset_end: %" G_GINT64_FORMAT ", flags: %d) %p",
|
|
|
|
GST_DEBUG_PAD_NAME (pad), GST_BUFFER_SIZE (buf),
|
|
|
|
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buf)),
|
2004-04-20 16:25:41 +00:00
|
|
|
GST_TIME_ARGS (GST_BUFFER_DURATION (buf)), GST_BUFFER_OFFSET (buf),
|
2004-06-09 14:19:50 +00:00
|
|
|
GST_BUFFER_OFFSET_END (buf), GST_BUFFER_FLAGS (buf), buf);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-02-06 21:57:35 +00:00
|
|
|
g_object_notify (G_OBJECT (fakesink), "last_message");
|
2001-12-18 19:03:07 +00:00
|
|
|
}
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2003-08-07 12:45:31 +00:00
|
|
|
if (fakesink->signal_handoffs)
|
2004-03-13 15:27:01 +00:00
|
|
|
g_signal_emit (G_OBJECT (fakesink), gst_fakesink_signals[SIGNAL_HANDOFF], 0,
|
2004-03-15 19:27:17 +00:00
|
|
|
buf, pad);
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2002-03-31 14:04:50 +00:00
|
|
|
if (fakesink->dump) {
|
2001-10-17 10:21:27 +00:00
|
|
|
gst_util_dump_mem (GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf));
|
|
|
|
}
|
2000-12-22 16:14:33 +00:00
|
|
|
|
2001-05-10 20:28:51 +00:00
|
|
|
gst_buffer_unref (buf);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
2001-07-11 16:45:43 +00:00
|
|
|
|
2003-06-03 20:22:52 +00:00
|
|
|
static GstElementStateReturn
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_fakesink_change_state (GstElement * element)
|
2003-06-03 20:22:52 +00:00
|
|
|
{
|
|
|
|
GstFakeSink *fakesink = GST_FAKESINK (element);
|
|
|
|
|
|
|
|
switch (GST_STATE_TRANSITION (element)) {
|
|
|
|
case GST_STATE_NULL_TO_READY:
|
|
|
|
if (fakesink->state_error == FAKESINK_STATE_ERROR_NULL_READY)
|
2004-03-15 19:27:17 +00:00
|
|
|
goto error;
|
2003-06-03 20:22:52 +00:00
|
|
|
break;
|
|
|
|
case GST_STATE_READY_TO_PAUSED:
|
|
|
|
if (fakesink->state_error == FAKESINK_STATE_ERROR_READY_PAUSED)
|
2004-03-15 19:27:17 +00:00
|
|
|
goto error;
|
2003-06-03 20:22:52 +00:00
|
|
|
break;
|
|
|
|
case GST_STATE_PAUSED_TO_PLAYING:
|
|
|
|
if (fakesink->state_error == FAKESINK_STATE_ERROR_PAUSED_PLAYING)
|
2004-03-15 19:27:17 +00:00
|
|
|
goto error;
|
2003-06-03 20:22:52 +00:00
|
|
|
break;
|
|
|
|
case GST_STATE_PLAYING_TO_PAUSED:
|
|
|
|
if (fakesink->state_error == FAKESINK_STATE_ERROR_PLAYING_PAUSED)
|
2004-03-15 19:27:17 +00:00
|
|
|
goto error;
|
2003-06-03 20:22:52 +00:00
|
|
|
break;
|
|
|
|
case GST_STATE_PAUSED_TO_READY:
|
|
|
|
if (fakesink->state_error == FAKESINK_STATE_ERROR_PAUSED_READY)
|
2004-03-15 19:27:17 +00:00
|
|
|
goto error;
|
2003-06-03 20:22:52 +00:00
|
|
|
break;
|
|
|
|
case GST_STATE_READY_TO_NULL:
|
|
|
|
if (fakesink->state_error == FAKESINK_STATE_ERROR_READY_NULL)
|
2004-03-15 19:27:17 +00:00
|
|
|
goto error;
|
2003-08-07 12:45:31 +00:00
|
|
|
g_free (fakesink->last_message);
|
|
|
|
fakesink->last_message = NULL;
|
2003-06-03 20:22:52 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GST_ELEMENT_CLASS (parent_class)->change_state)
|
|
|
|
return GST_ELEMENT_CLASS (parent_class)->change_state (element);
|
|
|
|
|
|
|
|
return GST_STATE_SUCCESS;
|
|
|
|
|
|
|
|
error:
|
2004-01-31 19:30:31 +00:00
|
|
|
GST_ELEMENT_ERROR (element, CORE, STATE_CHANGE, (NULL), (NULL));
|
2003-06-03 20:22:52 +00:00
|
|
|
return GST_STATE_FAILURE;
|
|
|
|
}
|