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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
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",
|
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-03-28 14:54:33 +00:00
|
|
|
#define DEFAULT_STATE_ERROR FAKESINK_STATE_ERROR_NONE
|
|
|
|
#define DEFAULT_SILENT FALSE
|
|
|
|
#define DEFAULT_DUMP FALSE
|
|
|
|
#define DEFAULT_SYNC FALSE
|
|
|
|
#define DEFAULT_SIGNAL_HANDOFFS FALSE
|
|
|
|
#define DEFAULT_LAST_MESSAGE NULL
|
|
|
|
|
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-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,
|
2005-03-28 14:54:33 +00:00
|
|
|
ARG_LAST_MESSAGE,
|
2000-01-30 09:03:00 +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");
|
|
|
|
|
2005-03-28 14:54:33 +00:00
|
|
|
GST_BOILERPLATE_FULL (GstFakeSink, gst_fakesink, GstBaseSink, GST_TYPE_BASESINK,
|
2004-03-13 15:27:01 +00:00
|
|
|
_do_init);
|
2001-01-04 10:54:27 +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
|
|
|
|
2005-03-28 14:54:33 +00:00
|
|
|
static GstFlowReturn gst_fakesink_preroll (GstBaseSink * bsink,
|
|
|
|
GstBuffer * buffer);
|
|
|
|
static GstFlowReturn gst_fakesink_render (GstBaseSink * bsink,
|
|
|
|
GstBuffer * buffer);
|
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 gst_fakesink_event (GstBaseSink * bsink, GstEvent * event);
|
2005-03-28 14:54:33 +00:00
|
|
|
static void gst_fakesink_get_times (GstBaseSink * bsink, GstBuffer * buffer,
|
|
|
|
GstClockTime * start, GstClockTime * end);
|
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
|
|
|
|
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;
|
2005-03-28 14:54:33 +00:00
|
|
|
GstBaseSinkClass *gstbasesink_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-03-28 14:54:33 +00:00
|
|
|
gstbasesink_class = (GstBaseSinkClass *) klass;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-03-08 17:42:29 +00:00
|
|
|
gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_fakesink_set_property);
|
|
|
|
gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_fakesink_get_property);
|
2001-01-04 10:54:27 +00:00
|
|
|
|
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,
|
2005-03-28 14:54:33 +00:00
|
|
|
DEFAULT_STATE_ERROR, 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",
|
2005-03-28 14:54:33 +00:00
|
|
|
"The message describing current status", DEFAULT_LAST_MESSAGE,
|
|
|
|
G_PARAM_READABLE));
|
2002-11-21 23:52:30 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SYNC,
|
2005-03-28 14:54:33 +00:00
|
|
|
g_param_spec_boolean ("sync", "Sync", "Sync on the clock", DEFAULT_SYNC,
|
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",
|
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));
|
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",
|
2005-03-28 14:54:33 +00:00
|
|
|
"Don't produce last_message events", DEFAULT_SILENT,
|
|
|
|
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",
|
2005-03-28 14:54:33 +00:00
|
|
|
DEFAULT_DUMP, 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
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
gstelement_class->change_state =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_fakesink_change_state);
|
2005-03-28 14:54:33 +00:00
|
|
|
|
|
|
|
gstbasesink_class->event = GST_DEBUG_FUNCPTR (gst_fakesink_event);
|
|
|
|
gstbasesink_class->preroll = GST_DEBUG_FUNCPTR (gst_fakesink_preroll);
|
|
|
|
gstbasesink_class->render = GST_DEBUG_FUNCPTR (gst_fakesink_render);
|
|
|
|
gstbasesink_class->get_times = GST_DEBUG_FUNCPTR (gst_fakesink_get_times);
|
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
|
|
|
{
|
2005-03-28 14:54:33 +00:00
|
|
|
fakesink->silent = DEFAULT_SILENT;
|
|
|
|
fakesink->dump = DEFAULT_DUMP;
|
|
|
|
fakesink->sync = DEFAULT_SYNC;
|
|
|
|
fakesink->last_message = DEFAULT_LAST_MESSAGE;
|
|
|
|
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
|
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;
|
|
|
|
|
|
|
|
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
|
|
|
sink = GST_FAKESINK (object);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
switch (prop_id) {
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-03-28 14:54:33 +00:00
|
|
|
static void
|
|
|
|
gst_fakesink_get_times (GstBaseSink * bsink, GstBuffer * buffer,
|
|
|
|
GstClockTime * start, GstClockTime * end)
|
2000-11-25 14:18:47 +00:00
|
|
|
{
|
2005-03-28 14:54:33 +00:00
|
|
|
GstFakeSink *sink = GST_FAKESINK (bsink);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-03-28 14:54:33 +00:00
|
|
|
if (sink->sync) {
|
|
|
|
GST_BASESINK_CLASS (parent_class)->get_times (bsink, buffer, start, end);
|
|
|
|
}
|
|
|
|
}
|
2001-10-17 10:21:27 +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
|
|
|
static gboolean
|
2005-03-28 14:54:33 +00:00
|
|
|
gst_fakesink_event (GstBaseSink * bsink, GstEvent * event)
|
|
|
|
{
|
|
|
|
GstFakeSink *sink = GST_FAKESINK (bsink);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2005-03-28 14:54:33 +00:00
|
|
|
if (!sink->silent) {
|
|
|
|
g_free (sink->last_message);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2005-03-28 14:54:33 +00:00
|
|
|
sink->last_message =
|
2005-04-12 10:52:55 +00:00
|
|
|
g_strdup_printf ("event ******* E (type: %d) %p",
|
2005-03-28 14:54:33 +00:00
|
|
|
GST_EVENT_TYPE (event), event);
|
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-03-28 14:54:33 +00:00
|
|
|
gst_fakesink_preroll (GstBaseSink * bsink, GstBuffer * buffer)
|
2005-03-21 17:34:02 +00:00
|
|
|
{
|
2005-03-28 14:54:33 +00:00
|
|
|
GstFakeSink *sink = GST_FAKESINK (bsink);
|
|
|
|
|
|
|
|
if (!sink->silent) {
|
|
|
|
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 ******* ");
|
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
|
|
|
|
gst_fakesink_render (GstBaseSink * bsink, GstBuffer * buf)
|
|
|
|
{
|
|
|
|
GstFakeSink *sink = GST_FAKESINK (bsink);
|
2002-02-06 21:57:35 +00:00
|
|
|
|
2005-03-28 14:54:33 +00:00
|
|
|
if (!sink->silent) {
|
|
|
|
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),
|
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
|
|
|
|
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)
|
|
|
|
g_signal_emit (G_OBJECT (sink), gst_fakesink_signals[SIGNAL_HANDOFF], 0,
|
|
|
|
buf);
|
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
|
|
|
|
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
|
|
|
{
|
2005-03-28 14:54:33 +00:00
|
|
|
GstElementStateReturn ret = GST_STATE_SUCCESS;
|
2003-06-03 20:22:52 +00:00
|
|
|
GstFakeSink *fakesink = GST_FAKESINK (element);
|
2005-03-28 14:54:33 +00:00
|
|
|
GstElementState transition = GST_STATE_TRANSITION (element);
|
2003-06-03 20:22:52 +00:00
|
|
|
|
2005-03-28 14:54:33 +00:00
|
|
|
switch (transition) {
|
2003-06-03 20:22:52 +00:00
|
|
|
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;
|
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
|
|
|
ret = GST_ELEMENT_CLASS (parent_class)->change_state (element);
|
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
|
|
|
|
|
|
|
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;
|
|
|
|
}
|