2000-12-29 05:38:06 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
*
|
2005-07-14 09:35:12 +00:00
|
|
|
* gstfakesrc.h:
|
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
|
2012-11-03 20:44:48 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2000-01-30 09:03:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
#ifndef __GST_FAKE_SRC_H__
|
|
|
|
#define __GST_FAKE_SRC_H__
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
#include <gst/gst.h>
|
gst/: Made base source class, make fakesrc extend it.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/README:
* gst/base/gstbasesink.c: (gst_basesink_base_init),
(gst_basesink_pad_getcaps), (gst_basesink_pad_setcaps),
(gst_basesink_pad_buffer_alloc), (gst_basesink_init),
(gst_basesink_do_sync), (gst_basesink_chain_unlocked):
* gst/base/gstbasesrc.c: (gst_basesrc_get_type),
(gst_basesrc_base_init), (gst_basesrc_class_init),
(gst_basesrc_init), (gst_basesrc_get_formats),
(gst_basesrc_get_query_types), (gst_basesrc_query),
(gst_basesrc_get_event_mask), (gst_basesrc_event_handler),
(gst_basesrc_set_property), (gst_basesrc_get_property),
(gst_basesrc_get_range_unlocked), (gst_basesrc_get_range),
(gst_basesrc_loop), (gst_basesrc_activate),
(gst_basesrc_change_state):
* gst/base/gstbasesrc.h:
* gst/elements/gstfakesrc.c: (gst_fakesrc_base_init),
(gst_fakesrc_class_init), (gst_fakesrc_init),
(gst_fakesrc_event_handler), (gst_fakesrc_set_property),
(gst_fakesrc_get_property), (gst_fakesrc_create):
* gst/elements/gstfakesrc.h:
* gst/elements/gstfilesrc.c: (gst_filesrc_getrange),
(gst_filesrc_open_file), (gst_filesrc_loop),
(gst_filesrc_activate), (filesrc_find_peek),
(gst_filesrc_type_find):
Made base source class, make fakesrc extend it.
Add comments to basesink class.
Some filesrc cleanup.
2005-04-05 08:44:20 +00:00
|
|
|
#include <gst/base/gstbasesrc.h>
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2005-11-24 09:44:07 +00:00
|
|
|
/**
|
|
|
|
* GstFakeSrcOutputType:
|
|
|
|
* @FAKE_SRC_FIRST_LAST_LOOP: first pad then last pad
|
|
|
|
* @FAKE_SRC_LAST_FIRST_LOOP: last pad then first pad
|
|
|
|
* @FAKE_SRC_PING_PONG: ping pong between pads
|
|
|
|
* @FAKE_SRC_ORDERED_RANDOM: ordered random pad
|
|
|
|
* @FAKE_SRC_RANDOM: random pad
|
|
|
|
* @FAKE_SRC_PATTERN_LOOP: loop between pads in a particular pattern
|
|
|
|
* @FAKE_SRC_PING_PONG_PATTERN: ping pong based on a pattern
|
|
|
|
* @FAKE_SRC_GET_ALWAYS_SUCEEDS: a get always succeeds on a pad
|
|
|
|
*
|
|
|
|
* The different output types. Unused currently.
|
|
|
|
*/
|
2004-03-15 14:43:35 +00:00
|
|
|
typedef enum {
|
2005-07-14 09:35:12 +00:00
|
|
|
FAKE_SRC_FIRST_LAST_LOOP = 1,
|
|
|
|
FAKE_SRC_LAST_FIRST_LOOP,
|
|
|
|
FAKE_SRC_PING_PONG,
|
|
|
|
FAKE_SRC_ORDERED_RANDOM,
|
|
|
|
FAKE_SRC_RANDOM,
|
|
|
|
FAKE_SRC_PATTERN_LOOP,
|
|
|
|
FAKE_SRC_PING_PONG_PATTERN,
|
|
|
|
FAKE_SRC_GET_ALWAYS_SUCEEDS
|
2004-03-15 14:43:35 +00:00
|
|
|
} GstFakeSrcOutputType;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-11-24 09:44:07 +00:00
|
|
|
/**
|
|
|
|
* GstFakeSrcDataType:
|
|
|
|
* @FAKE_SRC_DATA_ALLOCATE: allocate buffers
|
|
|
|
* @FAKE_SRC_DATA_SUBBUFFER: subbuffer each buffer
|
|
|
|
*
|
|
|
|
* The different ways buffers are allocated.
|
|
|
|
*/
|
2004-03-15 14:43:35 +00:00
|
|
|
typedef enum {
|
2005-07-14 09:35:12 +00:00
|
|
|
FAKE_SRC_DATA_ALLOCATE = 1,
|
|
|
|
FAKE_SRC_DATA_SUBBUFFER
|
2004-03-15 14:43:35 +00:00
|
|
|
} GstFakeSrcDataType;
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2005-11-24 09:44:07 +00:00
|
|
|
/**
|
|
|
|
* GstFakeSrcSizeType:
|
|
|
|
* @FAKE_SRC_SIZETYPE_EMPTY: create empty buffers
|
2005-12-05 10:27:59 +00:00
|
|
|
* @FAKE_SRC_SIZETYPE_FIXED: fixed buffer size (sizemax sized)
|
|
|
|
* @FAKE_SRC_SIZETYPE_RANDOM: random buffer size (sizemin <= size <= sizemax)
|
2005-11-24 09:44:07 +00:00
|
|
|
*
|
|
|
|
* The different size of the allocated buffers.
|
|
|
|
*/
|
2004-03-15 14:43:35 +00:00
|
|
|
typedef enum {
|
2005-11-22 15:52:03 +00:00
|
|
|
FAKE_SRC_SIZETYPE_EMPTY = 1,
|
2005-07-14 09:35:12 +00:00
|
|
|
FAKE_SRC_SIZETYPE_FIXED,
|
|
|
|
FAKE_SRC_SIZETYPE_RANDOM
|
2004-03-15 14:43:35 +00:00
|
|
|
} GstFakeSrcSizeType;
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2005-11-24 09:44:07 +00:00
|
|
|
/**
|
|
|
|
* GstFakeSrcFillType:
|
2017-01-16 14:26:16 +00:00
|
|
|
* @FAKE_SRC_FILLTYPE_NOTHING: do not fill buffers
|
2005-11-24 09:44:07 +00:00
|
|
|
* @FAKE_SRC_FILLTYPE_ZERO: fill buffers with 0
|
|
|
|
* @FAKE_SRC_FILLTYPE_RANDOM: fill buffers with random bytes
|
|
|
|
* @FAKE_SRC_FILLTYPE_PATTERN: fill buffers with a pattern
|
|
|
|
* @FAKE_SRC_FILLTYPE_PATTERN_CONT: fill buffers with a continuous pattern
|
|
|
|
*
|
|
|
|
* The different ways of filling the buffers.
|
|
|
|
*/
|
2004-03-15 14:43:35 +00:00
|
|
|
typedef enum {
|
2005-07-14 09:35:12 +00:00
|
|
|
FAKE_SRC_FILLTYPE_NOTHING = 1,
|
2005-11-22 15:52:03 +00:00
|
|
|
FAKE_SRC_FILLTYPE_ZERO,
|
2005-07-14 09:35:12 +00:00
|
|
|
FAKE_SRC_FILLTYPE_RANDOM,
|
|
|
|
FAKE_SRC_FILLTYPE_PATTERN,
|
|
|
|
FAKE_SRC_FILLTYPE_PATTERN_CONT
|
2004-03-15 14:43:35 +00:00
|
|
|
} GstFakeSrcFillType;
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
#define GST_TYPE_FAKE_SRC \
|
|
|
|
(gst_fake_src_get_type())
|
|
|
|
#define GST_FAKE_SRC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_FAKE_SRC,GstFakeSrc))
|
|
|
|
#define GST_FAKE_SRC_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_FAKE_SRC,GstFakeSrcClass))
|
|
|
|
#define GST_IS_FAKE_SRC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_FAKE_SRC))
|
2006-06-01 18:22:14 +00:00
|
|
|
#define GST_IS_FAKE_SRC_CLASS(klass) \
|
2005-07-14 09:35:12 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_FAKE_SRC))
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
typedef struct _GstFakeSrc GstFakeSrc;
|
|
|
|
typedef struct _GstFakeSrcClass GstFakeSrcClass;
|
|
|
|
|
2005-11-24 09:44:07 +00:00
|
|
|
/**
|
|
|
|
* GstFakeSrc:
|
|
|
|
*
|
|
|
|
* Opaque #GstFakeSrc data structure.
|
|
|
|
*/
|
2004-03-15 14:43:35 +00:00
|
|
|
struct _GstFakeSrc {
|
gst/: Made base source class, make fakesrc extend it.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/README:
* gst/base/gstbasesink.c: (gst_basesink_base_init),
(gst_basesink_pad_getcaps), (gst_basesink_pad_setcaps),
(gst_basesink_pad_buffer_alloc), (gst_basesink_init),
(gst_basesink_do_sync), (gst_basesink_chain_unlocked):
* gst/base/gstbasesrc.c: (gst_basesrc_get_type),
(gst_basesrc_base_init), (gst_basesrc_class_init),
(gst_basesrc_init), (gst_basesrc_get_formats),
(gst_basesrc_get_query_types), (gst_basesrc_query),
(gst_basesrc_get_event_mask), (gst_basesrc_event_handler),
(gst_basesrc_set_property), (gst_basesrc_get_property),
(gst_basesrc_get_range_unlocked), (gst_basesrc_get_range),
(gst_basesrc_loop), (gst_basesrc_activate),
(gst_basesrc_change_state):
* gst/base/gstbasesrc.h:
* gst/elements/gstfakesrc.c: (gst_fakesrc_base_init),
(gst_fakesrc_class_init), (gst_fakesrc_init),
(gst_fakesrc_event_handler), (gst_fakesrc_set_property),
(gst_fakesrc_get_property), (gst_fakesrc_create):
* gst/elements/gstfakesrc.h:
* gst/elements/gstfilesrc.c: (gst_filesrc_getrange),
(gst_filesrc_open_file), (gst_filesrc_loop),
(gst_filesrc_activate), (filesrc_find_peek),
(gst_filesrc_type_find):
Made base source class, make fakesrc extend it.
Add comments to basesink class.
Some filesrc cleanup.
2005-04-05 08:44:20 +00:00
|
|
|
GstBaseSrc element;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-06-24 18:16:14 +00:00
|
|
|
/*< private >*/
|
2005-07-14 09:35:12 +00:00
|
|
|
gboolean has_loop;
|
|
|
|
gboolean has_getrange;
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2000-12-28 00:18:26 +00:00
|
|
|
GstFakeSrcOutputType output;
|
2004-03-15 14:43:35 +00:00
|
|
|
GstFakeSrcDataType data;
|
|
|
|
GstFakeSrcSizeType sizetype;
|
|
|
|
GstFakeSrcFillType filltype;
|
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
guint sizemin;
|
|
|
|
guint sizemax;
|
|
|
|
GstBuffer *parent;
|
|
|
|
guint parentsize;
|
|
|
|
guint parentoffset;
|
|
|
|
guint8 pattern_byte;
|
|
|
|
GList *patternlist;
|
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
|
|
|
gint datarate;
|
|
|
|
gboolean sync;
|
|
|
|
GstClock *clock;
|
More segment updates, replace code in plugins with segment helper functions.
Original commit message from CVS:
* check/gst/gstsegment.c: (GST_START_TEST):
* docs/design/part-TODO.txt:
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_event), (gst_base_sink_do_sync),
(gst_base_sink_activate_pull), (gst_base_sink_get_position),
(gst_base_sink_query), (gst_base_sink_change_state):
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.c: (gst_base_src_init), (gst_base_src_query),
(gst_base_src_default_newsegment),
(gst_base_src_configure_segment), (gst_base_src_do_seek),
(gst_base_src_get_range), (gst_base_src_loop),
(gst_base_src_change_state):
* gst/base/gstbasesrc.h:
* gst/base/gstbasetransform.c:
(gst_base_transform_prepare_output_buf),
(gst_base_transform_event), (gst_base_transform_change_state):
* gst/base/gstbasetransform.h:
* gst/base/gstcollectpads.c: (gst_collect_pads_add_pad),
(gst_collect_pads_event):
* gst/base/gstcollectpads.h:
* gst/elements/gstfakesrc.c: (gst_fake_src_init),
(gst_fake_src_create):
* gst/elements/gstfakesrc.h:
* gst/elements/gstidentity.c: (gst_identity_transform_ip):
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_duration),
(gst_segment_set_last_stop), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_to_stream_time),
(gst_segment_to_running_time), (gst_segment_clip):
* gst/gstsegment.h:
More segment updates, replace code in plugins with segment
helper functions.
2005-11-21 17:09:45 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
gboolean silent;
|
|
|
|
gboolean signal_handoffs;
|
|
|
|
gboolean dump;
|
2005-08-26 14:21:43 +00:00
|
|
|
gboolean can_activate_pull;
|
2008-05-07 09:34:58 +00:00
|
|
|
GstFormat format;
|
2004-03-15 14:43:35 +00:00
|
|
|
|
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
|
|
|
guint64 bytes_sent;
|
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
gchar *last_message;
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
struct _GstFakeSrcClass {
|
gst/: Made base source class, make fakesrc extend it.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/README:
* gst/base/gstbasesink.c: (gst_basesink_base_init),
(gst_basesink_pad_getcaps), (gst_basesink_pad_setcaps),
(gst_basesink_pad_buffer_alloc), (gst_basesink_init),
(gst_basesink_do_sync), (gst_basesink_chain_unlocked):
* gst/base/gstbasesrc.c: (gst_basesrc_get_type),
(gst_basesrc_base_init), (gst_basesrc_class_init),
(gst_basesrc_init), (gst_basesrc_get_formats),
(gst_basesrc_get_query_types), (gst_basesrc_query),
(gst_basesrc_get_event_mask), (gst_basesrc_event_handler),
(gst_basesrc_set_property), (gst_basesrc_get_property),
(gst_basesrc_get_range_unlocked), (gst_basesrc_get_range),
(gst_basesrc_loop), (gst_basesrc_activate),
(gst_basesrc_change_state):
* gst/base/gstbasesrc.h:
* gst/elements/gstfakesrc.c: (gst_fakesrc_base_init),
(gst_fakesrc_class_init), (gst_fakesrc_init),
(gst_fakesrc_event_handler), (gst_fakesrc_set_property),
(gst_fakesrc_get_property), (gst_fakesrc_create):
* gst/elements/gstfakesrc.h:
* gst/elements/gstfilesrc.c: (gst_filesrc_getrange),
(gst_filesrc_open_file), (gst_filesrc_loop),
(gst_filesrc_activate), (filesrc_find_peek),
(gst_filesrc_type_find):
Made base source class, make fakesrc extend it.
Add comments to basesink class.
Some filesrc cleanup.
2005-04-05 08:44:20 +00:00
|
|
|
GstBaseSrcClass parent_class;
|
2000-12-22 23:23:10 +00:00
|
|
|
|
2005-06-24 18:16:14 +00:00
|
|
|
/*< public >*/
|
2000-12-22 23:23:10 +00:00
|
|
|
/* signals */
|
2004-03-15 14:43:35 +00:00
|
|
|
void (*handoff) (GstElement *element, GstBuffer *buf, GstPad *pad);
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2012-07-14 19:00:30 +00:00
|
|
|
G_GNUC_INTERNAL GType gst_fake_src_get_type (void);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-10-30 09:17:34 +00:00
|
|
|
G_END_DECLS
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
#endif /* __GST_FAKE_SRC_H__ */
|