1/* GStreamer
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>
5 *
6 * gstbasesrc.h:
7 *
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.
12 *
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.
17 *
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.
22 */
23
24#ifndef __GST_BASE_SRC_H__
25#define __GST_BASE_SRC_H__
26
27#include <gst/gst.h>
28#include <gst/base/base-prelude.h>
29
30G_BEGIN_DECLS
31
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))
39
40/**
41 * GstBaseSrcFlags:
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
45 *
46 * The #GstElement flags that a basesrc element may have.
47 */
48typedef enum {
49 GST_BASE_SRC_FLAG_STARTING = (GST_ELEMENT_FLAG_LAST << 0),
50 GST_BASE_SRC_FLAG_STARTED = (GST_ELEMENT_FLAG_LAST << 1),
51 /* padding */
52 GST_BASE_SRC_FLAG_LAST = (GST_ELEMENT_FLAG_LAST << 6)
53} GstBaseSrcFlags;
54
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)
57
58typedef struct _GstBaseSrc GstBaseSrc;
59typedef struct _GstBaseSrcClass GstBaseSrcClass;
60typedef struct _GstBaseSrcPrivate GstBaseSrcPrivate;
61
62/**
63 * GST_BASE_SRC_PAD:
64 * @obj: base source instance
65 *
66 * Gives the pointer to the #GstPad object of the element.
67 */
68#define GST_BASE_SRC_PAD(obj) (GST_BASE_SRC_CAST (obj)->srcpad)
69
70
71/**
72 * GstBaseSrc:
73 *
74 * The opaque #GstBaseSrc data structure.
75 */
76struct _GstBaseSrc {
77 GstElement element;
78
79 /*< protected >*/
80 GstPad *srcpad;
81
82 /* available to subclass implementations */
83 /* MT-protected (with LIVE_LOCK) */
84 GMutex live_lock;
85 GCond live_cond;
86 gboolean is_live;
87 gboolean live_running;
88
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;
93
94 GstClockID clock_id; /* for syncing */
95
96 /* MT-protected (with STREAM_LOCK *and* OBJECT_LOCK) */
97 GstSegment segment;
98 /* MT-protected (with STREAM_LOCK) */
99 gboolean need_newsegment;
100
101 gint num_buffers;
102 gint num_buffers_left;
103
104#ifndef GST_REMOVE_DEPRECATED
105 gboolean typefind; /* unused */
106#endif
107
108 gboolean running;
109 GstEvent *pending_seek;
110
111 GstBaseSrcPrivate *priv;
112
113 /*< private >*/
114 gpointer _gst_reserved[GST_PADDING_LARGE];
115};
116
117/**
118 * GstBaseSrcClass:
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
133 * these times.
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
149 * been called.
150 * @unlock_stop: Clear the previous unlock request. Subclasses should clear any
151 * state they set during #GstBaseSrcClass.unlock(), such as clearing command
152 * queues.
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.
166 *
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
169 * buffers.
170 */
171struct _GstBaseSrcClass {
172 GstElementClass parent_class;
173
174 /*< public >*/
175 /* virtual methods for subclasses */
176
177 /* get caps from subclass */
178 GstCaps* (*get_caps) (GstBaseSrc *src, GstCaps *filter);
179 /* decide on caps */
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);
185
186 /* setup allocation query */
187 gboolean (*decide_allocation) (GstBaseSrc *src, GstQuery *query);
188
189 /* start and stop processing, ideal for opening/closing the resource */
190 gboolean (*start) (GstBaseSrc *src);
191 gboolean (*stop) (GstBaseSrc *src);
192
193 /**
194 * GstBaseSrcClass::get_times:
195 * @start: (out):
196 * @end: (out):
197 *
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.
200 */
201 void (*get_times) (GstBaseSrc *src, GstBuffer *buffer,
202 GstClockTime *start, GstClockTime *end);
203
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);
207
208 /* check if the resource is seekable */
209 gboolean (*is_seekable) (GstBaseSrc *src);
210
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);
217
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);
223
224 /* notify subclasses of a query */
225 gboolean (*query) (GstBaseSrc *src, GstQuery *query);
226
227 /* notify subclasses of an event */
228 gboolean (*event) (GstBaseSrc *src, GstEvent *event);
229
230 /**
231 * GstBaseSrcClass::create:
232 * @buf: (out):
233 *
234 * Ask the subclass to create a buffer with @offset and @size, the default
235 * implementation will call alloc and fill.
236 */
237 GstFlowReturn (*create) (GstBaseSrc *src, guint64 offset, guint size,
238 GstBuffer **buf);
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,
242 GstBuffer **buf);
243 /* ask the subclass to fill the buffer with data from offset and size */
244 GstFlowReturn (*fill) (GstBaseSrc *src, guint64 offset, guint size,
245 GstBuffer *buf);
246
247 /*< private >*/
248 gpointer _gst_reserved[GST_PADDING_LARGE];
249};
250
251GST_BASE_API
252GType gst_base_src_get_type (void);
253
254GST_BASE_API
255GstFlowReturn gst_base_src_wait_playing (GstBaseSrc *src);
256
257GST_BASE_API
258void gst_base_src_set_live (GstBaseSrc *src, gboolean live);
259
260GST_BASE_API
261gboolean gst_base_src_is_live (GstBaseSrc *src);
262
263GST_BASE_API
264void gst_base_src_set_format (GstBaseSrc *src, GstFormat format);
265
266GST_BASE_API
267void gst_base_src_set_dynamic_size (GstBaseSrc * src, gboolean dynamic);
268
269GST_BASE_API
270void gst_base_src_set_automatic_eos (GstBaseSrc * src, gboolean automatic_eos);
271
272GST_BASE_API
273void gst_base_src_set_async (GstBaseSrc *src, gboolean async);
274
275GST_BASE_API
276gboolean gst_base_src_is_async (GstBaseSrc *src);
277
278GST_BASE_API
279void gst_base_src_start_complete (GstBaseSrc * basesrc, GstFlowReturn ret);
280
281GST_BASE_API
282GstFlowReturn gst_base_src_start_wait (GstBaseSrc * basesrc);
283
284GST_BASE_API
285gboolean gst_base_src_query_latency (GstBaseSrc *src, gboolean * live,
286 GstClockTime * min_latency,
287 GstClockTime * max_latency);
288GST_BASE_API
289void gst_base_src_set_blocksize (GstBaseSrc *src, guint blocksize);
290
291GST_BASE_API
292guint gst_base_src_get_blocksize (GstBaseSrc *src);
293
294GST_BASE_API
295void gst_base_src_set_do_timestamp (GstBaseSrc *src, gboolean timestamp);
296
297GST_BASE_API
298gboolean gst_base_src_get_do_timestamp (GstBaseSrc *src);
299
300GST_BASE_API
301gboolean gst_base_src_new_seamless_segment (GstBaseSrc *src, gint64 start, gint64 stop, gint64 time);
302
303GST_BASE_API
304gboolean gst_base_src_set_caps (GstBaseSrc *src, GstCaps *caps);
305
306GST_BASE_API
307GstBufferPool * gst_base_src_get_buffer_pool (GstBaseSrc *src);
308
309GST_BASE_API
310void gst_base_src_get_allocator (GstBaseSrc *src,
311 GstAllocator **allocator,
312 GstAllocationParams *params);
313
314GST_BASE_API
315void gst_base_src_submit_buffer_list (GstBaseSrc * src,
316 GstBufferList * buffer_list);
317
318#ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
319G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstBaseSrc, gst_object_unref)
320#endif
321
322G_END_DECLS
323
324#endif /* __GST_BASE_SRC_H__ */
325