2000-12-29 05:38:06 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
2007-06-21 14:29:05 +00:00
|
|
|
* 2000 Wim Taymans <wim@fluendo.com>
|
2000-12-29 05:38:06 +00:00
|
|
|
*
|
2005-07-14 09:35:12 +00:00
|
|
|
* gstfakesrc.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
|
|
|
/**
|
2005-12-01 12:29:34 +00:00
|
|
|
* SECTION:element-fakesrc
|
2005-08-05 13:42:10 +00:00
|
|
|
* @see_also: #GstFakeSink
|
2005-12-07 15:33:42 +00:00
|
|
|
*
|
2005-12-05 10:27:59 +00:00
|
|
|
* The fakesrc element is a multipurpose element that can generate
|
|
|
|
* a wide range of buffers and can operate in various scheduling modes.
|
2009-09-07 16:27:08 +00:00
|
|
|
*
|
2005-12-05 10:27:59 +00:00
|
|
|
* It is mostly used as a testing element, one trivial example for testing
|
|
|
|
* basic <application>GStreamer</application> core functionality is:
|
2009-09-07 16:27:08 +00:00
|
|
|
*
|
2008-06-20 10:14:54 +00:00
|
|
|
* <refsect2>
|
2005-12-05 10:27:59 +00:00
|
|
|
* <title>Example launch line</title>
|
2008-06-20 10:14:54 +00:00
|
|
|
* |[
|
2005-12-05 10:27:59 +00:00
|
|
|
* gst-launch -v fakesrc num-buffers=5 ! fakesink
|
2008-06-20 10:14:54 +00:00
|
|
|
* ]| This pipeline will push 5 empty buffers to the fakesink element and then
|
2005-12-05 10:27:59 +00:00
|
|
|
* sends an EOS.
|
|
|
|
* </refsect2>
|
2009-09-07 16:27:08 +00:00
|
|
|
*
|
2008-06-20 10:14:54 +00:00
|
|
|
* Last reviewed on 2008-06-20 (0.10.21)
|
2005-08-05 13:42:10 +00:00
|
|
|
*/
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2009-05-28 09:31:08 +00:00
|
|
|
/* FIXME: this ignores basesrc::blocksize property, which could be used as an
|
|
|
|
* alias to ::sizemax (see gst_base_src_get_blocksize()).
|
|
|
|
*/
|
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2006-05-04 15:20:14 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
#include "gstfakesrc.h"
|
2000-01-30 09:03:00 +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 srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS_ANY);
|
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (gst_fake_src_debug);
|
|
|
|
#define GST_CAT_DEFAULT gst_fake_src_debug
|
2003-06-29 14:05:49 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
/* FakeSrc 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 23:23:10 +00:00
|
|
|
SIGNAL_HANDOFF,
|
2000-01-30 09:03:00 +00:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2005-12-06 19:29:15 +00:00
|
|
|
#define DEFAULT_OUTPUT FAKE_SRC_FIRST_LAST_LOOP
|
|
|
|
#define DEFAULT_DATA FAKE_SRC_DATA_ALLOCATE
|
|
|
|
#define DEFAULT_SIZETYPE FAKE_SRC_SIZETYPE_EMPTY
|
|
|
|
#define DEFAULT_SIZEMIN 0
|
|
|
|
#define DEFAULT_SIZEMAX 4096
|
|
|
|
#define DEFAULT_FILLTYPE FAKE_SRC_FILLTYPE_ZERO
|
|
|
|
#define DEFAULT_DATARATE 0
|
|
|
|
#define DEFAULT_SYNC FALSE
|
|
|
|
#define DEFAULT_PATTERN NULL
|
|
|
|
#define DEFAULT_EOS FALSE
|
2005-04-12 10:52:55 +00:00
|
|
|
#define DEFAULT_SIGNAL_HANDOFFS FALSE
|
2012-02-08 23:47:40 +00:00
|
|
|
#define DEFAULT_SILENT TRUE
|
2005-12-06 19:29:15 +00:00
|
|
|
#define DEFAULT_DUMP FALSE
|
|
|
|
#define DEFAULT_PARENTSIZE 4096*10
|
2005-08-26 14:21:43 +00:00
|
|
|
#define DEFAULT_CAN_ACTIVATE_PULL TRUE
|
|
|
|
#define DEFAULT_CAN_ACTIVATE_PUSH TRUE
|
2008-05-07 09:34:58 +00:00
|
|
|
#define DEFAULT_FORMAT GST_FORMAT_BYTES
|
2005-04-12 10:52:55 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
enum
|
|
|
|
{
|
2005-04-18 08:53:02 +00:00
|
|
|
PROP_0,
|
|
|
|
PROP_OUTPUT,
|
|
|
|
PROP_DATA,
|
|
|
|
PROP_SIZETYPE,
|
|
|
|
PROP_SIZEMIN,
|
|
|
|
PROP_SIZEMAX,
|
|
|
|
PROP_FILLTYPE,
|
|
|
|
PROP_DATARATE,
|
|
|
|
PROP_SYNC,
|
|
|
|
PROP_PATTERN,
|
|
|
|
PROP_EOS,
|
|
|
|
PROP_SIGNAL_HANDOFFS,
|
|
|
|
PROP_SILENT,
|
|
|
|
PROP_DUMP,
|
|
|
|
PROP_PARENTSIZE,
|
GCC 4 fixen.
Original commit message from CVS:
2005-05-04 Andy Wingo <wingo@pobox.com>
* check/Makefile.am:
* docs/gst/tmpl/gstatomic.sgml:
* docs/gst/tmpl/gstplugin.sgml:
* gst/base/gstbasesink.c: (gst_basesink_activate):
* gst/base/gstbasesrc.c: (gst_basesrc_class_init),
(gst_basesrc_init), (gst_basesrc_set_dataflow_funcs),
(gst_basesrc_query), (gst_basesrc_set_property),
(gst_basesrc_get_property), (gst_basesrc_check_get_range),
(gst_basesrc_activate):
* gst/base/gstbasesrc.h:
* gst/base/gstbasetransform.c: (gst_base_transform_sink_activate),
(gst_base_transform_src_activate):
* gst/elements/gstelements.c:
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
(gst_fakesrc_set_property), (gst_fakesrc_get_property):
* gst/elements/gsttee.c: (gst_tee_sink_activate):
* gst/elements/gsttypefindelement.c: (find_element_get_length),
(gst_type_find_element_checkgetrange),
(gst_type_find_element_activate):
* gst/gstbin.c: (gst_bin_save_thyself), (gst_bin_restore_thyself):
* gst/gstcaps.c: (gst_caps_do_simplify), (gst_caps_save_thyself),
(gst_caps_load_thyself):
* gst/gstelement.c: (gst_element_pads_activate),
(gst_element_save_thyself), (gst_element_restore_thyself):
* gst/gstpad.c: (gst_pad_load_and_link), (gst_pad_save_thyself),
(gst_ghost_pad_save_thyself), (gst_pad_check_pull_range):
* gst/gstpad.h:
* gst/gstxml.c: (gst_xml_write), (gst_xml_parse_doc),
(gst_xml_parse_file), (gst_xml_parse_memory),
(gst_xml_get_element), (gst_xml_make_element):
* gst/indexers/gstfileindex.c: (gst_file_index_load),
(_file_index_id_save_xml), (gst_file_index_commit):
* gst/registries/gstlibxmlregistry.c: (read_string), (read_uint),
(read_enum), (load_pad_template), (load_feature), (load_plugin),
(load_paths):
* libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_caps),
(gst_dp_packet_from_event), (gst_dp_caps_from_packet):
* tools/gst-complete.c: (main):
* tools/gst-compprep.c: (main):
* tools/gst-inspect.c: (print_element_properties_info):
* tools/gst-launch.c: (xmllaunch_parse_cmdline):
* tools/gst-xmlinspect.c: (print_element_properties):
GCC 4 fixen.
2005-05-04 21:29:44 +00:00
|
|
|
PROP_LAST_MESSAGE,
|
2005-08-26 14:21:43 +00:00
|
|
|
PROP_CAN_ACTIVATE_PULL,
|
|
|
|
PROP_CAN_ACTIVATE_PUSH,
|
2008-05-07 09:34:58 +00:00
|
|
|
PROP_IS_LIVE,
|
|
|
|
PROP_FORMAT,
|
|
|
|
PROP_LAST,
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2005-07-08 14:01:31 +00:00
|
|
|
/* not implemented
|
2005-07-14 09:35:12 +00:00
|
|
|
#define GST_TYPE_FAKE_SRC_OUTPUT (gst_fake_src_output_get_type())
|
2001-06-25 01:20:11 +00:00
|
|
|
static GType
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_src_output_get_type (void)
|
2001-07-11 15:51:40 +00:00
|
|
|
{
|
2001-06-25 01:20:11 +00:00
|
|
|
static GType fakesrc_output_type = 0;
|
2006-05-09 17:58:35 +00:00
|
|
|
static const GEnumValue fakesrc_output[] = {
|
2005-07-14 09:35:12 +00:00
|
|
|
{FAKE_SRC_FIRST_LAST_LOOP, "1", "First-Last loop"},
|
|
|
|
{FAKE_SRC_LAST_FIRST_LOOP, "2", "Last-First loop"},
|
|
|
|
{FAKE_SRC_PING_PONG, "3", "Ping-Pong"},
|
|
|
|
{FAKE_SRC_ORDERED_RANDOM, "4", "Ordered Random"},
|
|
|
|
{FAKE_SRC_RANDOM, "5", "Random"},
|
|
|
|
{FAKE_SRC_PATTERN_LOOP, "6", "Patttern loop"},
|
|
|
|
{FAKE_SRC_PING_PONG_PATTERN, "7", "Ping-Pong Pattern"},
|
|
|
|
{FAKE_SRC_GET_ALWAYS_SUCEEDS, "8", "'_get' Always succeeds"},
|
2000-12-28 00:18:26 +00:00
|
|
|
{0, NULL, NULL},
|
|
|
|
};
|
2004-03-15 19:27:17 +00:00
|
|
|
|
2000-12-28 00:18:26 +00:00
|
|
|
if (!fakesrc_output_type) {
|
2004-03-13 15:27:01 +00:00
|
|
|
fakesrc_output_type =
|
2004-03-15 19:27:17 +00:00
|
|
|
g_enum_register_static ("GstFakeSrcOutput", fakesrc_output);
|
2000-12-28 00:18:26 +00:00
|
|
|
}
|
|
|
|
return fakesrc_output_type;
|
|
|
|
}
|
2005-07-08 14:01:31 +00:00
|
|
|
*/
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
#define GST_TYPE_FAKE_SRC_DATA (gst_fake_src_data_get_type())
|
2001-10-17 10:21:27 +00:00
|
|
|
static GType
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_src_data_get_type (void)
|
2001-10-17 10:21:27 +00:00
|
|
|
{
|
|
|
|
static GType fakesrc_data_type = 0;
|
2006-05-09 17:58:35 +00:00
|
|
|
static const GEnumValue fakesrc_data[] = {
|
2005-11-22 15:52:03 +00:00
|
|
|
{FAKE_SRC_DATA_ALLOCATE, "Allocate data", "allocate"},
|
|
|
|
{FAKE_SRC_DATA_SUBBUFFER, "Subbuffer data", "subbuffer"},
|
2001-10-17 10:21:27 +00:00
|
|
|
{0, NULL, NULL},
|
|
|
|
};
|
2004-03-15 19:27:17 +00:00
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
if (!fakesrc_data_type) {
|
2005-11-24 09:44:07 +00:00
|
|
|
fakesrc_data_type =
|
|
|
|
g_enum_register_static ("GstFakeSrcDataType", fakesrc_data);
|
2001-10-17 10:21:27 +00:00
|
|
|
}
|
|
|
|
return fakesrc_data_type;
|
|
|
|
}
|
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
#define GST_TYPE_FAKE_SRC_SIZETYPE (gst_fake_src_sizetype_get_type())
|
2001-10-17 10:21:27 +00:00
|
|
|
static GType
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_src_sizetype_get_type (void)
|
2001-10-17 10:21:27 +00:00
|
|
|
{
|
|
|
|
static GType fakesrc_sizetype_type = 0;
|
2006-05-09 17:58:35 +00:00
|
|
|
static const GEnumValue fakesrc_sizetype[] = {
|
2005-11-22 15:52:03 +00:00
|
|
|
{FAKE_SRC_SIZETYPE_EMPTY, "Send empty buffers", "empty"},
|
|
|
|
{FAKE_SRC_SIZETYPE_FIXED, "Fixed size buffers (sizemax sized)", "fixed"},
|
|
|
|
{FAKE_SRC_SIZETYPE_RANDOM,
|
|
|
|
"Random sized buffers (sizemin <= size <= sizemax)", "random"},
|
2001-10-17 10:21:27 +00:00
|
|
|
{0, NULL, NULL},
|
|
|
|
};
|
2004-03-15 19:27:17 +00:00
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
if (!fakesrc_sizetype_type) {
|
2004-03-13 15:27:01 +00:00
|
|
|
fakesrc_sizetype_type =
|
2004-03-15 19:27:17 +00:00
|
|
|
g_enum_register_static ("GstFakeSrcSizeType", fakesrc_sizetype);
|
2001-10-17 10:21:27 +00:00
|
|
|
}
|
|
|
|
return fakesrc_sizetype_type;
|
|
|
|
}
|
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
#define GST_TYPE_FAKE_SRC_FILLTYPE (gst_fake_src_filltype_get_type())
|
2001-10-17 10:21:27 +00:00
|
|
|
static GType
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_src_filltype_get_type (void)
|
2001-10-17 10:21:27 +00:00
|
|
|
{
|
|
|
|
static GType fakesrc_filltype_type = 0;
|
2006-05-09 17:58:35 +00:00
|
|
|
static const GEnumValue fakesrc_filltype[] = {
|
2005-11-22 15:52:03 +00:00
|
|
|
{FAKE_SRC_FILLTYPE_NOTHING, "Leave data as malloced", "nothing"},
|
|
|
|
{FAKE_SRC_FILLTYPE_ZERO, "Fill buffers with zeros", "zero"},
|
|
|
|
{FAKE_SRC_FILLTYPE_RANDOM, "Fill buffers with random crap", "random"},
|
|
|
|
{FAKE_SRC_FILLTYPE_PATTERN, "Fill buffers with pattern 0x00 -> 0xff",
|
2005-11-24 09:44:07 +00:00
|
|
|
"pattern"},
|
2005-11-22 15:52:03 +00:00
|
|
|
{FAKE_SRC_FILLTYPE_PATTERN_CONT,
|
2005-11-24 09:44:07 +00:00
|
|
|
"Fill buffers with pattern 0x00 -> 0xff that spans buffers",
|
|
|
|
"pattern-span"},
|
2001-10-17 10:21:27 +00:00
|
|
|
{0, NULL, NULL},
|
|
|
|
};
|
2004-03-15 19:27:17 +00:00
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
if (!fakesrc_filltype_type) {
|
2004-03-13 15:27:01 +00:00
|
|
|
fakesrc_filltype_type =
|
2004-03-15 19:27:17 +00:00
|
|
|
g_enum_register_static ("GstFakeSrcFillType", fakesrc_filltype);
|
2001-10-17 10:21:27 +00:00
|
|
|
}
|
|
|
|
return fakesrc_filltype_type;
|
|
|
|
}
|
|
|
|
|
2011-04-18 16:07:06 +00:00
|
|
|
#define _do_init \
|
2005-07-14 09:35:12 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_fake_src_debug, "fakesrc", 0, "fakesrc element");
|
2011-04-18 16:07:06 +00:00
|
|
|
#define gst_fake_src_parent_class parent_class
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (GstFakeSrc, gst_fake_src, GST_TYPE_BASE_SRC, _do_init);
|
2000-12-20 09:39:43 +00:00
|
|
|
|
2006-03-20 09:28:41 +00:00
|
|
|
static void gst_fake_src_finalize (GObject * object);
|
2005-07-14 09:35:12 +00:00
|
|
|
static void gst_fake_src_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_src_get_property (GObject * object, guint prop_id,
|
2004-03-13 15:27:01 +00:00
|
|
|
GValue * value, GParamSpec * pspec);
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
static gboolean gst_fake_src_start (GstBaseSrc * basesrc);
|
|
|
|
static gboolean gst_fake_src_stop (GstBaseSrc * basesrc);
|
2005-08-26 14:21:43 +00:00
|
|
|
static gboolean gst_fake_src_is_seekable (GstBaseSrc * basesrc);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
static gboolean gst_fake_src_event_handler (GstBaseSrc * src, GstEvent * event);
|
2005-12-07 15:33:42 +00:00
|
|
|
static void gst_fake_src_get_times (GstBaseSrc * basesrc, GstBuffer * buffer,
|
|
|
|
GstClockTime * start, GstClockTime * end);
|
2005-07-14 09:35:12 +00:00
|
|
|
static GstFlowReturn gst_fake_src_create (GstBaseSrc * src, guint64 offset,
|
2005-03-21 17:34:02 +00:00
|
|
|
guint length, GstBuffer ** buf);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
static guint gst_fake_src_signals[LAST_SIGNAL] = { 0 };
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2010-10-07 17:19:31 +00:00
|
|
|
static GParamSpec *pspec_last_message = NULL;
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
static void
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_src_class_init (GstFakeSrcClass * klass)
|
2000-11-25 14:18:47 +00:00
|
|
|
{
|
2001-06-25 01:20:11 +00:00
|
|
|
GObjectClass *gobject_class;
|
2011-04-18 16:07:06 +00:00
|
|
|
GstElementClass *gstelement_class;
|
2005-06-28 12:45:21 +00:00
|
|
|
GstBaseSrcClass *gstbase_src_class;
|
2001-06-25 01:20:11 +00:00
|
|
|
|
2006-05-11 18:10:34 +00:00
|
|
|
gobject_class = G_OBJECT_CLASS (klass);
|
2011-04-18 16:07:06 +00:00
|
|
|
gstelement_class = GST_ELEMENT_CLASS (klass);
|
2006-05-11 18:10:34 +00:00
|
|
|
gstbase_src_class = GST_BASE_SRC_CLASS (klass);
|
2001-06-25 01:20:11 +00:00
|
|
|
|
2009-10-28 00:29:30 +00:00
|
|
|
gobject_class->finalize = gst_fake_src_finalize;
|
2006-03-20 09:28:41 +00:00
|
|
|
|
2009-10-28 00:29:30 +00:00
|
|
|
gobject_class->set_property = gst_fake_src_set_property;
|
|
|
|
gobject_class->get_property = gst_fake_src_get_property;
|
2001-06-25 01:20:11 +00:00
|
|
|
|
2005-07-07 11:59:37 +00:00
|
|
|
/*
|
|
|
|
FIXME: this is not implemented; would make sense once basesrc and fakesrc
|
|
|
|
support multiple pads
|
2006-05-11 18:10:34 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_OUTPUT,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_enum ("output", "output", "Output method (currently unused)",
|
2005-07-14 09:35:12 +00:00
|
|
|
GST_TYPE_FAKE_SRC_OUTPUT, DEFAULT_OUTPUT, G_PARAM_READWRITE));
|
2005-07-07 11:59:37 +00:00
|
|
|
*/
|
2006-05-11 18:10:34 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_DATA,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_enum ("data", "data", "Data allocation method",
|
2008-03-22 14:56:17 +00:00
|
|
|
GST_TYPE_FAKE_SRC_DATA, DEFAULT_DATA,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2005-04-18 08:53:02 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_SIZETYPE,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_enum ("sizetype", "sizetype",
|
2005-07-14 09:35:12 +00:00
|
|
|
"How to determine buffer sizes", GST_TYPE_FAKE_SRC_SIZETYPE,
|
2008-03-22 14:56:17 +00:00
|
|
|
DEFAULT_SIZETYPE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2006-05-11 18:10:34 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_SIZEMIN,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_int ("sizemin", "sizemin", "Minimum buffer size", 0,
|
2008-03-22 14:56:17 +00:00
|
|
|
G_MAXINT, DEFAULT_SIZEMIN,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2006-05-11 18:10:34 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_SIZEMAX,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_int ("sizemax", "sizemax", "Maximum buffer size", 0,
|
2008-03-22 14:56:17 +00:00
|
|
|
G_MAXINT, DEFAULT_SIZEMAX,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2006-05-11 18:10:34 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_PARENTSIZE,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_int ("parentsize", "parentsize",
|
2004-03-15 19:27:17 +00:00
|
|
|
"Size of parent buffer for sub-buffered allocation", 0, G_MAXINT,
|
2008-03-22 14:56:17 +00:00
|
|
|
DEFAULT_PARENTSIZE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2006-05-11 18:10:34 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_FILLTYPE,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_enum ("filltype", "filltype",
|
2005-07-14 09:35:12 +00:00
|
|
|
"How to fill the buffer, if at all", GST_TYPE_FAKE_SRC_FILLTYPE,
|
2008-03-22 14:56:17 +00:00
|
|
|
DEFAULT_FILLTYPE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2006-05-11 18:10:34 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_DATARATE,
|
gst/elements/: Added datarate properties to limit the datarate.
Original commit message from CVS:
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
(gst_fakesrc_init), (gst_fakesrc_set_clock),
(gst_fakesrc_set_property), (gst_fakesrc_get_property),
(gst_fakesrc_get), (gst_fakesrc_change_state):
* gst/elements/gstfakesrc.h:
* gst/elements/gstidentity.c: (gst_identity_class_init),
(gst_identity_init), (gst_identity_chain),
(gst_identity_set_property), (gst_identity_get_property),
(gst_identity_change_state):
* gst/elements/gstidentity.h:
Added datarate properties to limit the datarate.
2004-09-03 11:40:35 +00:00
|
|
|
g_param_spec_int ("datarate", "Datarate",
|
|
|
|
"Timestamps buffers with number of bytes per second (0 = none)", 0,
|
2008-03-22 14:56:17 +00:00
|
|
|
G_MAXINT, DEFAULT_DATARATE,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2006-05-11 18:10:34 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_SYNC,
|
gst/elements/: Added datarate properties to limit the datarate.
Original commit message from CVS:
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
(gst_fakesrc_init), (gst_fakesrc_set_clock),
(gst_fakesrc_set_property), (gst_fakesrc_get_property),
(gst_fakesrc_get), (gst_fakesrc_change_state):
* gst/elements/gstfakesrc.h:
* gst/elements/gstidentity.c: (gst_identity_class_init),
(gst_identity_init), (gst_identity_chain),
(gst_identity_set_property), (gst_identity_get_property),
(gst_identity_change_state):
* gst/elements/gstidentity.h:
Added datarate properties to limit the datarate.
2004-09-03 11:40:35 +00:00
|
|
|
g_param_spec_boolean ("sync", "Sync", "Sync to the clock to the datarate",
|
2008-03-22 14:56:17 +00:00
|
|
|
DEFAULT_SYNC, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2006-05-11 18:10:34 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_PATTERN,
|
2005-04-12 10:52:55 +00:00
|
|
|
g_param_spec_string ("pattern", "pattern", "pattern", DEFAULT_PATTERN,
|
2008-03-22 14:56:17 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2010-10-07 17:19:31 +00:00
|
|
|
pspec_last_message = g_param_spec_string ("last-message", "last-message",
|
|
|
|
"The last status message", NULL,
|
|
|
|
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
|
2006-05-11 18:10:34 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_LAST_MESSAGE,
|
2010-10-07 17:19:31 +00:00
|
|
|
pspec_last_message);
|
2006-05-11 18:10:34 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_SILENT,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_boolean ("silent", "Silent",
|
2005-04-12 10:52:55 +00:00
|
|
|
"Don't produce last_message events", DEFAULT_SILENT,
|
2008-03-22 14:56:17 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2006-05-11 18:10:34 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_SIGNAL_HANDOFFS,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_boolean ("signal-handoffs", "Signal handoffs",
|
2005-04-12 10:52:55 +00:00
|
|
|
"Send a signal before pushing the buffer", DEFAULT_SIGNAL_HANDOFFS,
|
2008-03-22 14:56:17 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2006-05-11 18:10:34 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_DUMP,
|
2006-09-29 08:22:22 +00:00
|
|
|
g_param_spec_boolean ("dump", "Dump", "Dump buffer contents to stdout",
|
2008-03-22 14:56:17 +00:00
|
|
|
DEFAULT_DUMP, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
|
|
|
g_object_class_install_property (gobject_class, PROP_CAN_ACTIVATE_PUSH,
|
2005-08-26 14:21:43 +00:00
|
|
|
g_param_spec_boolean ("can-activate-push", "Can activate push",
|
|
|
|
"Can activate in push mode", DEFAULT_CAN_ACTIVATE_PUSH,
|
2008-03-22 14:56:17 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
|
|
|
|
g_object_class_install_property (gobject_class, PROP_CAN_ACTIVATE_PULL,
|
2005-08-26 14:21:43 +00:00
|
|
|
g_param_spec_boolean ("can-activate-pull", "Can activate pull",
|
|
|
|
"Can activate in pull mode", DEFAULT_CAN_ACTIVATE_PULL,
|
2008-03-22 14:56:17 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
|
2006-05-11 18:10:34 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_IS_LIVE,
|
2005-06-23 10:37:09 +00:00
|
|
|
g_param_spec_boolean ("is-live", "Is this a live source",
|
|
|
|
"True if the element cannot produce data in PAUSED", FALSE,
|
2008-03-22 14:56:17 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
|
2008-05-07 09:34:58 +00:00
|
|
|
/**
|
|
|
|
* GstFakeSrc:format
|
|
|
|
*
|
|
|
|
* Set the format of the newsegment events to produce.
|
|
|
|
*
|
|
|
|
* Since: 0.10.20
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class, PROP_FORMAT,
|
|
|
|
g_param_spec_enum ("format", "Format",
|
|
|
|
"The format of the segment events", GST_TYPE_FORMAT,
|
|
|
|
DEFAULT_FORMAT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2000-12-22 23:23:10 +00:00
|
|
|
|
2005-08-15 16:57:34 +00:00
|
|
|
/**
|
|
|
|
* GstFakeSrc::handoff:
|
|
|
|
* @fakesrc: the fakesrc instance
|
|
|
|
* @buffer: the buffer that will be pushed
|
|
|
|
* @pad: the pad that will sent it
|
|
|
|
*
|
|
|
|
* This signal gets emitted before sending the buffer.
|
|
|
|
*/
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_src_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 (GstFakeSrcClass, handoff), NULL, NULL,
|
2012-03-02 10:05:48 +00:00
|
|
|
g_cclosure_marshal_generic, G_TYPE_NONE, 2,
|
2012-02-07 09:44:07 +00:00
|
|
|
GST_TYPE_BUFFER | G_SIGNAL_TYPE_STATIC_SCOPE, GST_TYPE_PAD);
|
2000-12-22 23:23:10 +00:00
|
|
|
|
2011-04-18 16:07:06 +00:00
|
|
|
gst_element_class_set_details_simple (gstelement_class,
|
|
|
|
"Fake Source",
|
|
|
|
"Source",
|
|
|
|
"Push empty (no data) buffers around",
|
|
|
|
"Erik Walthinsen <omega@cse.ogi.edu>, " "Wim Taymans <wim@fluendo.com>");
|
|
|
|
gst_element_class_add_pad_template (gstelement_class,
|
|
|
|
gst_static_pad_template_get (&srctemplate));
|
|
|
|
|
2005-08-26 14:21:43 +00:00
|
|
|
gstbase_src_class->is_seekable = GST_DEBUG_FUNCPTR (gst_fake_src_is_seekable);
|
2005-07-14 09:35:12 +00:00
|
|
|
gstbase_src_class->start = GST_DEBUG_FUNCPTR (gst_fake_src_start);
|
|
|
|
gstbase_src_class->stop = GST_DEBUG_FUNCPTR (gst_fake_src_stop);
|
|
|
|
gstbase_src_class->event = GST_DEBUG_FUNCPTR (gst_fake_src_event_handler);
|
2005-12-07 15:33:42 +00:00
|
|
|
gstbase_src_class->get_times = GST_DEBUG_FUNCPTR (gst_fake_src_get_times);
|
2005-07-14 09:35:12 +00:00
|
|
|
gstbase_src_class->create = GST_DEBUG_FUNCPTR (gst_fake_src_create);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void
|
2011-04-18 16:07:06 +00:00
|
|
|
gst_fake_src_init (GstFakeSrc * fakesrc)
|
2000-12-27 04:16:01 +00:00
|
|
|
{
|
2005-07-14 09:35:12 +00:00
|
|
|
fakesrc->output = FAKE_SRC_FIRST_LAST_LOOP;
|
2001-07-11 14:56:16 +00:00
|
|
|
fakesrc->buffer_count = 0;
|
2005-04-12 10:52:55 +00:00
|
|
|
fakesrc->silent = DEFAULT_SILENT;
|
|
|
|
fakesrc->signal_handoffs = DEFAULT_SIGNAL_HANDOFFS;
|
|
|
|
fakesrc->dump = DEFAULT_DUMP;
|
2001-10-17 10:21:27 +00:00
|
|
|
fakesrc->pattern_byte = 0x00;
|
2005-07-14 09:35:12 +00:00
|
|
|
fakesrc->data = FAKE_SRC_DATA_ALLOCATE;
|
2005-11-22 15:52:03 +00:00
|
|
|
fakesrc->sizetype = FAKE_SRC_SIZETYPE_EMPTY;
|
2005-07-14 09:35:12 +00:00
|
|
|
fakesrc->filltype = FAKE_SRC_FILLTYPE_NOTHING;
|
2002-11-21 23:52:30 +00:00
|
|
|
fakesrc->sizemin = DEFAULT_SIZEMIN;
|
|
|
|
fakesrc->sizemax = DEFAULT_SIZEMAX;
|
2001-10-17 10:21:27 +00:00
|
|
|
fakesrc->parent = NULL;
|
2002-11-21 23:52:30 +00:00
|
|
|
fakesrc->parentsize = DEFAULT_PARENTSIZE;
|
2002-02-06 21:57:35 +00:00
|
|
|
fakesrc->last_message = NULL;
|
gst/elements/: Added datarate properties to limit the datarate.
Original commit message from CVS:
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
(gst_fakesrc_init), (gst_fakesrc_set_clock),
(gst_fakesrc_set_property), (gst_fakesrc_get_property),
(gst_fakesrc_get), (gst_fakesrc_change_state):
* gst/elements/gstfakesrc.h:
* gst/elements/gstidentity.c: (gst_identity_class_init),
(gst_identity_init), (gst_identity_chain),
(gst_identity_set_property), (gst_identity_get_property),
(gst_identity_change_state):
* gst/elements/gstidentity.h:
Added datarate properties to limit the datarate.
2004-09-03 11:40:35 +00:00
|
|
|
fakesrc->datarate = DEFAULT_DATARATE;
|
|
|
|
fakesrc->sync = DEFAULT_SYNC;
|
2008-05-07 09:34:58 +00:00
|
|
|
fakesrc->format = DEFAULT_FORMAT;
|
gst/elements/: Added datarate properties to limit the datarate.
Original commit message from CVS:
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
(gst_fakesrc_init), (gst_fakesrc_set_clock),
(gst_fakesrc_set_property), (gst_fakesrc_get_property),
(gst_fakesrc_get), (gst_fakesrc_change_state):
* gst/elements/gstfakesrc.h:
* gst/elements/gstidentity.c: (gst_identity_class_init),
(gst_identity_init), (gst_identity_chain),
(gst_identity_set_property), (gst_identity_get_property),
(gst_identity_change_state):
* gst/elements/gstidentity.h:
Added datarate properties to limit the datarate.
2004-09-03 11:40:35 +00:00
|
|
|
}
|
|
|
|
|
2006-03-20 09:28:41 +00:00
|
|
|
static void
|
|
|
|
gst_fake_src_finalize (GObject * object)
|
|
|
|
{
|
|
|
|
GstFakeSrc *src;
|
|
|
|
|
|
|
|
src = GST_FAKE_SRC (object);
|
|
|
|
|
|
|
|
g_free (src->last_message);
|
|
|
|
if (src->parent) {
|
|
|
|
gst_buffer_unref (src->parent);
|
|
|
|
src->parent = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
2002-08-02 11:45:20 +00:00
|
|
|
static gboolean
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_src_event_handler (GstBaseSrc * basesrc, GstEvent * event)
|
2001-10-17 10:21:27 +00:00
|
|
|
{
|
|
|
|
GstFakeSrc *src;
|
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
src = GST_FAKE_SRC (basesrc);
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2005-04-12 10:52:55 +00:00
|
|
|
if (!src->silent) {
|
2005-10-12 09:02:42 +00:00
|
|
|
const GstStructure *s;
|
2012-01-27 10:01:27 +00:00
|
|
|
const gchar *tstr;
|
2005-10-12 09:02:42 +00:00
|
|
|
gchar *sstr;
|
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (src);
|
2005-04-12 10:52:55 +00:00
|
|
|
g_free (src->last_message);
|
|
|
|
|
2012-01-27 10:01:27 +00:00
|
|
|
tstr = gst_event_type_get_name (GST_EVENT_TYPE (event));
|
|
|
|
|
2005-10-12 09:02:42 +00:00
|
|
|
if ((s = gst_event_get_structure (event)))
|
|
|
|
sstr = gst_structure_to_string (s);
|
|
|
|
else
|
|
|
|
sstr = g_strdup ("");
|
|
|
|
|
2005-04-12 10:52:55 +00:00
|
|
|
src->last_message =
|
2012-01-27 10:01:27 +00:00
|
|
|
g_strdup_printf ("event ******* (%s:%s) E (type: %s (%d), %s) %p",
|
2011-12-06 13:53:47 +00:00
|
|
|
GST_DEBUG_PAD_NAME (GST_BASE_SRC_CAST (src)->srcpad),
|
2012-01-27 10:01:27 +00:00
|
|
|
tstr, GST_EVENT_TYPE (event), sstr, event);
|
2005-10-12 09:02:42 +00:00
|
|
|
g_free (sstr);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (src);
|
2005-04-12 10:52:55 +00:00
|
|
|
|
2010-10-07 17:19:31 +00:00
|
|
|
g_object_notify_by_pspec ((GObject *) src, pspec_last_message);
|
2001-10-17 10:21:27 +00:00
|
|
|
}
|
2005-04-12 10:52:55 +00:00
|
|
|
|
2008-08-20 07:03:40 +00:00
|
|
|
return GST_BASE_SRC_CLASS (parent_class)->event (basesrc, event);
|
2001-10-17 10:21:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_src_alloc_parent (GstFakeSrc * src)
|
2001-10-17 10:21:27 +00:00
|
|
|
{
|
|
|
|
GstBuffer *buf;
|
|
|
|
|
2012-03-15 12:28:28 +00:00
|
|
|
buf = gst_buffer_new_allocate (NULL, src->parentsize, NULL);
|
2001-10-17 10:21:27 +00:00
|
|
|
|
|
|
|
src->parent = buf;
|
|
|
|
src->parentoffset = 0;
|
|
|
|
}
|
|
|
|
|
2000-12-20 09:39:43 +00:00
|
|
|
static void
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_src_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
2000-12-20 09:39:43 +00:00
|
|
|
{
|
|
|
|
GstFakeSrc *src;
|
2005-06-23 10:37:09 +00:00
|
|
|
GstBaseSrc *basesrc;
|
2000-12-20 09:39:43 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
src = GST_FAKE_SRC (object);
|
2005-07-05 16:38:13 +00:00
|
|
|
basesrc = GST_BASE_SRC (object);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
switch (prop_id) {
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_OUTPUT:
|
2002-02-10 17:09:53 +00:00
|
|
|
g_warning ("not yet implemented");
|
2000-12-28 00:18:26 +00:00
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_DATA:
|
2001-12-22 21:18:17 +00:00
|
|
|
src->data = g_value_get_enum (value);
|
2002-07-24 18:31:12 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
if (src->data == FAKE_SRC_DATA_SUBBUFFER) {
|
2004-03-15 19:27:17 +00:00
|
|
|
if (!src->parent)
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_src_alloc_parent (src);
|
2002-07-24 18:31:12 +00:00
|
|
|
} else {
|
2004-03-15 19:27:17 +00:00
|
|
|
if (src->parent) {
|
|
|
|
gst_buffer_unref (src->parent);
|
|
|
|
src->parent = NULL;
|
|
|
|
}
|
2002-07-24 18:31:12 +00:00
|
|
|
}
|
2001-10-17 10:21:27 +00:00
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_SIZETYPE:
|
2001-12-22 21:18:17 +00:00
|
|
|
src->sizetype = g_value_get_enum (value);
|
2001-10-17 10:21:27 +00:00
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_SIZEMIN:
|
2001-10-17 10:21:27 +00:00
|
|
|
src->sizemin = g_value_get_int (value);
|
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_SIZEMAX:
|
2001-10-17 10:21:27 +00:00
|
|
|
src->sizemax = g_value_get_int (value);
|
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_PARENTSIZE:
|
2001-10-17 10:21:27 +00:00
|
|
|
src->parentsize = g_value_get_int (value);
|
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_FILLTYPE:
|
2001-12-22 21:18:17 +00:00
|
|
|
src->filltype = g_value_get_enum (value);
|
2001-10-17 10:21:27 +00:00
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_DATARATE:
|
gst/elements/: Added datarate properties to limit the datarate.
Original commit message from CVS:
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
(gst_fakesrc_init), (gst_fakesrc_set_clock),
(gst_fakesrc_set_property), (gst_fakesrc_get_property),
(gst_fakesrc_get), (gst_fakesrc_change_state):
* gst/elements/gstfakesrc.h:
* gst/elements/gstidentity.c: (gst_identity_class_init),
(gst_identity_init), (gst_identity_chain),
(gst_identity_set_property), (gst_identity_get_property),
(gst_identity_change_state):
* gst/elements/gstidentity.h:
Added datarate properties to limit the datarate.
2004-09-03 11:40:35 +00:00
|
|
|
src->datarate = g_value_get_int (value);
|
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_SYNC:
|
gst/elements/: Added datarate properties to limit the datarate.
Original commit message from CVS:
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
(gst_fakesrc_init), (gst_fakesrc_set_clock),
(gst_fakesrc_set_property), (gst_fakesrc_get_property),
(gst_fakesrc_get), (gst_fakesrc_change_state):
* gst/elements/gstfakesrc.h:
* gst/elements/gstidentity.c: (gst_identity_class_init),
(gst_identity_init), (gst_identity_chain),
(gst_identity_set_property), (gst_identity_get_property),
(gst_identity_change_state):
* gst/elements/gstidentity.h:
Added datarate properties to limit the datarate.
2004-09-03 11:40:35 +00:00
|
|
|
src->sync = g_value_get_boolean (value);
|
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_PATTERN:
|
2000-12-28 00:18:26 +00:00
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_SILENT:
|
2001-06-25 01:20:11 +00:00
|
|
|
src->silent = g_value_get_boolean (value);
|
2001-05-09 04:12:09 +00:00
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_SIGNAL_HANDOFFS:
|
2003-08-07 12:45:31 +00:00
|
|
|
src->signal_handoffs = g_value_get_boolean (value);
|
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_DUMP:
|
2001-10-17 10:21:27 +00:00
|
|
|
src->dump = g_value_get_boolean (value);
|
|
|
|
break;
|
2005-08-26 14:21:43 +00:00
|
|
|
case PROP_CAN_ACTIVATE_PUSH:
|
2011-12-06 13:01:50 +00:00
|
|
|
g_return_if_fail (!GST_OBJECT_FLAG_IS_SET (object,
|
|
|
|
GST_BASE_SRC_FLAG_STARTED));
|
2005-08-26 14:21:43 +00:00
|
|
|
GST_BASE_SRC (src)->can_activate_push = g_value_get_boolean (value);
|
GCC 4 fixen.
Original commit message from CVS:
2005-05-04 Andy Wingo <wingo@pobox.com>
* check/Makefile.am:
* docs/gst/tmpl/gstatomic.sgml:
* docs/gst/tmpl/gstplugin.sgml:
* gst/base/gstbasesink.c: (gst_basesink_activate):
* gst/base/gstbasesrc.c: (gst_basesrc_class_init),
(gst_basesrc_init), (gst_basesrc_set_dataflow_funcs),
(gst_basesrc_query), (gst_basesrc_set_property),
(gst_basesrc_get_property), (gst_basesrc_check_get_range),
(gst_basesrc_activate):
* gst/base/gstbasesrc.h:
* gst/base/gstbasetransform.c: (gst_base_transform_sink_activate),
(gst_base_transform_src_activate):
* gst/elements/gstelements.c:
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
(gst_fakesrc_set_property), (gst_fakesrc_get_property):
* gst/elements/gsttee.c: (gst_tee_sink_activate):
* gst/elements/gsttypefindelement.c: (find_element_get_length),
(gst_type_find_element_checkgetrange),
(gst_type_find_element_activate):
* gst/gstbin.c: (gst_bin_save_thyself), (gst_bin_restore_thyself):
* gst/gstcaps.c: (gst_caps_do_simplify), (gst_caps_save_thyself),
(gst_caps_load_thyself):
* gst/gstelement.c: (gst_element_pads_activate),
(gst_element_save_thyself), (gst_element_restore_thyself):
* gst/gstpad.c: (gst_pad_load_and_link), (gst_pad_save_thyself),
(gst_ghost_pad_save_thyself), (gst_pad_check_pull_range):
* gst/gstpad.h:
* gst/gstxml.c: (gst_xml_write), (gst_xml_parse_doc),
(gst_xml_parse_file), (gst_xml_parse_memory),
(gst_xml_get_element), (gst_xml_make_element):
* gst/indexers/gstfileindex.c: (gst_file_index_load),
(_file_index_id_save_xml), (gst_file_index_commit):
* gst/registries/gstlibxmlregistry.c: (read_string), (read_uint),
(read_enum), (load_pad_template), (load_feature), (load_plugin),
(load_paths):
* libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_caps),
(gst_dp_packet_from_event), (gst_dp_caps_from_packet):
* tools/gst-complete.c: (main):
* tools/gst-compprep.c: (main):
* tools/gst-inspect.c: (print_element_properties_info):
* tools/gst-launch.c: (xmllaunch_parse_cmdline):
* tools/gst-xmlinspect.c: (print_element_properties):
GCC 4 fixen.
2005-05-04 21:29:44 +00:00
|
|
|
break;
|
2005-08-26 14:21:43 +00:00
|
|
|
case PROP_CAN_ACTIVATE_PULL:
|
2011-12-06 13:01:50 +00:00
|
|
|
g_return_if_fail (!GST_OBJECT_FLAG_IS_SET (object,
|
|
|
|
GST_BASE_SRC_FLAG_STARTED));
|
2005-08-26 14:21:43 +00:00
|
|
|
src->can_activate_pull = g_value_get_boolean (value);
|
GCC 4 fixen.
Original commit message from CVS:
2005-05-04 Andy Wingo <wingo@pobox.com>
* check/Makefile.am:
* docs/gst/tmpl/gstatomic.sgml:
* docs/gst/tmpl/gstplugin.sgml:
* gst/base/gstbasesink.c: (gst_basesink_activate):
* gst/base/gstbasesrc.c: (gst_basesrc_class_init),
(gst_basesrc_init), (gst_basesrc_set_dataflow_funcs),
(gst_basesrc_query), (gst_basesrc_set_property),
(gst_basesrc_get_property), (gst_basesrc_check_get_range),
(gst_basesrc_activate):
* gst/base/gstbasesrc.h:
* gst/base/gstbasetransform.c: (gst_base_transform_sink_activate),
(gst_base_transform_src_activate):
* gst/elements/gstelements.c:
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
(gst_fakesrc_set_property), (gst_fakesrc_get_property):
* gst/elements/gsttee.c: (gst_tee_sink_activate):
* gst/elements/gsttypefindelement.c: (find_element_get_length),
(gst_type_find_element_checkgetrange),
(gst_type_find_element_activate):
* gst/gstbin.c: (gst_bin_save_thyself), (gst_bin_restore_thyself):
* gst/gstcaps.c: (gst_caps_do_simplify), (gst_caps_save_thyself),
(gst_caps_load_thyself):
* gst/gstelement.c: (gst_element_pads_activate),
(gst_element_save_thyself), (gst_element_restore_thyself):
* gst/gstpad.c: (gst_pad_load_and_link), (gst_pad_save_thyself),
(gst_ghost_pad_save_thyself), (gst_pad_check_pull_range):
* gst/gstpad.h:
* gst/gstxml.c: (gst_xml_write), (gst_xml_parse_doc),
(gst_xml_parse_file), (gst_xml_parse_memory),
(gst_xml_get_element), (gst_xml_make_element):
* gst/indexers/gstfileindex.c: (gst_file_index_load),
(_file_index_id_save_xml), (gst_file_index_commit):
* gst/registries/gstlibxmlregistry.c: (read_string), (read_uint),
(read_enum), (load_pad_template), (load_feature), (load_plugin),
(load_paths):
* libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_caps),
(gst_dp_packet_from_event), (gst_dp_caps_from_packet):
* tools/gst-complete.c: (main):
* tools/gst-compprep.c: (main):
* tools/gst-inspect.c: (print_element_properties_info):
* tools/gst-launch.c: (xmllaunch_parse_cmdline):
* tools/gst-xmlinspect.c: (print_element_properties):
GCC 4 fixen.
2005-05-04 21:29:44 +00:00
|
|
|
break;
|
2005-06-23 10:37:09 +00:00
|
|
|
case PROP_IS_LIVE:
|
2005-06-28 12:45:21 +00:00
|
|
|
gst_base_src_set_live (basesrc, g_value_get_boolean (value));
|
2005-06-23 10:37:09 +00:00
|
|
|
break;
|
2008-05-07 09:34:58 +00:00
|
|
|
case PROP_FORMAT:
|
|
|
|
src->format = g_value_get_enum (value);
|
|
|
|
break;
|
2000-12-20 09:39:43 +00:00
|
|
|
default:
|
2004-04-20 16:25:41 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
2000-12-20 09:39:43 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_src_get_property (GObject * object, guint prop_id, GValue * value,
|
2004-03-13 15:27:01 +00:00
|
|
|
GParamSpec * pspec)
|
2000-12-20 09:39:43 +00:00
|
|
|
{
|
|
|
|
GstFakeSrc *src;
|
2005-06-23 10:37:09 +00:00
|
|
|
GstBaseSrc *basesrc;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
g_return_if_fail (GST_IS_FAKE_SRC (object));
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
src = GST_FAKE_SRC (object);
|
2005-07-05 16:38:13 +00:00
|
|
|
basesrc = GST_BASE_SRC (object);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
switch (prop_id) {
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_OUTPUT:
|
2001-12-22 21:18:17 +00:00
|
|
|
g_value_set_enum (value, src->output);
|
2000-12-28 00:18:26 +00:00
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_DATA:
|
2001-12-22 21:18:17 +00:00
|
|
|
g_value_set_enum (value, src->data);
|
2001-10-17 10:21:27 +00:00
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_SIZETYPE:
|
2001-12-22 21:18:17 +00:00
|
|
|
g_value_set_enum (value, src->sizetype);
|
2001-10-17 10:21:27 +00:00
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_SIZEMIN:
|
2001-10-17 10:21:27 +00:00
|
|
|
g_value_set_int (value, src->sizemin);
|
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_SIZEMAX:
|
2001-10-17 10:21:27 +00:00
|
|
|
g_value_set_int (value, src->sizemax);
|
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_PARENTSIZE:
|
2001-10-17 10:21:27 +00:00
|
|
|
g_value_set_int (value, src->parentsize);
|
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_FILLTYPE:
|
2001-12-22 21:18:17 +00:00
|
|
|
g_value_set_enum (value, src->filltype);
|
2001-10-17 10:21:27 +00:00
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_DATARATE:
|
gst/elements/: Added datarate properties to limit the datarate.
Original commit message from CVS:
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
(gst_fakesrc_init), (gst_fakesrc_set_clock),
(gst_fakesrc_set_property), (gst_fakesrc_get_property),
(gst_fakesrc_get), (gst_fakesrc_change_state):
* gst/elements/gstfakesrc.h:
* gst/elements/gstidentity.c: (gst_identity_class_init),
(gst_identity_init), (gst_identity_chain),
(gst_identity_set_property), (gst_identity_get_property),
(gst_identity_change_state):
* gst/elements/gstidentity.h:
Added datarate properties to limit the datarate.
2004-09-03 11:40:35 +00:00
|
|
|
g_value_set_int (value, src->datarate);
|
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_SYNC:
|
gst/elements/: Added datarate properties to limit the datarate.
Original commit message from CVS:
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
(gst_fakesrc_init), (gst_fakesrc_set_clock),
(gst_fakesrc_set_property), (gst_fakesrc_get_property),
(gst_fakesrc_get), (gst_fakesrc_change_state):
* gst/elements/gstfakesrc.h:
* gst/elements/gstidentity.c: (gst_identity_class_init),
(gst_identity_init), (gst_identity_chain),
(gst_identity_set_property), (gst_identity_get_property),
(gst_identity_change_state):
* gst/elements/gstidentity.h:
Added datarate properties to limit the datarate.
2004-09-03 11:40:35 +00:00
|
|
|
g_value_set_boolean (value, src->sync);
|
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_PATTERN:
|
2001-06-25 01:20:11 +00:00
|
|
|
g_value_set_string (value, src->pattern);
|
2000-12-28 00:18:26 +00:00
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_SILENT:
|
2001-06-25 01:20:11 +00:00
|
|
|
g_value_set_boolean (value, src->silent);
|
2001-05-09 04:12:09 +00:00
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_SIGNAL_HANDOFFS:
|
2003-08-07 12:45:31 +00:00
|
|
|
g_value_set_boolean (value, src->signal_handoffs);
|
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_DUMP:
|
2001-10-17 10:21:27 +00:00
|
|
|
g_value_set_boolean (value, src->dump);
|
|
|
|
break;
|
2005-04-18 08:53:02 +00:00
|
|
|
case PROP_LAST_MESSAGE:
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (src);
|
2002-02-06 21:57:35 +00:00
|
|
|
g_value_set_string (value, src->last_message);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (src);
|
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_SRC (src)->can_activate_push);
|
GCC 4 fixen.
Original commit message from CVS:
2005-05-04 Andy Wingo <wingo@pobox.com>
* check/Makefile.am:
* docs/gst/tmpl/gstatomic.sgml:
* docs/gst/tmpl/gstplugin.sgml:
* gst/base/gstbasesink.c: (gst_basesink_activate):
* gst/base/gstbasesrc.c: (gst_basesrc_class_init),
(gst_basesrc_init), (gst_basesrc_set_dataflow_funcs),
(gst_basesrc_query), (gst_basesrc_set_property),
(gst_basesrc_get_property), (gst_basesrc_check_get_range),
(gst_basesrc_activate):
* gst/base/gstbasesrc.h:
* gst/base/gstbasetransform.c: (gst_base_transform_sink_activate),
(gst_base_transform_src_activate):
* gst/elements/gstelements.c:
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
(gst_fakesrc_set_property), (gst_fakesrc_get_property):
* gst/elements/gsttee.c: (gst_tee_sink_activate):
* gst/elements/gsttypefindelement.c: (find_element_get_length),
(gst_type_find_element_checkgetrange),
(gst_type_find_element_activate):
* gst/gstbin.c: (gst_bin_save_thyself), (gst_bin_restore_thyself):
* gst/gstcaps.c: (gst_caps_do_simplify), (gst_caps_save_thyself),
(gst_caps_load_thyself):
* gst/gstelement.c: (gst_element_pads_activate),
(gst_element_save_thyself), (gst_element_restore_thyself):
* gst/gstpad.c: (gst_pad_load_and_link), (gst_pad_save_thyself),
(gst_ghost_pad_save_thyself), (gst_pad_check_pull_range):
* gst/gstpad.h:
* gst/gstxml.c: (gst_xml_write), (gst_xml_parse_doc),
(gst_xml_parse_file), (gst_xml_parse_memory),
(gst_xml_get_element), (gst_xml_make_element):
* gst/indexers/gstfileindex.c: (gst_file_index_load),
(_file_index_id_save_xml), (gst_file_index_commit):
* gst/registries/gstlibxmlregistry.c: (read_string), (read_uint),
(read_enum), (load_pad_template), (load_feature), (load_plugin),
(load_paths):
* libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_caps),
(gst_dp_packet_from_event), (gst_dp_caps_from_packet):
* tools/gst-complete.c: (main):
* tools/gst-compprep.c: (main):
* tools/gst-inspect.c: (print_element_properties_info):
* tools/gst-launch.c: (xmllaunch_parse_cmdline):
* tools/gst-xmlinspect.c: (print_element_properties):
GCC 4 fixen.
2005-05-04 21:29:44 +00:00
|
|
|
break;
|
2005-08-26 14:21:43 +00:00
|
|
|
case PROP_CAN_ACTIVATE_PULL:
|
|
|
|
g_value_set_boolean (value, src->can_activate_pull);
|
GCC 4 fixen.
Original commit message from CVS:
2005-05-04 Andy Wingo <wingo@pobox.com>
* check/Makefile.am:
* docs/gst/tmpl/gstatomic.sgml:
* docs/gst/tmpl/gstplugin.sgml:
* gst/base/gstbasesink.c: (gst_basesink_activate):
* gst/base/gstbasesrc.c: (gst_basesrc_class_init),
(gst_basesrc_init), (gst_basesrc_set_dataflow_funcs),
(gst_basesrc_query), (gst_basesrc_set_property),
(gst_basesrc_get_property), (gst_basesrc_check_get_range),
(gst_basesrc_activate):
* gst/base/gstbasesrc.h:
* gst/base/gstbasetransform.c: (gst_base_transform_sink_activate),
(gst_base_transform_src_activate):
* gst/elements/gstelements.c:
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
(gst_fakesrc_set_property), (gst_fakesrc_get_property):
* gst/elements/gsttee.c: (gst_tee_sink_activate):
* gst/elements/gsttypefindelement.c: (find_element_get_length),
(gst_type_find_element_checkgetrange),
(gst_type_find_element_activate):
* gst/gstbin.c: (gst_bin_save_thyself), (gst_bin_restore_thyself):
* gst/gstcaps.c: (gst_caps_do_simplify), (gst_caps_save_thyself),
(gst_caps_load_thyself):
* gst/gstelement.c: (gst_element_pads_activate),
(gst_element_save_thyself), (gst_element_restore_thyself):
* gst/gstpad.c: (gst_pad_load_and_link), (gst_pad_save_thyself),
(gst_ghost_pad_save_thyself), (gst_pad_check_pull_range):
* gst/gstpad.h:
* gst/gstxml.c: (gst_xml_write), (gst_xml_parse_doc),
(gst_xml_parse_file), (gst_xml_parse_memory),
(gst_xml_get_element), (gst_xml_make_element):
* gst/indexers/gstfileindex.c: (gst_file_index_load),
(_file_index_id_save_xml), (gst_file_index_commit):
* gst/registries/gstlibxmlregistry.c: (read_string), (read_uint),
(read_enum), (load_pad_template), (load_feature), (load_plugin),
(load_paths):
* libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_caps),
(gst_dp_packet_from_event), (gst_dp_caps_from_packet):
* tools/gst-complete.c: (main):
* tools/gst-compprep.c: (main):
* tools/gst-inspect.c: (print_element_properties_info):
* tools/gst-launch.c: (xmllaunch_parse_cmdline):
* tools/gst-xmlinspect.c: (print_element_properties):
GCC 4 fixen.
2005-05-04 21:29:44 +00:00
|
|
|
break;
|
2005-06-23 10:37:09 +00:00
|
|
|
case PROP_IS_LIVE:
|
2005-06-28 12:45:21 +00:00
|
|
|
g_value_set_boolean (value, gst_base_src_is_live (basesrc));
|
2005-06-23 10:37:09 +00:00
|
|
|
break;
|
2008-05-07 09:34:58 +00:00
|
|
|
case PROP_FORMAT:
|
|
|
|
g_value_set_enum (value, src->format);
|
|
|
|
break;
|
2000-12-20 09:39:43 +00:00
|
|
|
default:
|
2001-06-25 01:20:11 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
2000-12-20 09:39:43 +00:00
|
|
|
break;
|
|
|
|
}
|
Changed the way things are scheduled, especially sources. A Src used to have a push() function, and optionally a pus...
Original commit message from CVS:
Changed the way things are scheduled, especially sources. A Src used to
have a push() function, and optionally a pushregion() to deal with async
reads, etc. That whole thing has gone away, in favor of providing a
pull() function for the output (Src) pad instead, ala chain functions.
This makes constructing cothreaded schedules out of non-loop elements
somewhat easier. Basically there was always a question as to which pad
was being dealt with. In the pullregion case, cothread-specific data was
used to try to pass the region struct to the right place, which is a slow
hack. And in general, the push function severely limited the kind of
tricks that could be played when there's more than one output pad, such as
a multi-out file reader with async capabilities on each pad independently.
This changes the way cothread scheduling occurs. Instead of the hack to
deal with Src's by calling their push() function (or optionally the
pushregion(), in certain cases), we now are working towards a general
mechanism where pads are the only thing that are dealt with directly.
An optimization was made in the process of doing this: the loopfunction
actually run as the outer [stack] frame of the cothread is now set more
intelligently in create_plan() based on what kind of element it is. We
now have:
loopfunc_wrapper: used for loop-based elements, it simply calls the
loopfunc in a loop, paying attention to COTHREAD_STOPPING (see
below). It currently does other, soon to be depracated, stuff.
pullsrc_wrapper: wraps a Src that's not loop-based (since your options
are now loop- or pull-based)
There will be a couple more to deal with other cases, such as Connections
and chain-based elements. The general idea is that it's a lot more
efficient to make the decisions once in create_plan than to keep doing
this huge if/else chain in the wrapper. Just choose the right wrapper up
front. It'll be most apparent performance-wise in the case of whichever
element context is switched to first for each iteration, since the whole
wrapper setup is done for every iteration.
The tricky part is that there is now a bit of overloading of the function
pointers in a pad. The current meanings (possibly to change a bit more
soon) are:
chainfunc: as always, chainfunc pointer is mirrored between peer pads
(this may change, and the chain func may end up in pushfunc)
pushfunc: SrcPad: gst_pad_pushfunc_proxy, cothread_switch to peer
SinkPad: none (may take over chainfunc, see below) pullfunc:
SrcPad: Src or Connection's function to construct buffers
SinkPad: gst_pad_pullfunc_proxy, cothread_switch to peer
There are a number of issues remaining with the scheduling, not the least
of which is the fact that Connections are still dealt with the old way,
with _push() functions and such. I'm trying to figure out a way to unify
the system so it makes sense. Following the scheduling system is hard
enough, trying to change it is murder.
Another useful scheduling addition, mentioned above, is COTHREAD_STOPPING.
It's an element flag that's used to signal whatever code is running in
cothread context that it should be finishing up and exiting soon. An
example of this is in plugins/cobin/spindentity.c. All the loops should
now be composed of do/while loops, rather than while(1) loops:
do {
buf = gst_pad_pull(spindentity->sinkpad);
gst_pad_push(spindentity->srcpad,buf);
} while (!GST_ELEMENT_IS_COTHREAD_STOPPING(element));
The reason for this is that COTHREAD_STOPPING may be set before the above
loop ever gets started. It wouldn't do for the body of the loop to never
once get called, that would simply stall the pipeline. Note that only the
core library code is ever responsible for setting and unsetting this flag.
All elements have to do is respond to it by cleanly exiting the loop and
the function holding it.
This is needed primarily to allow iterations to occur properly.
Basically, there's a single entry point in the cothread scheduling loop,
gst_bin_iterate_func() simply switches to this cothread. If the element
in this context is allowed to loop infinitely, nothing would even switch
back to the context from which the iterate() was originally called. This
is a bit of a problem. The solution is for there to be an implicit switch
back to the originating context. Now, even I'm not sure exactly how this
works, but if the cothread that's switched to actually returns, execution
returns back to the calling context, i.e. iterate_func().
COTHREAD_STOPPING is therefore set just before switching into this
(currently randomly chosen) context, on the assumption that it will return
promptly after finishing its duties. The burden of clearing the flag
falls to the various wrapper functions provided by the Bin code, thus
element writers don't have to worry about doing that at all (and simply
shouldn't).
Related changes:
All the sources in elements/ have been changed to reflect the new system.
FIXMEs:
1) gstpipeline.c calls gst_src_push at some point, dunno why, it's
commented out now.
2) any other sources, including vcdsrc, dvdsrc, and v4lsrc will break
badly and need to be modified to work as pull-based sources.
2000-12-04 10:52:30 +00:00
|
|
|
}
|
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
static void
|
2011-03-21 17:13:55 +00:00
|
|
|
gst_fake_src_prepare_buffer (GstFakeSrc * src, guint8 * data, gsize size)
|
2001-10-17 10:21:27 +00:00
|
|
|
{
|
2011-03-21 17:13:55 +00:00
|
|
|
if (size == 0)
|
2001-10-17 10:21:27 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
switch (src->filltype) {
|
2005-11-22 15:52:03 +00:00
|
|
|
case FAKE_SRC_FILLTYPE_ZERO:
|
2011-03-21 17:13:55 +00:00
|
|
|
memset (data, 0, size);
|
2001-10-17 10:21:27 +00:00
|
|
|
break;
|
2005-07-14 09:35:12 +00:00
|
|
|
case FAKE_SRC_FILLTYPE_RANDOM:
|
2001-10-17 10:21:27 +00:00
|
|
|
{
|
|
|
|
gint i;
|
2011-03-21 17:13:55 +00:00
|
|
|
guint8 *ptr = data;
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2011-03-21 17:13:55 +00:00
|
|
|
for (i = size; i; i--) {
|
2006-12-21 09:37:56 +00:00
|
|
|
*ptr++ = g_random_int_range (0, 256);
|
2001-10-17 10:21:27 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2005-07-14 09:35:12 +00:00
|
|
|
case FAKE_SRC_FILLTYPE_PATTERN:
|
2001-10-17 10:21:27 +00:00
|
|
|
src->pattern_byte = 0x00;
|
2005-07-14 09:35:12 +00:00
|
|
|
case FAKE_SRC_FILLTYPE_PATTERN_CONT:
|
2001-10-17 10:21:27 +00:00
|
|
|
{
|
|
|
|
gint i;
|
2011-03-21 17:13:55 +00:00
|
|
|
guint8 *ptr = data;
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2011-03-21 17:13:55 +00:00
|
|
|
for (i = size; i; i--) {
|
2004-03-15 19:27:17 +00:00
|
|
|
*ptr++ = src->pattern_byte++;
|
2001-10-17 10:21:27 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2005-07-14 09:35:12 +00:00
|
|
|
case FAKE_SRC_FILLTYPE_NOTHING:
|
2001-10-17 10:21:27 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static GstBuffer *
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_src_alloc_buffer (GstFakeSrc * src, guint size)
|
2001-10-17 10:21:27 +00:00
|
|
|
{
|
|
|
|
GstBuffer *buf;
|
2011-03-21 17:13:55 +00:00
|
|
|
gpointer data;
|
|
|
|
gboolean do_prepare = FALSE;
|
2001-10-17 10:21:27 +00:00
|
|
|
|
|
|
|
buf = gst_buffer_new ();
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
if (size != 0) {
|
2001-10-17 10:21:27 +00:00
|
|
|
switch (src->filltype) {
|
2005-07-14 09:35:12 +00:00
|
|
|
case FAKE_SRC_FILLTYPE_NOTHING:
|
2011-03-21 17:13:55 +00:00
|
|
|
data = g_malloc (size);
|
2004-03-15 19:27:17 +00:00
|
|
|
break;
|
2005-11-22 15:52:03 +00:00
|
|
|
case FAKE_SRC_FILLTYPE_ZERO:
|
2011-03-21 17:13:55 +00:00
|
|
|
data = g_malloc0 (size);
|
2004-03-15 19:27:17 +00:00
|
|
|
break;
|
2005-07-14 09:35:12 +00:00
|
|
|
case FAKE_SRC_FILLTYPE_RANDOM:
|
|
|
|
case FAKE_SRC_FILLTYPE_PATTERN:
|
|
|
|
case FAKE_SRC_FILLTYPE_PATTERN_CONT:
|
2001-10-17 10:21:27 +00:00
|
|
|
default:
|
2011-03-21 17:13:55 +00:00
|
|
|
data = g_malloc (size);
|
|
|
|
do_prepare = TRUE;
|
2004-03-15 19:27:17 +00:00
|
|
|
break;
|
2001-10-17 10:21:27 +00:00
|
|
|
}
|
2011-03-21 17:13:55 +00:00
|
|
|
if (do_prepare)
|
|
|
|
gst_fake_src_prepare_buffer (src, data, size);
|
|
|
|
|
2011-06-13 14:31:53 +00:00
|
|
|
gst_buffer_take_memory (buf, -1,
|
2012-02-22 01:02:50 +00:00
|
|
|
gst_memory_new_wrapped (0, data, size, 0, size, data, g_free));
|
2001-10-17 10:21:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
static guint
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_src_get_size (GstFakeSrc * src)
|
2001-10-17 10:21:27 +00:00
|
|
|
{
|
|
|
|
guint size;
|
|
|
|
|
|
|
|
switch (src->sizetype) {
|
2005-07-14 09:35:12 +00:00
|
|
|
case FAKE_SRC_SIZETYPE_FIXED:
|
2001-10-17 10:21:27 +00:00
|
|
|
size = src->sizemax;
|
|
|
|
break;
|
2005-07-14 09:35:12 +00:00
|
|
|
case FAKE_SRC_SIZETYPE_RANDOM:
|
2006-12-21 09:37:56 +00:00
|
|
|
size = g_random_int_range (src->sizemin, src->sizemax);
|
2001-10-17 10:21:27 +00:00
|
|
|
break;
|
2005-11-22 15:52:03 +00:00
|
|
|
case FAKE_SRC_SIZETYPE_EMPTY:
|
2001-10-17 10:21:27 +00:00
|
|
|
default:
|
2004-03-13 15:27:01 +00:00
|
|
|
size = 0;
|
2001-10-17 10:21:27 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstBuffer *
|
2011-03-21 17:13:55 +00:00
|
|
|
gst_fake_src_create_buffer (GstFakeSrc * src, gsize * bufsize)
|
2001-10-17 10:21:27 +00:00
|
|
|
{
|
|
|
|
GstBuffer *buf;
|
2011-03-21 17:13:55 +00:00
|
|
|
gsize size = gst_fake_src_get_size (src);
|
2001-10-17 10:21:27 +00:00
|
|
|
gboolean dump = src->dump;
|
2012-01-20 13:23:57 +00:00
|
|
|
GstMapInfo info;
|
2011-03-21 17:13:55 +00:00
|
|
|
|
|
|
|
*bufsize = size;
|
2001-10-17 10:21:27 +00:00
|
|
|
|
|
|
|
switch (src->data) {
|
2005-07-14 09:35:12 +00:00
|
|
|
case FAKE_SRC_DATA_ALLOCATE:
|
|
|
|
buf = gst_fake_src_alloc_buffer (src, size);
|
2001-10-17 10:21:27 +00:00
|
|
|
break;
|
2005-07-14 09:35:12 +00:00
|
|
|
case FAKE_SRC_DATA_SUBBUFFER:
|
2001-12-17 18:14:51 +00:00
|
|
|
/* see if we have a parent to subbuffer */
|
2001-10-17 10:21:27 +00:00
|
|
|
if (!src->parent) {
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_src_alloc_parent (src);
|
2004-03-15 19:27:17 +00:00
|
|
|
g_assert (src->parent);
|
2001-10-17 10:21:27 +00:00
|
|
|
}
|
2001-12-17 18:14:51 +00:00
|
|
|
/* see if it's large enough */
|
2011-03-21 17:13:55 +00:00
|
|
|
if ((src->parentsize - src->parentoffset) >= size) {
|
2011-03-30 14:47:55 +00:00
|
|
|
buf =
|
|
|
|
gst_buffer_copy_region (src->parent, GST_BUFFER_COPY_ALL,
|
|
|
|
src->parentoffset, size);
|
2004-03-15 19:27:17 +00:00
|
|
|
src->parentoffset += size;
|
2004-03-13 15:27:01 +00:00
|
|
|
} else {
|
2004-03-15 19:27:17 +00:00
|
|
|
/* the parent is useless now */
|
|
|
|
gst_buffer_unref (src->parent);
|
|
|
|
src->parent = NULL;
|
|
|
|
/* try again (this will allocate a new parent) */
|
2011-03-21 17:13:55 +00:00
|
|
|
return gst_fake_src_create_buffer (src, bufsize);
|
2001-10-17 10:21:27 +00:00
|
|
|
}
|
2012-01-20 13:23:57 +00:00
|
|
|
gst_buffer_map (buf, &info, GST_MAP_WRITE);
|
|
|
|
gst_fake_src_prepare_buffer (src, info.data, info.size);
|
|
|
|
gst_buffer_unmap (buf, &info);
|
2001-10-17 10:21:27 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_warning ("fakesrc: dunno how to allocate buffers !");
|
2004-03-13 15:27:01 +00:00
|
|
|
buf = gst_buffer_new ();
|
2001-10-17 10:21:27 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (dump) {
|
2012-01-20 13:23:57 +00:00
|
|
|
gst_buffer_map (buf, &info, GST_MAP_READ);
|
|
|
|
gst_util_dump_mem (info.data, info.size);
|
|
|
|
gst_buffer_unmap (buf, &info);
|
2001-10-17 10:21:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
2000-12-20 09:39:43 +00:00
|
|
|
|
2005-12-07 15:33:42 +00:00
|
|
|
static void
|
|
|
|
gst_fake_src_get_times (GstBaseSrc * basesrc, GstBuffer * buffer,
|
|
|
|
GstClockTime * start, GstClockTime * end)
|
|
|
|
{
|
|
|
|
GstFakeSrc *src;
|
|
|
|
|
|
|
|
src = GST_FAKE_SRC (basesrc);
|
|
|
|
|
|
|
|
/* sync on the timestamp of the buffer if requested. */
|
|
|
|
if (src->sync) {
|
2012-02-21 11:52:18 +00:00
|
|
|
GstClockTime timestamp, duration;
|
|
|
|
|
|
|
|
/* first sync on DTS, else use PTS */
|
|
|
|
timestamp = GST_BUFFER_DTS (buffer);
|
|
|
|
if (!GST_CLOCK_TIME_IS_VALID (timestamp))
|
|
|
|
timestamp = GST_BUFFER_PTS (buffer);
|
2005-12-07 15:33:42 +00:00
|
|
|
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (timestamp)) {
|
|
|
|
/* get duration to calculate end time */
|
2012-02-21 11:52:18 +00:00
|
|
|
duration = GST_BUFFER_DURATION (buffer);
|
2005-12-07 15:33:42 +00:00
|
|
|
if (GST_CLOCK_TIME_IS_VALID (duration)) {
|
|
|
|
*end = timestamp + duration;
|
|
|
|
}
|
|
|
|
*start = timestamp;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
*start = -1;
|
|
|
|
*end = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
static GstFlowReturn
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_src_create (GstBaseSrc * basesrc, guint64 offset, guint length,
|
2005-03-21 17:34:02 +00:00
|
|
|
GstBuffer ** ret)
|
2000-12-20 09:39:43 +00:00
|
|
|
{
|
Changed the way things are scheduled, especially sources. A Src used to have a push() function, and optionally a pus...
Original commit message from CVS:
Changed the way things are scheduled, especially sources. A Src used to
have a push() function, and optionally a pushregion() to deal with async
reads, etc. That whole thing has gone away, in favor of providing a
pull() function for the output (Src) pad instead, ala chain functions.
This makes constructing cothreaded schedules out of non-loop elements
somewhat easier. Basically there was always a question as to which pad
was being dealt with. In the pullregion case, cothread-specific data was
used to try to pass the region struct to the right place, which is a slow
hack. And in general, the push function severely limited the kind of
tricks that could be played when there's more than one output pad, such as
a multi-out file reader with async capabilities on each pad independently.
This changes the way cothread scheduling occurs. Instead of the hack to
deal with Src's by calling their push() function (or optionally the
pushregion(), in certain cases), we now are working towards a general
mechanism where pads are the only thing that are dealt with directly.
An optimization was made in the process of doing this: the loopfunction
actually run as the outer [stack] frame of the cothread is now set more
intelligently in create_plan() based on what kind of element it is. We
now have:
loopfunc_wrapper: used for loop-based elements, it simply calls the
loopfunc in a loop, paying attention to COTHREAD_STOPPING (see
below). It currently does other, soon to be depracated, stuff.
pullsrc_wrapper: wraps a Src that's not loop-based (since your options
are now loop- or pull-based)
There will be a couple more to deal with other cases, such as Connections
and chain-based elements. The general idea is that it's a lot more
efficient to make the decisions once in create_plan than to keep doing
this huge if/else chain in the wrapper. Just choose the right wrapper up
front. It'll be most apparent performance-wise in the case of whichever
element context is switched to first for each iteration, since the whole
wrapper setup is done for every iteration.
The tricky part is that there is now a bit of overloading of the function
pointers in a pad. The current meanings (possibly to change a bit more
soon) are:
chainfunc: as always, chainfunc pointer is mirrored between peer pads
(this may change, and the chain func may end up in pushfunc)
pushfunc: SrcPad: gst_pad_pushfunc_proxy, cothread_switch to peer
SinkPad: none (may take over chainfunc, see below) pullfunc:
SrcPad: Src or Connection's function to construct buffers
SinkPad: gst_pad_pullfunc_proxy, cothread_switch to peer
There are a number of issues remaining with the scheduling, not the least
of which is the fact that Connections are still dealt with the old way,
with _push() functions and such. I'm trying to figure out a way to unify
the system so it makes sense. Following the scheduling system is hard
enough, trying to change it is murder.
Another useful scheduling addition, mentioned above, is COTHREAD_STOPPING.
It's an element flag that's used to signal whatever code is running in
cothread context that it should be finishing up and exiting soon. An
example of this is in plugins/cobin/spindentity.c. All the loops should
now be composed of do/while loops, rather than while(1) loops:
do {
buf = gst_pad_pull(spindentity->sinkpad);
gst_pad_push(spindentity->srcpad,buf);
} while (!GST_ELEMENT_IS_COTHREAD_STOPPING(element));
The reason for this is that COTHREAD_STOPPING may be set before the above
loop ever gets started. It wouldn't do for the body of the loop to never
once get called, that would simply stall the pipeline. Note that only the
core library code is ever responsible for setting and unsetting this flag.
All elements have to do is respond to it by cleanly exiting the loop and
the function holding it.
This is needed primarily to allow iterations to occur properly.
Basically, there's a single entry point in the cothread scheduling loop,
gst_bin_iterate_func() simply switches to this cothread. If the element
in this context is allowed to loop infinitely, nothing would even switch
back to the context from which the iterate() was originally called. This
is a bit of a problem. The solution is for there to be an implicit switch
back to the originating context. Now, even I'm not sure exactly how this
works, but if the cothread that's switched to actually returns, execution
returns back to the calling context, i.e. iterate_func().
COTHREAD_STOPPING is therefore set just before switching into this
(currently randomly chosen) context, on the assumption that it will return
promptly after finishing its duties. The burden of clearing the flag
falls to the various wrapper functions provided by the Bin code, thus
element writers don't have to worry about doing that at all (and simply
shouldn't).
Related changes:
All the sources in elements/ have been changed to reflect the new system.
FIXMEs:
1) gstpipeline.c calls gst_src_push at some point, dunno why, it's
commented out now.
2) any other sources, including vcdsrc, dvdsrc, and v4lsrc will break
badly and need to be modified to work as pull-based sources.
2000-12-04 10:52:30 +00:00
|
|
|
GstFakeSrc *src;
|
2000-01-30 09:03:00 +00:00
|
|
|
GstBuffer *buf;
|
2004-10-05 08:52:37 +00:00
|
|
|
GstClockTime time;
|
2011-03-21 17:13:55 +00:00
|
|
|
gsize size;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
src = GST_FAKE_SRC (basesrc);
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2011-03-21 17:13:55 +00:00
|
|
|
buf = gst_fake_src_create_buffer (src, &size);
|
gst/elements/: Added datarate properties to limit the datarate.
Original commit message from CVS:
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
(gst_fakesrc_init), (gst_fakesrc_set_clock),
(gst_fakesrc_set_property), (gst_fakesrc_get_property),
(gst_fakesrc_get), (gst_fakesrc_change_state):
* gst/elements/gstfakesrc.h:
* gst/elements/gstidentity.c: (gst_identity_class_init),
(gst_identity_init), (gst_identity_chain),
(gst_identity_set_property), (gst_identity_get_property),
(gst_identity_change_state):
* gst/elements/gstidentity.h:
Added datarate properties to limit the datarate.
2004-09-03 11:40:35 +00:00
|
|
|
GST_BUFFER_OFFSET (buf) = src->buffer_count++;
|
|
|
|
|
|
|
|
if (src->datarate > 0) {
|
|
|
|
time = (src->bytes_sent * GST_SECOND) / src->datarate;
|
|
|
|
|
2011-03-21 17:13:55 +00:00
|
|
|
GST_BUFFER_DURATION (buf) = size * GST_SECOND / src->datarate;
|
2005-11-15 12:29:07 +00:00
|
|
|
} else if (gst_base_src_is_live (basesrc)) {
|
|
|
|
GstClock *clock;
|
|
|
|
|
|
|
|
clock = gst_element_get_clock (GST_ELEMENT (src));
|
|
|
|
|
2005-11-15 12:35:45 +00:00
|
|
|
if (clock) {
|
|
|
|
time = gst_clock_get_time (clock);
|
|
|
|
time -= gst_element_get_base_time (GST_ELEMENT (src));
|
|
|
|
gst_object_unref (clock);
|
|
|
|
} else {
|
|
|
|
/* not an error not to have a clock */
|
|
|
|
time = GST_CLOCK_TIME_NONE;
|
|
|
|
}
|
2005-11-15 12:29:07 +00:00
|
|
|
} else {
|
|
|
|
time = GST_CLOCK_TIME_NONE;
|
gst/elements/: Added datarate properties to limit the datarate.
Original commit message from CVS:
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
(gst_fakesrc_init), (gst_fakesrc_set_clock),
(gst_fakesrc_set_property), (gst_fakesrc_get_property),
(gst_fakesrc_get), (gst_fakesrc_change_state):
* gst/elements/gstfakesrc.h:
* gst/elements/gstidentity.c: (gst_identity_class_init),
(gst_identity_init), (gst_identity_chain),
(gst_identity_set_property), (gst_identity_get_property),
(gst_identity_change_state):
* gst/elements/gstidentity.h:
Added datarate properties to limit the datarate.
2004-09-03 11:40:35 +00:00
|
|
|
}
|
2005-11-15 12:29:07 +00:00
|
|
|
|
2012-02-21 11:52:18 +00:00
|
|
|
GST_BUFFER_DTS (buf) = time;
|
|
|
|
GST_BUFFER_PTS (buf) = time;
|
2001-07-11 14:56:16 +00:00
|
|
|
|
2001-12-18 19:03:07 +00:00
|
|
|
if (!src->silent) {
|
2012-02-21 11:52:18 +00:00
|
|
|
gchar dts_str[64], pts_str[64], dur_str[64];
|
2011-12-06 13:53:47 +00:00
|
|
|
gchar flag_str[100];
|
2005-10-14 14:10:24 +00:00
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (src);
|
2002-09-15 13:53:08 +00:00
|
|
|
g_free (src->last_message);
|
2002-02-06 21:57:35 +00:00
|
|
|
|
2012-02-21 11:52:18 +00:00
|
|
|
if (GST_BUFFER_DTS (buf) != GST_CLOCK_TIME_NONE) {
|
|
|
|
g_snprintf (dts_str, sizeof (dts_str), "%" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (GST_BUFFER_DTS (buf)));
|
2005-10-14 14:10:24 +00:00
|
|
|
} else {
|
2012-02-21 11:52:18 +00:00
|
|
|
g_strlcpy (dts_str, "none", sizeof (dts_str));
|
|
|
|
}
|
|
|
|
if (GST_BUFFER_PTS (buf) != GST_CLOCK_TIME_NONE) {
|
|
|
|
g_snprintf (pts_str, sizeof (pts_str), "%" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (GST_BUFFER_PTS (buf)));
|
|
|
|
} else {
|
|
|
|
g_strlcpy (pts_str, "none", sizeof (pts_str));
|
2005-10-14 14:10:24 +00:00
|
|
|
}
|
|
|
|
if (GST_BUFFER_DURATION (buf) != GST_CLOCK_TIME_NONE) {
|
|
|
|
g_snprintf (dur_str, sizeof (dur_str), "%" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (GST_BUFFER_DURATION (buf)));
|
|
|
|
} else {
|
|
|
|
g_strlcpy (dur_str, "none", sizeof (dur_str));
|
|
|
|
}
|
|
|
|
|
2011-12-06 13:53:47 +00:00
|
|
|
{
|
2011-12-08 00:39:10 +00:00
|
|
|
const char *flag_list[15] = {
|
|
|
|
"", "", "", "", "live", "decode-only", "discont", "resync", "corrupted",
|
|
|
|
"marker", "header", "gap", "droppable", "delta-unit", "in-caps"
|
2011-12-06 13:53:47 +00:00
|
|
|
};
|
|
|
|
int i;
|
|
|
|
char *end = flag_str;
|
|
|
|
end[0] = '\0';
|
2011-12-08 00:39:10 +00:00
|
|
|
for (i = 0; i < G_N_ELEMENTS (flag_list); i++) {
|
2011-12-06 13:53:47 +00:00
|
|
|
if (GST_MINI_OBJECT_CAST (buf)->flags & (1 << i)) {
|
|
|
|
strcpy (end, flag_list[i]);
|
|
|
|
end += strlen (end);
|
|
|
|
end[0] = ' ';
|
|
|
|
end[1] = '\0';
|
|
|
|
end++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
src->last_message =
|
2012-02-21 11:52:18 +00:00
|
|
|
g_strdup_printf ("create ******* (%s:%s) (%u bytes, dts: %s, pts:%s"
|
2005-10-14 14:10:24 +00:00
|
|
|
", duration: %s, offset: %" G_GINT64_FORMAT ", offset_end: %"
|
2011-12-06 13:53:47 +00:00
|
|
|
G_GINT64_FORMAT ", flags: %d %s) %p",
|
2011-12-08 00:39:10 +00:00
|
|
|
GST_DEBUG_PAD_NAME (GST_BASE_SRC_CAST (src)->srcpad), (guint) size,
|
2012-02-21 11:52:18 +00:00
|
|
|
dts_str, pts_str, dur_str, GST_BUFFER_OFFSET (buf),
|
|
|
|
GST_BUFFER_OFFSET_END (buf), GST_MINI_OBJECT_CAST (buf)->flags,
|
|
|
|
flag_str, buf);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (src);
|
2002-02-06 21:57:35 +00:00
|
|
|
|
2010-10-07 17:19:31 +00:00
|
|
|
g_object_notify_by_pspec ((GObject *) src, pspec_last_message);
|
2001-12-18 19:03:07 +00:00
|
|
|
}
|
2000-12-22 23:23:10 +00:00
|
|
|
|
2003-08-07 12:45:31 +00:00
|
|
|
if (src->signal_handoffs) {
|
|
|
|
GST_LOG_OBJECT (src, "pre handoff emit");
|
2009-10-03 19:49:54 +00:00
|
|
|
g_signal_emit (src, gst_fake_src_signals[SIGNAL_HANDOFF], 0, buf,
|
|
|
|
basesrc->srcpad);
|
2003-08-07 12:45:31 +00:00
|
|
|
GST_LOG_OBJECT (src, "post handoff emit");
|
|
|
|
}
|
2000-12-22 23:23:10 +00:00
|
|
|
|
2011-03-21 17:13:55 +00:00
|
|
|
src->bytes_sent += size;
|
gst/elements/: Added datarate properties to limit the datarate.
Original commit message from CVS:
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
(gst_fakesrc_init), (gst_fakesrc_set_clock),
(gst_fakesrc_set_property), (gst_fakesrc_get_property),
(gst_fakesrc_get), (gst_fakesrc_change_state):
* gst/elements/gstfakesrc.h:
* gst/elements/gstidentity.c: (gst_identity_class_init),
(gst_identity_init), (gst_identity_chain),
(gst_identity_set_property), (gst_identity_get_property),
(gst_identity_change_state):
* gst/elements/gstidentity.h:
Added datarate properties to limit the datarate.
2004-09-03 11:40:35 +00:00
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
*ret = buf;
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
|
|
|
|
2005-04-12 10:52:55 +00:00
|
|
|
static gboolean
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_src_start (GstBaseSrc * basesrc)
|
2001-10-17 10:21:27 +00:00
|
|
|
{
|
2005-04-12 10:52:55 +00:00
|
|
|
GstFakeSrc *src;
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
src = GST_FAKE_SRC (basesrc);
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2005-04-12 10:52:55 +00:00
|
|
|
src->buffer_count = 0;
|
|
|
|
src->pattern_byte = 0x00;
|
|
|
|
src->bytes_sent = 0;
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2008-05-07 09:34:58 +00:00
|
|
|
gst_base_src_set_format (basesrc, src->format);
|
|
|
|
|
2005-04-12 10:52:55 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2005-04-12 10:52:55 +00:00
|
|
|
static gboolean
|
2005-07-14 09:35:12 +00:00
|
|
|
gst_fake_src_stop (GstBaseSrc * basesrc)
|
2005-04-12 10:52:55 +00:00
|
|
|
{
|
|
|
|
GstFakeSrc *src;
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
src = GST_FAKE_SRC (basesrc);
|
2005-04-12 10:52:55 +00:00
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (src);
|
2005-04-12 10:52:55 +00:00
|
|
|
if (src->parent) {
|
|
|
|
gst_buffer_unref (src->parent);
|
|
|
|
src->parent = NULL;
|
2001-12-15 22:37:35 +00:00
|
|
|
}
|
2005-04-12 10:52:55 +00:00
|
|
|
g_free (src->last_message);
|
|
|
|
src->last_message = NULL;
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (src);
|
2001-12-15 22:37:35 +00:00
|
|
|
|
2005-04-12 10:52:55 +00:00
|
|
|
return TRUE;
|
2001-10-17 10:21:27 +00:00
|
|
|
}
|
2005-08-26 14:21:43 +00:00
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_fake_src_is_seekable (GstBaseSrc * basesrc)
|
|
|
|
{
|
|
|
|
GstFakeSrc *src = GST_FAKE_SRC (basesrc);
|
|
|
|
|
|
|
|
return src->can_activate_pull;
|
|
|
|
}
|