2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wtay@chello.be>
4 * 2005 Wim Taymans <wim@fluendo.com>
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Library General Public License for more details.
18 * You should have received a copy of the GNU Library General Public
19 * License along with this library; if not, write to the
20 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
21 * Boston, MA 02110-1301, USA.
24 #ifndef __GST_BASE_SRC_H__
25 #define __GST_BASE_SRC_H__
28 #include <gst/base/base-prelude.h>
32 #define GST_TYPE_BASE_SRC (gst_base_src_get_type())
33 #define GST_BASE_SRC(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_BASE_SRC,GstBaseSrc))
34 #define GST_BASE_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_BASE_SRC,GstBaseSrcClass))
35 #define GST_BASE_SRC_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_BASE_SRC, GstBaseSrcClass))
36 #define GST_IS_BASE_SRC(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_BASE_SRC))
37 #define GST_IS_BASE_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_BASE_SRC))
38 #define GST_BASE_SRC_CAST(obj) ((GstBaseSrc *)(obj))
42 * @GST_BASE_SRC_FLAG_STARTING: has source is starting
43 * @GST_BASE_SRC_FLAG_STARTED: has source been started
44 * @GST_BASE_SRC_FLAG_LAST: offset to define more flags
46 * The #GstElement flags that a basesrc element may have.
49 GST_BASE_SRC_FLAG_STARTING = (GST_ELEMENT_FLAG_LAST << 0),
50 GST_BASE_SRC_FLAG_STARTED = (GST_ELEMENT_FLAG_LAST << 1),
52 GST_BASE_SRC_FLAG_LAST = (GST_ELEMENT_FLAG_LAST << 6)
55 #define GST_BASE_SRC_IS_STARTING(obj) GST_OBJECT_FLAG_IS_SET ((obj), GST_BASE_SRC_FLAG_STARTING)
56 #define GST_BASE_SRC_IS_STARTED(obj) GST_OBJECT_FLAG_IS_SET ((obj), GST_BASE_SRC_FLAG_STARTED)
58 typedef struct _GstBaseSrc GstBaseSrc;
59 typedef struct _GstBaseSrcClass GstBaseSrcClass;
60 typedef struct _GstBaseSrcPrivate GstBaseSrcPrivate;
64 * @obj: base source instance
66 * Gives the pointer to the #GstPad object of the element.
68 #define GST_BASE_SRC_PAD(obj) (GST_BASE_SRC_CAST (obj)->srcpad)
74 * The opaque #GstBaseSrc data structure.
82 /* available to subclass implementations */
83 /* MT-protected (with LIVE_LOCK) */
87 gboolean live_running;
89 /* MT-protected (with LOCK) */
90 guint blocksize; /* size of buffers when operating push based */
91 gboolean can_activate_push; /* some scheduling properties */
92 gboolean random_access;
94 GstClockID clock_id; /* for syncing */
96 /* MT-protected (with STREAM_LOCK *and* OBJECT_LOCK) */
98 /* MT-protected (with STREAM_LOCK) */
99 gboolean need_newsegment;
102 gint num_buffers_left;
104 #ifndef GST_REMOVE_DEPRECATED
105 gboolean typefind; /* unused */
109 GstEvent *pending_seek;
111 GstBaseSrcPrivate *priv;
114 gpointer _gst_reserved[GST_PADDING_LARGE];
119 * @parent_class: Element parent class
120 * @get_caps: Called to get the caps to report
121 * @negotiate: Negotiated the caps with the peer.
122 * @fixate: Called during negotiation if caps need fixating. Implement instead of
123 * setting a fixate function on the source pad.
124 * @set_caps: Notify subclass of changed output caps
125 * @decide_allocation: configure the allocation query
126 * @start: Start processing. Subclasses should open resources and prepare
127 * to produce data. Implementation should call gst_base_src_start_complete()
128 * when the operation completes, either from the current thread or any other
129 * thread that finishes the start operation asynchronously.
130 * @stop: Stop processing. Subclasses should use this to close resources.
131 * @get_times: Given a buffer, return the start and stop time when it
132 * should be pushed out. The base class will sync on the clock using
134 * @get_size: Return the total size of the resource, in the format set by
135 * gst_base_src_set_format().
136 * @is_seekable: Check if the source can seek
137 * @prepare_seek_segment: Prepare the #GstSegment that will be passed to the
138 * #GstBaseSrcClass.do_seek() vmethod for executing a seek
139 * request. Sub-classes should override this if they support seeking in
140 * formats other than the configured native format. By default, it tries to
141 * convert the seek arguments to the configured native format and prepare a
142 * segment in that format.
143 * @do_seek: Perform seeking on the resource to the indicated segment.
144 * @unlock: Unlock any pending access to the resource. Subclasses should unblock
145 * any blocked function ASAP. In particular, any create() function in
146 * progress should be unblocked and should return GST_FLOW_FLUSHING. Any
147 * future #GstBaseSrcClass.create() function call should also return
148 * GST_FLOW_FLUSHING until the #GstBaseSrcClass.unlock_stop() function has
150 * @unlock_stop: Clear the previous unlock request. Subclasses should clear any
151 * state they set during #GstBaseSrcClass.unlock(), such as clearing command
153 * @query: Handle a requested query.
154 * @event: Override this to implement custom event handling.
155 * @create: Ask the subclass to create a buffer with offset and size. When the
156 * subclass returns GST_FLOW_OK, it MUST return a buffer of the requested size
157 * unless fewer bytes are available because an EOS condition is near. No
158 * buffer should be returned when the return value is different from
159 * GST_FLOW_OK. A return value of GST_FLOW_EOS signifies that the end of
160 * stream is reached. The default implementation will call
161 * #GstBaseSrcClass.alloc() and then call #GstBaseSrcClass.fill().
162 * @alloc: Ask the subclass to allocate a buffer with for offset and size. The
163 * default implementation will create a new buffer from the negotiated allocator.
164 * @fill: Ask the subclass to fill the buffer with data for offset and size. The
165 * passed buffer is guaranteed to hold the requested amount of bytes.
167 * Subclasses can override any of the available virtual methods or not, as
168 * needed. At the minimum, the @create method should be overridden to produce
171 struct _GstBaseSrcClass {
172 GstElementClass parent_class;
175 /* virtual methods for subclasses */
177 /* get caps from subclass */
178 GstCaps* (*get_caps) (GstBaseSrc *src, GstCaps *filter);
180 gboolean (*negotiate) (GstBaseSrc *src);
181 /* called if, in negotiation, caps need fixating */
182 GstCaps * (*fixate) (GstBaseSrc *src, GstCaps *caps);
183 /* notify the subclass of new caps */
184 gboolean (*set_caps) (GstBaseSrc *src, GstCaps *caps);
186 /* setup allocation query */
187 gboolean (*decide_allocation) (GstBaseSrc *src, GstQuery *query);
189 /* start and stop processing, ideal for opening/closing the resource */
190 gboolean (*start) (GstBaseSrc *src);
191 gboolean (*stop) (GstBaseSrc *src);
194 * GstBaseSrcClass::get_times:
198 * Given @buffer, return @start and @end time when it should be pushed
199 * out. The base class will sync on the clock using these times.
201 void (*get_times) (GstBaseSrc *src, GstBuffer *buffer,
202 GstClockTime *start, GstClockTime *end);
204 /* get the total size of the resource in the format set by
205 * gst_base_src_set_format() */
206 gboolean (*get_size) (GstBaseSrc *src, guint64 *size);
208 /* check if the resource is seekable */
209 gboolean (*is_seekable) (GstBaseSrc *src);
211 /* Prepare the segment on which to perform do_seek(), converting to the
212 * current basesrc format. */
213 gboolean (*prepare_seek_segment) (GstBaseSrc *src, GstEvent *seek,
214 GstSegment *segment);
215 /* notify subclasses of a seek */
216 gboolean (*do_seek) (GstBaseSrc *src, GstSegment *segment);
218 /* unlock any pending access to the resource. subclasses should unlock
219 * any function ASAP. */
220 gboolean (*unlock) (GstBaseSrc *src);
221 /* Clear any pending unlock request, as we succeeded in unlocking */
222 gboolean (*unlock_stop) (GstBaseSrc *src);
224 /* notify subclasses of a query */
225 gboolean (*query) (GstBaseSrc *src, GstQuery *query);
227 /* notify subclasses of an event */
228 gboolean (*event) (GstBaseSrc *src, GstEvent *event);
231 * GstBaseSrcClass::create:
234 * Ask the subclass to create a buffer with @offset and @size, the default
235 * implementation will call alloc and fill.
237 GstFlowReturn (*create) (GstBaseSrc *src, guint64 offset, guint size,
239 /* ask the subclass to allocate an output buffer. The default implementation
240 * will use the negotiated allocator. */
241 GstFlowReturn (*alloc) (GstBaseSrc *src, guint64 offset, guint size,
243 /* ask the subclass to fill the buffer with data from offset and size */
244 GstFlowReturn (*fill) (GstBaseSrc *src, guint64 offset, guint size,
248 gpointer _gst_reserved[GST_PADDING_LARGE];
252 GType gst_base_src_get_type (void);
255 GstFlowReturn gst_base_src_wait_playing (GstBaseSrc *src);
258 void gst_base_src_set_live (GstBaseSrc *src, gboolean live);
261 gboolean gst_base_src_is_live (GstBaseSrc *src);
264 void gst_base_src_set_format (GstBaseSrc *src, GstFormat format);
267 void gst_base_src_set_dynamic_size (GstBaseSrc * src, gboolean dynamic);
270 void gst_base_src_set_automatic_eos (GstBaseSrc * src, gboolean automatic_eos);
273 void gst_base_src_set_async (GstBaseSrc *src, gboolean async);
276 gboolean gst_base_src_is_async (GstBaseSrc *src);
279 void gst_base_src_start_complete (GstBaseSrc * basesrc, GstFlowReturn ret);
282 GstFlowReturn gst_base_src_start_wait (GstBaseSrc * basesrc);
285 gboolean gst_base_src_query_latency (GstBaseSrc *src, gboolean * live,
286 GstClockTime * min_latency,
287 GstClockTime * max_latency);
289 void gst_base_src_set_blocksize (GstBaseSrc *src, guint blocksize);
292 guint gst_base_src_get_blocksize (GstBaseSrc *src);
295 void gst_base_src_set_do_timestamp (GstBaseSrc *src, gboolean timestamp);
298 gboolean gst_base_src_get_do_timestamp (GstBaseSrc *src);
301 gboolean gst_base_src_new_seamless_segment (GstBaseSrc *src, gint64 start, gint64 stop, gint64 time);
304 gboolean gst_base_src_set_caps (GstBaseSrc *src, GstCaps *caps);
307 GstBufferPool * gst_base_src_get_buffer_pool (GstBaseSrc *src);
310 void gst_base_src_get_allocator (GstBaseSrc *src,
311 GstAllocator **allocator,
312 GstAllocationParams *params);
315 void gst_base_src_submit_buffer_list (GstBaseSrc * src,
316 GstBufferList * buffer_list);
318 #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
319 G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstBaseSrc, gst_object_unref)
324 #endif /* __GST_BASE_SRC_H__ */