gstbasesrc.h 12 KB

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