Release 1.12.2
[platform/upstream/gstreamer.git] / libs / gst / base / gstbasesrc.h
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
29 G_BEGIN_DECLS
30
31 #define GST_TYPE_BASE_SRC               (gst_base_src_get_type())
32 #define GST_BASE_SRC(obj)               (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_BASE_SRC,GstBaseSrc))
33 #define GST_BASE_SRC_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_BASE_SRC,GstBaseSrcClass))
34 #define GST_BASE_SRC_GET_CLASS(obj)     (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_BASE_SRC, GstBaseSrcClass))
35 #define GST_IS_BASE_SRC(obj)            (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_BASE_SRC))
36 #define GST_IS_BASE_SRC_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_BASE_SRC))
37 #define GST_BASE_SRC_CAST(obj)          ((GstBaseSrc *)(obj))
38
39 /**
40  * GstBaseSrcFlags:
41  * @GST_BASE_SRC_FLAG_STARTING: has source is starting
42  * @GST_BASE_SRC_FLAG_STARTED: has source been started
43  * @GST_BASE_SRC_FLAG_LAST: offset to define more flags
44  *
45  * The #GstElement flags that a basesrc element may have.
46  */
47 typedef enum {
48   GST_BASE_SRC_FLAG_STARTING     = (GST_ELEMENT_FLAG_LAST << 0),
49   GST_BASE_SRC_FLAG_STARTED      = (GST_ELEMENT_FLAG_LAST << 1),
50   /* padding */
51   GST_BASE_SRC_FLAG_LAST         = (GST_ELEMENT_FLAG_LAST << 6)
52 } GstBaseSrcFlags;
53
54 #define GST_BASE_SRC_IS_STARTING(obj) GST_OBJECT_FLAG_IS_SET ((obj), GST_BASE_SRC_FLAG_STARTING)
55 #define GST_BASE_SRC_IS_STARTED(obj)  GST_OBJECT_FLAG_IS_SET ((obj), GST_BASE_SRC_FLAG_STARTED)
56
57 typedef struct _GstBaseSrc GstBaseSrc;
58 typedef struct _GstBaseSrcClass GstBaseSrcClass;
59 typedef struct _GstBaseSrcPrivate GstBaseSrcPrivate;
60
61 /**
62  * GST_BASE_SRC_PAD:
63  * @obj: base source instance
64  *
65  * Gives the pointer to the #GstPad object of the element.
66  */
67 #define GST_BASE_SRC_PAD(obj)                 (GST_BASE_SRC_CAST (obj)->srcpad)
68
69
70 /**
71  * GstBaseSrc:
72  *
73  * The opaque #GstBaseSrc data structure.
74  */
75 struct _GstBaseSrc {
76   GstElement     element;
77
78   /*< protected >*/
79   GstPad        *srcpad;
80
81   /* available to subclass implementations */
82   /* MT-protected (with LIVE_LOCK) */
83   GMutex         live_lock;
84   GCond          live_cond;
85   gboolean       is_live;
86   gboolean       live_running;
87
88   /* MT-protected (with LOCK) */
89   guint          blocksize;     /* size of buffers when operating push based */
90   gboolean       can_activate_push;     /* some scheduling properties */
91   gboolean       random_access;
92
93   GstClockID     clock_id;      /* for syncing */
94
95   /* MT-protected (with STREAM_LOCK *and* OBJECT_LOCK) */
96   GstSegment     segment;
97   /* MT-protected (with STREAM_LOCK) */
98   gboolean       need_newsegment;
99
100   gint           num_buffers;
101   gint           num_buffers_left;
102
103   gboolean       typefind;
104   gboolean       running;
105   GstEvent      *pending_seek;
106
107   GstBaseSrcPrivate *priv;
108
109   /*< private >*/
110   gpointer       _gst_reserved[GST_PADDING_LARGE];
111 };
112
113 /**
114  * GstBaseSrcClass:
115  * @parent_class: Element parent class
116  * @get_caps: Called to get the caps to report
117  * @negotiate: Negotiated the caps with the peer.
118  * @fixate: Called during negotiation if caps need fixating. Implement instead of
119  *   setting a fixate function on the source pad.
120  * @set_caps: Notify subclass of changed output caps
121  * @decide_allocation: configure the allocation query
122  * @start: Start processing. Subclasses should open resources and prepare
123  *    to produce data. Implementation should call gst_base_src_start_complete()
124  *    when the operation completes, either from the current thread or any other
125  *    thread that finishes the start operation asynchronously.
126  * @stop: Stop processing. Subclasses should use this to close resources.
127  * @get_times: Given a buffer, return the start and stop time when it
128  *    should be pushed out. The base class will sync on the clock using
129  *    these times.
130  * @get_size: Return the total size of the resource, in the format set by
131  *     gst_base_src_set_format().
132  * @is_seekable: Check if the source can seek
133  * @prepare_seek_segment: Prepare the #GstSegment that will be passed to the
134  *   #GstBaseSrcClass.do_seek() vmethod for executing a seek
135  *   request. Sub-classes should override this if they support seeking in
136  *   formats other than the configured native format. By default, it tries to
137  *   convert the seek arguments to the configured native format and prepare a
138  *   segment in that format.
139  * @do_seek: Perform seeking on the resource to the indicated segment.
140  * @unlock: Unlock any pending access to the resource. Subclasses should unblock
141  *    any blocked function ASAP. In particular, any create() function in
142  *    progress should be unblocked and should return GST_FLOW_FLUSHING. Any
143  *    future #GstBaseSrcClass.create() function call should also return
144  *    GST_FLOW_FLUSHING until the #GstBaseSrcClass.unlock_stop() function has
145  *    been called.
146  * @unlock_stop: Clear the previous unlock request. Subclasses should clear any
147  *    state they set during #GstBaseSrcClass.unlock(), such as clearing command
148  *    queues.
149  * @query: Handle a requested query.
150  * @event: Override this to implement custom event handling.
151  * @create: Ask the subclass to create a buffer with offset and size.  When the
152  *   subclass returns GST_FLOW_OK, it MUST return a buffer of the requested size
153  *   unless fewer bytes are available because an EOS condition is near. No
154  *   buffer should be returned when the return value is different from
155  *   GST_FLOW_OK. A return value of GST_FLOW_EOS signifies that the end of
156  *   stream is reached. The default implementation will call
157  *   #GstBaseSrcClass.alloc() and then call #GstBaseSrcClass.fill().
158  * @alloc: Ask the subclass to allocate a buffer with for offset and size. The
159  *   default implementation will create a new buffer from the negotiated allocator.
160  * @fill: Ask the subclass to fill the buffer with data for offset and size. The
161  *   passed buffer is guaranteed to hold the requested amount of bytes.
162  *
163  * Subclasses can override any of the available virtual methods or not, as
164  * needed. At the minimum, the @create method should be overridden to produce
165  * buffers.
166  */
167 struct _GstBaseSrcClass {
168   GstElementClass parent_class;
169
170   /*< public >*/
171   /* virtual methods for subclasses */
172
173   /* get caps from subclass */
174   GstCaps*      (*get_caps)     (GstBaseSrc *src, GstCaps *filter);
175   /* decide on caps */
176   gboolean      (*negotiate)    (GstBaseSrc *src);
177   /* called if, in negotiation, caps need fixating */
178   GstCaps *     (*fixate)       (GstBaseSrc *src, GstCaps *caps);
179   /* notify the subclass of new caps */
180   gboolean      (*set_caps)     (GstBaseSrc *src, GstCaps *caps);
181
182   /* setup allocation query */
183   gboolean      (*decide_allocation)   (GstBaseSrc *src, GstQuery *query);
184
185   /* start and stop processing, ideal for opening/closing the resource */
186   gboolean      (*start)        (GstBaseSrc *src);
187   gboolean      (*stop)         (GstBaseSrc *src);
188
189   /* given a buffer, return start and stop time when it should be pushed
190    * out. The base class will sync on the clock using these times. */
191   void          (*get_times)    (GstBaseSrc *src, GstBuffer *buffer,
192                                  GstClockTime *start, GstClockTime *end);
193
194   /* get the total size of the resource in the format set by
195    * gst_base_src_set_format() */
196   gboolean      (*get_size)     (GstBaseSrc *src, guint64 *size);
197
198   /* check if the resource is seekable */
199   gboolean      (*is_seekable)  (GstBaseSrc *src);
200
201   /* Prepare the segment on which to perform do_seek(), converting to the
202    * current basesrc format. */
203   gboolean      (*prepare_seek_segment) (GstBaseSrc *src, GstEvent *seek,
204                                          GstSegment *segment);
205   /* notify subclasses of a seek */
206   gboolean      (*do_seek)      (GstBaseSrc *src, GstSegment *segment);
207
208   /* unlock any pending access to the resource. subclasses should unlock
209    * any function ASAP. */
210   gboolean      (*unlock)       (GstBaseSrc *src);
211   /* Clear any pending unlock request, as we succeeded in unlocking */
212   gboolean      (*unlock_stop)  (GstBaseSrc *src);
213
214   /* notify subclasses of a query */
215   gboolean      (*query)        (GstBaseSrc *src, GstQuery *query);
216
217   /* notify subclasses of an event */
218   gboolean      (*event)        (GstBaseSrc *src, GstEvent *event);
219
220   /* ask the subclass to create a buffer with offset and size, the default
221    * implementation will call alloc and fill. */
222   GstFlowReturn (*create)       (GstBaseSrc *src, guint64 offset, guint size,
223                                  GstBuffer **buf);
224   /* ask the subclass to allocate an output buffer. The default implementation
225    * will use the negotiated allocator. */
226   GstFlowReturn (*alloc)        (GstBaseSrc *src, guint64 offset, guint size,
227                                  GstBuffer **buf);
228   /* ask the subclass to fill the buffer with data from offset and size */
229   GstFlowReturn (*fill)         (GstBaseSrc *src, guint64 offset, guint size,
230                                  GstBuffer *buf);
231
232   /*< private >*/
233   gpointer       _gst_reserved[GST_PADDING_LARGE];
234 };
235
236 GType gst_base_src_get_type (void);
237
238 GstFlowReturn   gst_base_src_wait_playing     (GstBaseSrc *src);
239
240 void            gst_base_src_set_live         (GstBaseSrc *src, gboolean live);
241 gboolean        gst_base_src_is_live          (GstBaseSrc *src);
242
243 void            gst_base_src_set_format       (GstBaseSrc *src, GstFormat format);
244
245 void            gst_base_src_set_dynamic_size (GstBaseSrc * src, gboolean dynamic);
246
247 void            gst_base_src_set_automatic_eos (GstBaseSrc * src, gboolean automatic_eos);
248
249 void            gst_base_src_set_async        (GstBaseSrc *src, gboolean async);
250 gboolean        gst_base_src_is_async         (GstBaseSrc *src);
251
252 void            gst_base_src_start_complete   (GstBaseSrc * basesrc, GstFlowReturn ret);
253 GstFlowReturn   gst_base_src_start_wait       (GstBaseSrc * basesrc);
254
255 gboolean        gst_base_src_query_latency    (GstBaseSrc *src, gboolean * live,
256                                                GstClockTime * min_latency,
257                                                GstClockTime * max_latency);
258
259 void            gst_base_src_set_blocksize    (GstBaseSrc *src, guint blocksize);
260 guint           gst_base_src_get_blocksize    (GstBaseSrc *src);
261
262 void            gst_base_src_set_do_timestamp (GstBaseSrc *src, gboolean timestamp);
263 gboolean        gst_base_src_get_do_timestamp (GstBaseSrc *src);
264
265 gboolean        gst_base_src_new_seamless_segment (GstBaseSrc *src, gint64 start, gint64 stop, gint64 time);
266
267 gboolean        gst_base_src_set_caps         (GstBaseSrc *src, GstCaps *caps);
268
269 GstBufferPool * gst_base_src_get_buffer_pool  (GstBaseSrc *src);
270 void            gst_base_src_get_allocator    (GstBaseSrc *src,
271                                                GstAllocator **allocator,
272                                                GstAllocationParams *params);
273
274
275 #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
276 G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstBaseSrc, gst_object_unref)
277 #endif
278
279 G_END_DECLS
280
281 #endif /* __GST_BASE_SRC_H__ */