2000-12-29 05:38:06 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
2005-03-28 14:54:33 +00:00
|
|
|
* 2005 Wim Taymans <wim@fluendo.com>
|
2000-12-29 05:38:06 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2005-08-05 13:42:10 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gstfakesink
|
|
|
|
* @short_description: black hole for data
|
|
|
|
* @see_also: #GstFakeSrc
|
|
|
|
*
|
|
|
|
* Dummy sink that swallows everything.
|
|
|
|
*/
|
2000-01-30 09:03:00 +00:00
|
|
|
|
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);
|
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (gst_fake_sink_debug);
|
|
|
|
#define GST_CAT_DEFAULT gst_fake_sink_debug
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-09-28 12:52:51 +00:00
|
|
|
static GstElementDetails gst_fake_sink_details =
|
|
|
|
GST_ELEMENT_DETAILS ("Fake Sink",
|
2004-03-13 15:27:01 +00:00
|
|
|
"Sink",
|
|
|
|
"Black hole for data",
|
2005-03-28 14:54:33 +00:00
|
|
|
"Erik Walthinsen <omega@cse.ogi.edu>, "
|
|
|
|
"Wim Taymans <wim@fluendo.com>, "
|
|
|
|
"Mr. 'frag-me-more' Vanderwingo <wingo@fluendo.com>");
|
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
|
|
|
|
};
|
|
|
|
|
2005-09-20 17:38:51 +00:00
|
|
|
#define DEFAULT_SYNC FALSE
|
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
#define DEFAULT_STATE_ERROR FAKE_SINK_STATE_ERROR_NONE
|
2005-03-28 14:54:33 +00:00
|
|
|
#define DEFAULT_SILENT FALSE
|
|
|
|
#define DEFAULT_DUMP FALSE
|
|
|
|
#define DEFAULT_SIGNAL_HANDOFFS FALSE
|
|
|
|
#define DEFAULT_LAST_MESSAGE NULL
|
2005-08-26 14:21:43 +00:00
|
|
|
#define DEFAULT_CAN_ACTIVATE_PUSH TRUE
|
|
|
|
#define DEFAULT_CAN_ACTIVATE_PULL FALSE
|
2005-03-28 14:54:33 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
enum
|
|
|
|
{
|
2005-08-26 14:21:43 +00:00
|
|
|
PROP_0,
|
|
|
|
PROP_STATE_ERROR,
|
|
|
|
PROP_SILENT,
|
|
|
|
PROP_DUMP,
|
|
|
|
PROP_SIGNAL_HANDOFFS,
|
|
|
|
PROP_LAST_MESSAGE,
|
|
|
|
PROP_CAN_ACTIVATE_PUSH,
|
|
|
|
PROP_CAN_ACTIVATE_PULL
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
#define GST_TYPE_FAKE_SINK_STATE_ERROR (gst_fake_sink_state_error_get_type())
|
2003-06-03 20:22:52 +00:00
|
|
|
static GType
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_sink_state_error_get_type (void)
|
2003-06-03 20:22:52 +00:00
|
|
|
{
|
|
|
|
static GType fakesink_state_error_type = 0;
|
|
|
|
static GEnumValue fakesink_state_error[] = {
|
2005-07-14 09:35:12 +00:00
|
|
|
{FAKE_SINK_STATE_ERROR_NONE, "0", "No state change errors"},
|
|
|
|
{FAKE_SINK_STATE_ERROR_NULL_READY, "1",
|
2004-03-15 19:27:17 +00:00
|
|
|
"Fail state change from NULL to READY"},
|
2005-07-14 09:35:12 +00:00
|
|
|
{FAKE_SINK_STATE_ERROR_READY_PAUSED, "2",
|
2004-03-15 19:27:17 +00:00
|
|
|
"Fail state change from READY to PAUSED"},
|
2005-07-14 09:35:12 +00:00
|
|
|
{FAKE_SINK_STATE_ERROR_PAUSED_PLAYING, "3",
|
2004-03-15 19:27:17 +00:00
|
|
|
"Fail state change from PAUSED to PLAYING"},
|
2005-07-14 09:35:12 +00:00
|
|
|
{FAKE_SINK_STATE_ERROR_PLAYING_PAUSED, "4",
|
2004-03-15 19:27:17 +00:00
|
|
|
"Fail state change from PLAYING to PAUSED"},
|
2005-07-14 09:35:12 +00:00
|
|
|
{FAKE_SINK_STATE_ERROR_PAUSED_READY, "5",
|
2004-03-15 19:27:17 +00:00
|
|
|
"Fail state change from PAUSED to READY"},
|
2005-07-14 09:35:12 +00:00
|
|
|
{FAKE_SINK_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) \
|
2005-07-14 09:35:12 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_fake_sink_debug, "fakesink", 0, "fakesink element");
|
2004-01-08 04:10:18 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
GST_BOILERPLATE_FULL (GstFakeSink, gst_fake_sink, GstBaseSink,
|
2005-07-10 12:03:13 +00:00
|
|
|
GST_TYPE_BASE_SINK, _do_init);
|
2001-01-04 10:54:27 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
static void gst_fake_sink_set_property (GObject * object, guint prop_id,
|
2004-03-13 15:27:01 +00:00
|
|
|
const GValue * value, GParamSpec * pspec);
|
2005-07-14 09:35:12 +00:00
|
|
|
static void gst_fake_sink_get_property (GObject * object, guint prop_id,
|
2004-03-13 15:27:01 +00:00
|
|
|
GValue * value, GParamSpec * pspec);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-09-02 15:42:00 +00:00
|
|
|
static GstStateChangeReturn gst_fake_sink_change_state (GstElement * element,
|
|
|
|
GstStateChange transition);
|
2003-06-03 20:22:52 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
static GstFlowReturn gst_fake_sink_preroll (GstBaseSink * bsink,
|
2005-03-28 14:54:33 +00:00
|
|
|
GstBuffer * buffer);
|
2005-07-14 09:35:12 +00:00
|
|
|
static GstFlowReturn gst_fake_sink_render (GstBaseSink * bsink,
|
2005-03-28 14:54:33 +00:00
|
|
|
GstBuffer * buffer);
|
2005-07-14 09:35:12 +00:00
|
|
|
static gboolean gst_fake_sink_event (GstBaseSink * bsink, GstEvent * event);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
static guint gst_fake_sink_signals[LAST_SIGNAL] = { 0 };
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
static void
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_sink_base_init (gpointer g_class)
|
2003-10-31 19:32:47 +00:00
|
|
|
{
|
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));
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_element_class_set_details (gstelement_class, &gst_fake_sink_details);
|
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
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_sink_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;
|
2005-06-28 12:45:21 +00:00
|
|
|
GstBaseSinkClass *gstbase_sink_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;
|
2005-06-28 12:45:21 +00:00
|
|
|
gstbase_sink_class = (GstBaseSinkClass *) klass;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_fake_sink_set_property);
|
|
|
|
gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_fake_sink_get_property);
|
2001-01-04 10:54:27 +00:00
|
|
|
|
2005-08-26 14:21:43 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_STATE_ERROR,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_enum ("state_error", "State Error",
|
2005-07-14 09:35:12 +00:00
|
|
|
"Generate a state change error", GST_TYPE_FAKE_SINK_STATE_ERROR,
|
2005-03-28 14:54:33 +00:00
|
|
|
DEFAULT_STATE_ERROR, G_PARAM_READWRITE));
|
2005-08-26 14:21:43 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_LAST_MESSAGE,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_string ("last_message", "Last Message",
|
2005-03-28 14:54:33 +00:00
|
|
|
"The message describing current status", DEFAULT_LAST_MESSAGE,
|
|
|
|
G_PARAM_READABLE));
|
2005-08-26 14:21:43 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_SIGNAL_HANDOFFS,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_boolean ("signal-handoffs", "Signal handoffs",
|
2005-03-28 14:54:33 +00:00
|
|
|
"Send a signal before unreffing the buffer", DEFAULT_SIGNAL_HANDOFFS,
|
2004-03-15 19:27:17 +00:00
|
|
|
G_PARAM_READWRITE));
|
2005-08-26 14:21:43 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_SILENT,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_boolean ("silent", "Silent",
|
2005-03-28 14:54:33 +00:00
|
|
|
"Don't produce last_message events", DEFAULT_SILENT,
|
|
|
|
G_PARAM_READWRITE));
|
2005-08-26 14:21:43 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_DUMP,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_boolean ("dump", "Dump", "Dump received bytes to stdout",
|
2005-03-28 14:54:33 +00:00
|
|
|
DEFAULT_DUMP, G_PARAM_READWRITE));
|
2005-08-26 14:21:43 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass),
|
|
|
|
PROP_CAN_ACTIVATE_PUSH,
|
|
|
|
g_param_spec_boolean ("can-activate-push", "Can activate push",
|
|
|
|
"Can activate in push mode", DEFAULT_CAN_ACTIVATE_PUSH,
|
|
|
|
G_PARAM_READWRITE));
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass),
|
|
|
|
PROP_CAN_ACTIVATE_PULL,
|
|
|
|
g_param_spec_boolean ("can-activate-pull", "Can activate pull",
|
|
|
|
"Can activate in pull mode", DEFAULT_CAN_ACTIVATE_PULL,
|
|
|
|
G_PARAM_READWRITE));
|
2001-01-04 10:54:27 +00:00
|
|
|
|
2005-08-15 16:57:34 +00:00
|
|
|
/**
|
|
|
|
* GstFakeSink::handoff:
|
|
|
|
* @fakesink: the fakesink instance
|
|
|
|
* @buffer: the buffer that just has been received
|
|
|
|
* @pad: the pad that received it
|
|
|
|
*
|
|
|
|
* This signal gets emitted before unreffing the buffer.
|
|
|
|
*/
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_sink_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,
|
check/Makefile.am: remove GstData checks
Original commit message from CVS:
* check/Makefile.am: remove GstData checks
* check/gst-libs/gdp.c: (START_TEST): fix for API changes
* gst/Makefile.am: add miniobject, remove data
* gst/gst.h: add miniobject, remove data
* gst/gstdata.c: remove
* gst/gstdata.h: remove
* gst/gstdata_private.h: remove
* gst/gsttypes.h: remove GstEvent and GstMessage
* gst/gstelement.c: (gst_element_post_message): fix for API changes
* gst/gstmarshal.list: change BOXED -> OBJECT
Implement GstMiniObject.
* gst/gstminiobject.c:
* gst/gstminiobject.h:
Modify to be subclasses of GstMiniObject.
* gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
(gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
(gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
(gst_subbuffer_get_type), (gst_subbuffer_init),
(gst_buffer_create_sub), (gst_buffer_is_span_fast),
(gst_buffer_span):
* gst/gstbuffer.h:
* gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
(gst_event_class_init), (gst_event_init), (gst_event_finalize),
(_gst_event_copy), (gst_event_new):
* gst/gstevent.h:
* gst/gstmessage.c: (_gst_message_initialize),
(gst_message_get_type), (gst_message_class_init),
(gst_message_init), (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_application):
* gst/gstmessage.h:
* gst/gstprobe.c: (gst_probe_perform),
(gst_probe_dispatcher_dispatch):
* gst/gstprobe.h:
* gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
(gst_query_class_init), (gst_query_finalize), (gst_query_init),
(_gst_query_copy), (gst_query_new):
Update elements for GstData -> GstMiniObject changes
* gst/gstquery.h:
* gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
(gst_queue_chain), (gst_queue_loop):
* gst/elements/gstbufferstore.c:
(gst_buffer_store_add_buffer_func),
(gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_render):
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
* gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
(gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
(gst_mmap_buffer_finalize), (gst_filesrc_map_region),
(gst_filesrc_create_read):
* gst/elements/gstidentity.c: (gst_identity_class_init):
* gst/elements/gsttypefindelement.c:
(gst_type_find_element_src_event), (free_entry_buffers),
(gst_type_find_element_handle_event):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_header_from_buffer):
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/dataprotocol/dp-private.h:
2005-05-16 20:21:55 +00:00
|
|
|
gst_marshal_VOID__OBJECT_OBJECT, G_TYPE_NONE, 2,
|
2005-05-27 09:27:35 +00:00
|
|
|
GST_TYPE_BUFFER, GST_TYPE_PAD);
|
2000-12-22 16:14:33 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
gstelement_class->change_state =
|
2005-07-14 09:35:12 +00:00
|
|
|
GST_DEBUG_FUNCPTR (gst_fake_sink_change_state);
|
2005-03-28 14:54:33 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
gstbase_sink_class->event = GST_DEBUG_FUNCPTR (gst_fake_sink_event);
|
|
|
|
gstbase_sink_class->preroll = GST_DEBUG_FUNCPTR (gst_fake_sink_preroll);
|
|
|
|
gstbase_sink_class->render = GST_DEBUG_FUNCPTR (gst_fake_sink_render);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void
|
2005-08-28 17:45:58 +00:00
|
|
|
gst_fake_sink_init (GstFakeSink * fakesink, GstFakeSinkClass * g_class)
|
2000-11-25 14:18:47 +00:00
|
|
|
{
|
2005-03-28 14:54:33 +00:00
|
|
|
fakesink->silent = DEFAULT_SILENT;
|
|
|
|
fakesink->dump = DEFAULT_DUMP;
|
2005-09-20 17:38:51 +00:00
|
|
|
GST_BASE_SINK (fakesink)->sync = DEFAULT_SYNC;
|
2005-09-02 23:17:26 +00:00
|
|
|
fakesink->last_message = g_strdup (DEFAULT_LAST_MESSAGE);
|
2005-03-28 14:54:33 +00:00
|
|
|
fakesink->state_error = DEFAULT_STATE_ERROR;
|
|
|
|
fakesink->signal_handoffs = DEFAULT_SIGNAL_HANDOFFS;
|
2001-07-11 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
2001-01-04 10:54:27 +00:00
|
|
|
static void
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_sink_set_property (GObject * object, guint prop_id,
|
2004-03-13 15:27:01 +00:00
|
|
|
const GValue * value, GParamSpec * pspec)
|
2001-01-04 10:54:27 +00:00
|
|
|
{
|
|
|
|
GstFakeSink *sink;
|
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
sink = GST_FAKE_SINK (object);
|
2001-01-04 10:54:27 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
switch (prop_id) {
|
2005-08-26 14:21:43 +00:00
|
|
|
case PROP_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;
|
2005-08-26 14:21:43 +00:00
|
|
|
case PROP_STATE_ERROR:
|
2003-06-03 20:22:52 +00:00
|
|
|
sink->state_error = g_value_get_enum (value);
|
|
|
|
break;
|
2005-08-26 14:21:43 +00:00
|
|
|
case PROP_DUMP:
|
2001-10-17 10:21:27 +00:00
|
|
|
sink->dump = g_value_get_boolean (value);
|
|
|
|
break;
|
2005-08-26 14:21:43 +00:00
|
|
|
case PROP_SIGNAL_HANDOFFS:
|
2003-08-07 12:45:31 +00:00
|
|
|
sink->signal_handoffs = g_value_get_boolean (value);
|
|
|
|
break;
|
2005-08-26 14:21:43 +00:00
|
|
|
case PROP_CAN_ACTIVATE_PUSH:
|
|
|
|
GST_BASE_SINK (sink)->can_activate_push = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case PROP_CAN_ACTIVATE_PULL:
|
|
|
|
GST_BASE_SINK (sink)->can_activate_pull = 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
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_sink_get_property (GObject * object, guint prop_id, GValue * value,
|
2004-03-13 15:27:01 +00:00
|
|
|
GParamSpec * pspec)
|
2001-01-04 10:54:27 +00:00
|
|
|
{
|
|
|
|
GstFakeSink *sink;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
sink = GST_FAKE_SINK (object);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
switch (prop_id) {
|
2005-08-26 14:21:43 +00:00
|
|
|
case PROP_STATE_ERROR:
|
2003-06-03 20:22:52 +00:00
|
|
|
g_value_set_enum (value, sink->state_error);
|
|
|
|
break;
|
2005-08-26 14:21:43 +00:00
|
|
|
case PROP_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;
|
2005-08-26 14:21:43 +00:00
|
|
|
case PROP_DUMP:
|
2001-10-17 10:21:27 +00:00
|
|
|
g_value_set_boolean (value, sink->dump);
|
|
|
|
break;
|
2005-08-26 14:21:43 +00:00
|
|
|
case PROP_SIGNAL_HANDOFFS:
|
2003-08-07 12:45:31 +00:00
|
|
|
g_value_set_boolean (value, sink->signal_handoffs);
|
|
|
|
break;
|
2005-08-26 14:21:43 +00:00
|
|
|
case PROP_LAST_MESSAGE:
|
2005-10-04 18:46:09 +00:00
|
|
|
GST_LOCK (sink);
|
2002-02-06 21:57:35 +00:00
|
|
|
g_value_set_string (value, sink->last_message);
|
2005-10-04 18:46:09 +00:00
|
|
|
GST_UNLOCK (sink);
|
2002-02-06 21:57:35 +00:00
|
|
|
break;
|
2005-08-26 14:21:43 +00:00
|
|
|
case PROP_CAN_ACTIVATE_PUSH:
|
|
|
|
g_value_set_boolean (value, GST_BASE_SINK (sink)->can_activate_push);
|
|
|
|
break;
|
|
|
|
case PROP_CAN_ACTIVATE_PULL:
|
|
|
|
g_value_set_boolean (value, GST_BASE_SINK (sink)->can_activate_pull);
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
gst/: Added object to help in making collect pad based elements.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.c: (gst_basesrc_init),
(gst_basesrc_set_dataflow_funcs), (gst_basesrc_query):
* gst/base/gstcollectpads.c: (gst_collectpads_get_type),
(gst_collectpads_class_init), (gst_collectpads_init),
(gst_collectpads_finalize), (gst_collectpads_new),
(gst_collectpads_set_function), (gst_collectpads_add_pad),
(find_pad), (gst_collectpads_remove_pad),
(gst_collectpads_is_active), (gst_collectpads_collect),
(gst_collectpads_collect_range), (gst_collectpads_start),
(gst_collectpads_stop), (gst_collectpads_peek),
(gst_collectpads_pop), (gst_collectpads_available),
(gst_collectpads_read), (gst_collectpads_flush),
(gst_collectpads_chain):
* gst/base/gstcollectpads.h:
* gst/elements/Makefile.am:
* gst/elements/gstelements.c:
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_get_times), (gst_fakesink_event),
(gst_fakesink_preroll), (gst_fakesink_render):
* gst/elements/gstfilesink.c: (gst_filesink_class_init),
(gst_filesink_init), (gst_filesink_set_location),
(gst_filesink_open_file), (gst_filesink_close_file),
(gst_filesink_pad_query), (gst_filesink_event),
(gst_filesink_render), (gst_filesink_change_state):
* gst/elements/gstfilesink.h:
Added object to help in making collect pad based elements.
Ported filesink.
Make event function in sink baseclass return gboolean.
2005-05-05 09:31:59 +00:00
|
|
|
static gboolean
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_sink_event (GstBaseSink * bsink, GstEvent * event)
|
2005-03-28 14:54:33 +00:00
|
|
|
{
|
2005-07-14 09:35:12 +00:00
|
|
|
GstFakeSink *sink = GST_FAKE_SINK (bsink);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2005-03-28 14:54:33 +00:00
|
|
|
if (!sink->silent) {
|
2005-10-12 09:02:42 +00:00
|
|
|
const GstStructure *s;
|
Some docs updates
Original commit message from CVS:
* CHANGES-0.9:
* docs/design/part-TODO.txt:
* docs/design/part-events.txt:
Some docs updates
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_event), (gst_base_sink_do_sync),
(gst_base_sink_activate_push), (gst_base_sink_activate_pull):
* gst/base/gstbasesrc.c: (gst_base_src_send_discont),
(gst_base_src_do_seek), (gst_base_src_event_handler),
(gst_base_src_loop):
* gst/base/gstbasetransform.c: (gst_base_transform_transform_caps),
(gst_base_transform_configure_caps), (gst_base_transform_setcaps),
(gst_base_transform_get_size), (gst_base_transform_buffer_alloc),
(gst_base_transform_event), (gst_base_transform_handle_buffer),
(gst_base_transform_set_passthrough),
(gst_base_transform_is_passthrough):
* gst/elements/gstfakesink.c: (gst_fake_sink_event):
* gst/elements/gstfilesink.c: (gst_file_sink_event):
Event updates.
* gst/gstbuffer.h:
Use faster casts.
* gst/gstelement.c: (gst_element_seek):
* gst/gstelement.h:
Update gst_element_seek.
* gst/gstevent.c: (gst_event_finalize), (_gst_event_copy),
(gst_event_new), (gst_event_new_custom), (gst_event_get_structure),
(gst_event_new_flush_start), (gst_event_new_flush_stop),
(gst_event_new_eos), (gst_event_new_newsegment),
(gst_event_parse_newsegment), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_filler), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_new_seek),
(gst_event_parse_seek), (gst_event_new_navigation):
* gst/gstevent.h:
Make GstEvent use GstStructure. Add parsing code, make sure the
API is sufficiently generic.
Mark possible directions of events and serialization.
* gst/gstmessage.c: (gst_message_init), (gst_message_finalize),
(_gst_message_copy), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_custom),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done):
Small cleanups.
* gst/gstpad.c: (gst_pad_get_caps_unlocked), (gst_pad_accept_caps),
(gst_pad_set_caps), (gst_pad_send_event):
Update for new events.
Catch events sent in wrong directions.
* gst/gstqueue.c: (gst_queue_link_src),
(gst_queue_handle_sink_event), (gst_queue_chain), (gst_queue_loop),
(gst_queue_handle_src_query):
Event updates.
* gst/gsttag.c:
* gst/gsttag.h:
Remove event code from this file.
* libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_event),
(gst_dp_event_from_packet):
Event updates.
2005-07-27 18:33:03 +00:00
|
|
|
gchar *sstr;
|
|
|
|
|
2005-10-04 18:46:09 +00:00
|
|
|
GST_LOCK (sink);
|
2005-03-28 14:54:33 +00:00
|
|
|
g_free (sink->last_message);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2005-07-27 18:47:48 +00:00
|
|
|
if ((s = gst_event_get_structure (event)))
|
|
|
|
sstr = gst_structure_to_string (s);
|
|
|
|
else
|
|
|
|
sstr = g_strdup ("");
|
Some docs updates
Original commit message from CVS:
* CHANGES-0.9:
* docs/design/part-TODO.txt:
* docs/design/part-events.txt:
Some docs updates
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_event), (gst_base_sink_do_sync),
(gst_base_sink_activate_push), (gst_base_sink_activate_pull):
* gst/base/gstbasesrc.c: (gst_base_src_send_discont),
(gst_base_src_do_seek), (gst_base_src_event_handler),
(gst_base_src_loop):
* gst/base/gstbasetransform.c: (gst_base_transform_transform_caps),
(gst_base_transform_configure_caps), (gst_base_transform_setcaps),
(gst_base_transform_get_size), (gst_base_transform_buffer_alloc),
(gst_base_transform_event), (gst_base_transform_handle_buffer),
(gst_base_transform_set_passthrough),
(gst_base_transform_is_passthrough):
* gst/elements/gstfakesink.c: (gst_fake_sink_event):
* gst/elements/gstfilesink.c: (gst_file_sink_event):
Event updates.
* gst/gstbuffer.h:
Use faster casts.
* gst/gstelement.c: (gst_element_seek):
* gst/gstelement.h:
Update gst_element_seek.
* gst/gstevent.c: (gst_event_finalize), (_gst_event_copy),
(gst_event_new), (gst_event_new_custom), (gst_event_get_structure),
(gst_event_new_flush_start), (gst_event_new_flush_stop),
(gst_event_new_eos), (gst_event_new_newsegment),
(gst_event_parse_newsegment), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_filler), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_new_seek),
(gst_event_parse_seek), (gst_event_new_navigation):
* gst/gstevent.h:
Make GstEvent use GstStructure. Add parsing code, make sure the
API is sufficiently generic.
Mark possible directions of events and serialization.
* gst/gstmessage.c: (gst_message_init), (gst_message_finalize),
(_gst_message_copy), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_custom),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done):
Small cleanups.
* gst/gstpad.c: (gst_pad_get_caps_unlocked), (gst_pad_accept_caps),
(gst_pad_set_caps), (gst_pad_send_event):
Update for new events.
Catch events sent in wrong directions.
* gst/gstqueue.c: (gst_queue_link_src),
(gst_queue_handle_sink_event), (gst_queue_chain), (gst_queue_loop),
(gst_queue_handle_src_query):
Event updates.
* gst/gsttag.c:
* gst/gsttag.h:
Remove event code from this file.
* libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_event),
(gst_dp_event_from_packet):
Event updates.
2005-07-27 18:33:03 +00:00
|
|
|
|
2005-03-28 14:54:33 +00:00
|
|
|
sink->last_message =
|
Some docs updates
Original commit message from CVS:
* CHANGES-0.9:
* docs/design/part-TODO.txt:
* docs/design/part-events.txt:
Some docs updates
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_event), (gst_base_sink_do_sync),
(gst_base_sink_activate_push), (gst_base_sink_activate_pull):
* gst/base/gstbasesrc.c: (gst_base_src_send_discont),
(gst_base_src_do_seek), (gst_base_src_event_handler),
(gst_base_src_loop):
* gst/base/gstbasetransform.c: (gst_base_transform_transform_caps),
(gst_base_transform_configure_caps), (gst_base_transform_setcaps),
(gst_base_transform_get_size), (gst_base_transform_buffer_alloc),
(gst_base_transform_event), (gst_base_transform_handle_buffer),
(gst_base_transform_set_passthrough),
(gst_base_transform_is_passthrough):
* gst/elements/gstfakesink.c: (gst_fake_sink_event):
* gst/elements/gstfilesink.c: (gst_file_sink_event):
Event updates.
* gst/gstbuffer.h:
Use faster casts.
* gst/gstelement.c: (gst_element_seek):
* gst/gstelement.h:
Update gst_element_seek.
* gst/gstevent.c: (gst_event_finalize), (_gst_event_copy),
(gst_event_new), (gst_event_new_custom), (gst_event_get_structure),
(gst_event_new_flush_start), (gst_event_new_flush_stop),
(gst_event_new_eos), (gst_event_new_newsegment),
(gst_event_parse_newsegment), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_filler), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_new_seek),
(gst_event_parse_seek), (gst_event_new_navigation):
* gst/gstevent.h:
Make GstEvent use GstStructure. Add parsing code, make sure the
API is sufficiently generic.
Mark possible directions of events and serialization.
* gst/gstmessage.c: (gst_message_init), (gst_message_finalize),
(_gst_message_copy), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_custom),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done):
Small cleanups.
* gst/gstpad.c: (gst_pad_get_caps_unlocked), (gst_pad_accept_caps),
(gst_pad_set_caps), (gst_pad_send_event):
Update for new events.
Catch events sent in wrong directions.
* gst/gstqueue.c: (gst_queue_link_src),
(gst_queue_handle_sink_event), (gst_queue_chain), (gst_queue_loop),
(gst_queue_handle_src_query):
Event updates.
* gst/gsttag.c:
* gst/gsttag.h:
Remove event code from this file.
* libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_event),
(gst_dp_event_from_packet):
Event updates.
2005-07-27 18:33:03 +00:00
|
|
|
g_strdup_printf ("event ******* E (type: %d, %s) %p",
|
|
|
|
GST_EVENT_TYPE (event), sstr, event);
|
|
|
|
g_free (sstr);
|
2005-10-04 18:46:09 +00:00
|
|
|
GST_UNLOCK (sink);
|
2002-11-21 23:52:30 +00:00
|
|
|
|
2005-03-28 14:54:33 +00:00
|
|
|
g_object_notify (G_OBJECT (sink), "last_message");
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
gst/: Added object to help in making collect pad based elements.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.c: (gst_basesrc_init),
(gst_basesrc_set_dataflow_funcs), (gst_basesrc_query):
* gst/base/gstcollectpads.c: (gst_collectpads_get_type),
(gst_collectpads_class_init), (gst_collectpads_init),
(gst_collectpads_finalize), (gst_collectpads_new),
(gst_collectpads_set_function), (gst_collectpads_add_pad),
(find_pad), (gst_collectpads_remove_pad),
(gst_collectpads_is_active), (gst_collectpads_collect),
(gst_collectpads_collect_range), (gst_collectpads_start),
(gst_collectpads_stop), (gst_collectpads_peek),
(gst_collectpads_pop), (gst_collectpads_available),
(gst_collectpads_read), (gst_collectpads_flush),
(gst_collectpads_chain):
* gst/base/gstcollectpads.h:
* gst/elements/Makefile.am:
* gst/elements/gstelements.c:
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_get_times), (gst_fakesink_event),
(gst_fakesink_preroll), (gst_fakesink_render):
* gst/elements/gstfilesink.c: (gst_filesink_class_init),
(gst_filesink_init), (gst_filesink_set_location),
(gst_filesink_open_file), (gst_filesink_close_file),
(gst_filesink_pad_query), (gst_filesink_event),
(gst_filesink_render), (gst_filesink_change_state):
* gst/elements/gstfilesink.h:
Added object to help in making collect pad based elements.
Ported filesink.
Make event function in sink baseclass return gboolean.
2005-05-05 09:31:59 +00:00
|
|
|
|
|
|
|
return TRUE;
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
static GstFlowReturn
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_sink_preroll (GstBaseSink * bsink, GstBuffer * buffer)
|
2005-03-21 17:34:02 +00:00
|
|
|
{
|
2005-07-14 09:35:12 +00:00
|
|
|
GstFakeSink *sink = GST_FAKE_SINK (bsink);
|
2005-03-28 14:54:33 +00:00
|
|
|
|
|
|
|
if (!sink->silent) {
|
2005-10-04 18:46:09 +00:00
|
|
|
GST_LOCK (sink);
|
2005-03-28 14:54:33 +00:00
|
|
|
g_free (sink->last_message);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2005-03-28 14:54:33 +00:00
|
|
|
sink->last_message = g_strdup_printf ("preroll ******* ");
|
2005-10-04 18:46:09 +00:00
|
|
|
GST_UNLOCK (sink);
|
2002-05-26 21:54:27 +00:00
|
|
|
|
2005-03-28 14:54:33 +00:00
|
|
|
g_object_notify (G_OBJECT (sink), "last_message");
|
2002-03-30 17:05:03 +00:00
|
|
|
}
|
2005-03-28 14:54:33 +00:00
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
2002-03-30 17:05:03 +00:00
|
|
|
|
2005-03-28 14:54:33 +00:00
|
|
|
static GstFlowReturn
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_sink_render (GstBaseSink * bsink, GstBuffer * buf)
|
2005-03-28 14:54:33 +00:00
|
|
|
{
|
2005-07-14 09:35:12 +00:00
|
|
|
GstFakeSink *sink = GST_FAKE_SINK (bsink);
|
2002-02-06 21:57:35 +00:00
|
|
|
|
2005-03-28 14:54:33 +00:00
|
|
|
if (!sink->silent) {
|
2005-10-04 18:46:09 +00:00
|
|
|
GST_LOCK (sink);
|
2005-03-28 14:54:33 +00:00
|
|
|
g_free (sink->last_message);
|
|
|
|
|
|
|
|
sink->last_message =
|
|
|
|
g_strdup_printf ("chain ******* < (%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",
|
2005-03-28 14:54:33 +00:00
|
|
|
GST_BUFFER_SIZE (buf),
|
2004-06-09 14:19:50 +00:00
|
|
|
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),
|
check/Makefile.am: remove GstData checks
Original commit message from CVS:
* check/Makefile.am: remove GstData checks
* check/gst-libs/gdp.c: (START_TEST): fix for API changes
* gst/Makefile.am: add miniobject, remove data
* gst/gst.h: add miniobject, remove data
* gst/gstdata.c: remove
* gst/gstdata.h: remove
* gst/gstdata_private.h: remove
* gst/gsttypes.h: remove GstEvent and GstMessage
* gst/gstelement.c: (gst_element_post_message): fix for API changes
* gst/gstmarshal.list: change BOXED -> OBJECT
Implement GstMiniObject.
* gst/gstminiobject.c:
* gst/gstminiobject.h:
Modify to be subclasses of GstMiniObject.
* gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
(gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
(gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
(gst_subbuffer_get_type), (gst_subbuffer_init),
(gst_buffer_create_sub), (gst_buffer_is_span_fast),
(gst_buffer_span):
* gst/gstbuffer.h:
* gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
(gst_event_class_init), (gst_event_init), (gst_event_finalize),
(_gst_event_copy), (gst_event_new):
* gst/gstevent.h:
* gst/gstmessage.c: (_gst_message_initialize),
(gst_message_get_type), (gst_message_class_init),
(gst_message_init), (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_application):
* gst/gstmessage.h:
* gst/gstprobe.c: (gst_probe_perform),
(gst_probe_dispatcher_dispatch):
* gst/gstprobe.h:
* gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
(gst_query_class_init), (gst_query_finalize), (gst_query_init),
(_gst_query_copy), (gst_query_new):
Update elements for GstData -> GstMiniObject changes
* gst/gstquery.h:
* gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
(gst_queue_chain), (gst_queue_loop):
* gst/elements/gstbufferstore.c:
(gst_buffer_store_add_buffer_func),
(gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_render):
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
* gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
(gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
(gst_mmap_buffer_finalize), (gst_filesrc_map_region),
(gst_filesrc_create_read):
* gst/elements/gstidentity.c: (gst_identity_class_init):
* gst/elements/gsttypefindelement.c:
(gst_type_find_element_src_event), (free_entry_buffers),
(gst_type_find_element_handle_event):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_header_from_buffer):
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/dataprotocol/dp-private.h:
2005-05-16 20:21:55 +00:00
|
|
|
GST_BUFFER_OFFSET_END (buf), GST_MINI_OBJECT (buf)->flags, buf);
|
2005-10-04 18:46:09 +00:00
|
|
|
GST_UNLOCK (sink);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2005-03-28 14:54:33 +00:00
|
|
|
g_object_notify (G_OBJECT (sink), "last_message");
|
2001-12-18 19:03:07 +00:00
|
|
|
}
|
2005-03-28 14:54:33 +00:00
|
|
|
if (sink->signal_handoffs)
|
2005-07-14 09:35:12 +00:00
|
|
|
g_signal_emit (G_OBJECT (sink), gst_fake_sink_signals[SIGNAL_HANDOFF], 0,
|
2005-05-11 03:37:10 +00:00
|
|
|
buf, bsink->sinkpad);
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2005-03-28 14:54:33 +00:00
|
|
|
if (sink->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
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
return GST_FLOW_OK;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
2001-07-11 16:45:43 +00:00
|
|
|
|
2005-09-02 15:42:00 +00:00
|
|
|
static GstStateChangeReturn
|
|
|
|
gst_fake_sink_change_state (GstElement * element, GstStateChange transition)
|
2003-06-03 20:22:52 +00:00
|
|
|
{
|
2005-09-02 15:42:00 +00:00
|
|
|
GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
|
2005-07-14 09:35:12 +00:00
|
|
|
GstFakeSink *fakesink = GST_FAKE_SINK (element);
|
2003-06-03 20:22:52 +00:00
|
|
|
|
2005-03-28 14:54:33 +00:00
|
|
|
switch (transition) {
|
2005-09-02 15:42:00 +00:00
|
|
|
case GST_STATE_CHANGE_NULL_TO_READY:
|
2005-07-14 09:35:12 +00:00
|
|
|
if (fakesink->state_error == FAKE_SINK_STATE_ERROR_NULL_READY)
|
2004-03-15 19:27:17 +00:00
|
|
|
goto error;
|
2003-06-03 20:22:52 +00:00
|
|
|
break;
|
2005-09-02 15:42:00 +00:00
|
|
|
case GST_STATE_CHANGE_READY_TO_PAUSED:
|
2005-07-14 09:35:12 +00:00
|
|
|
if (fakesink->state_error == FAKE_SINK_STATE_ERROR_READY_PAUSED)
|
2004-03-15 19:27:17 +00:00
|
|
|
goto error;
|
2003-06-03 20:22:52 +00:00
|
|
|
break;
|
2005-09-02 15:42:00 +00:00
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
|
2005-07-14 09:35:12 +00:00
|
|
|
if (fakesink->state_error == FAKE_SINK_STATE_ERROR_PAUSED_PLAYING)
|
2004-03-15 19:27:17 +00:00
|
|
|
goto error;
|
2003-06-03 20:22:52 +00:00
|
|
|
break;
|
2005-09-02 23:17:26 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
|
|
|
|
|
|
|
|
switch (transition) {
|
2005-09-02 15:42:00 +00:00
|
|
|
case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
|
2005-07-14 09:35:12 +00:00
|
|
|
if (fakesink->state_error == FAKE_SINK_STATE_ERROR_PLAYING_PAUSED)
|
2004-03-15 19:27:17 +00:00
|
|
|
goto error;
|
2003-06-03 20:22:52 +00:00
|
|
|
break;
|
2005-09-02 15:42:00 +00:00
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
2005-07-14 09:35:12 +00:00
|
|
|
if (fakesink->state_error == FAKE_SINK_STATE_ERROR_PAUSED_READY)
|
2004-03-15 19:27:17 +00:00
|
|
|
goto error;
|
2003-06-03 20:22:52 +00:00
|
|
|
break;
|
2005-09-02 15:42:00 +00:00
|
|
|
case GST_STATE_CHANGE_READY_TO_NULL:
|
2005-07-14 09:35:12 +00:00
|
|
|
if (fakesink->state_error == FAKE_SINK_STATE_ERROR_READY_NULL)
|
2004-03-15 19:27:17 +00:00
|
|
|
goto error;
|
2005-10-04 18:46:09 +00:00
|
|
|
GST_LOCK (fakesink);
|
2003-08-07 12:45:31 +00:00
|
|
|
g_free (fakesink->last_message);
|
|
|
|
fakesink->last_message = NULL;
|
2005-10-04 18:46:09 +00:00
|
|
|
GST_UNLOCK (fakesink);
|
2003-06-03 20:22:52 +00:00
|
|
|
break;
|
2005-03-28 14:54:33 +00:00
|
|
|
default:
|
|
|
|
break;
|
2003-06-03 20:22:52 +00:00
|
|
|
}
|
|
|
|
|
2005-03-28 14:54:33 +00:00
|
|
|
return ret;
|
2003-06-03 20:22:52 +00:00
|
|
|
|
2005-09-20 17:38:51 +00:00
|
|
|
/* ERROR */
|
2003-06-03 20:22:52 +00:00
|
|
|
error:
|
2004-01-31 19:30:31 +00:00
|
|
|
GST_ELEMENT_ERROR (element, CORE, STATE_CHANGE, (NULL), (NULL));
|
2005-09-02 15:42:00 +00:00
|
|
|
return GST_STATE_CHANGE_FAILURE;
|
2003-06-03 20:22:52 +00:00
|
|
|
}
|