gstcollectpads.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  1. /* GStreamer
  2. * Copyright (C) 2005 Wim Taymans <wim@fluendo.com>
  3. * Copyright (C) 2008 Mark Nauwelaerts <mnauw@users.sourceforge.net>
  4. *
  5. * gstcollectpads.h:
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Library General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Library General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Library General Public
  18. * License along with this library; if not, write to the
  19. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  20. * Boston, MA 02110-1301, USA.
  21. */
  22. #ifndef __GST_COLLECT_PADS_H__
  23. #define __GST_COLLECT_PADS_H__
  24. #include <gst/gst.h>
  25. G_BEGIN_DECLS
  26. #define GST_TYPE_COLLECT_PADS (gst_collect_pads_get_type())
  27. #define GST_COLLECT_PADS(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_COLLECT_PADS,GstCollectPads))
  28. #define GST_COLLECT_PADS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_COLLECT_PADS,GstCollectPadsClass))
  29. #define GST_COLLECT_PADS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj),GST_TYPE_COLLECT_PADS,GstCollectPadsClass))
  30. #define GST_IS_COLLECT_PADS(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_COLLECT_PADS))
  31. #define GST_IS_COLLECT_PADS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_COLLECT_PADS))
  32. typedef struct _GstCollectData GstCollectData;
  33. typedef struct _GstCollectDataPrivate GstCollectDataPrivate;
  34. typedef struct _GstCollectPads GstCollectPads;
  35. typedef struct _GstCollectPadsPrivate GstCollectPadsPrivate;
  36. typedef struct _GstCollectPadsClass GstCollectPadsClass;
  37. /**
  38. * GstCollectDataDestroyNotify:
  39. * @data: the #GstCollectData that will be freed
  40. *
  41. * A function that will be called when the #GstCollectData will be freed.
  42. * It is passed the pointer to the structure and should free any custom
  43. * memory and resources allocated for it.
  44. */
  45. typedef void (*GstCollectDataDestroyNotify) (GstCollectData *data);
  46. /**
  47. * GstCollectPadsStateFlags:
  48. * @GST_COLLECT_PADS_STATE_EOS: Set if collectdata's pad is EOS.
  49. * @GST_COLLECT_PADS_STATE_FLUSHING: Set if collectdata's pad is flushing.
  50. * @GST_COLLECT_PADS_STATE_NEW_SEGMENT: Set if collectdata's pad received a
  51. * new_segment event.
  52. * @GST_COLLECT_PADS_STATE_WAITING: Set if collectdata's pad must be waited
  53. * for when collecting.
  54. * @GST_COLLECT_PADS_STATE_LOCKED: Set collectdata's pad WAITING state must
  55. * not be changed.
  56. * #GstCollectPadsStateFlags indicate private state of a collectdata('s pad).
  57. */
  58. typedef enum {
  59. GST_COLLECT_PADS_STATE_EOS = 1 << 0,
  60. GST_COLLECT_PADS_STATE_FLUSHING = 1 << 1,
  61. GST_COLLECT_PADS_STATE_NEW_SEGMENT = 1 << 2,
  62. GST_COLLECT_PADS_STATE_WAITING = 1 << 3,
  63. GST_COLLECT_PADS_STATE_LOCKED = 1 << 4
  64. } GstCollectPadsStateFlags;
  65. /**
  66. * GST_COLLECT_PADS_STATE:
  67. * @data: a #GstCollectData.
  68. *
  69. * A flags word containing #GstCollectPadsStateFlags flags set
  70. * on this collected pad.
  71. */
  72. #define GST_COLLECT_PADS_STATE(data) (((GstCollectData *) data)->state)
  73. /**
  74. * GST_COLLECT_PADS_STATE_IS_SET:
  75. * @data: a #GstCollectData.
  76. * @flag: the #GstCollectPadsStateFlags to check.
  77. *
  78. * Gives the status of a specific flag on a collected pad.
  79. */
  80. #define GST_COLLECT_PADS_STATE_IS_SET(data,flag) !!(GST_COLLECT_PADS_STATE (data) & flag)
  81. /**
  82. * GST_COLLECT_PADS_STATE_SET:
  83. * @data: a #GstCollectData.
  84. * @flag: the #GstCollectPadsStateFlags to set.
  85. *
  86. * Sets a state flag on a collected pad.
  87. */
  88. #define GST_COLLECT_PADS_STATE_SET(data,flag) (GST_COLLECT_PADS_STATE (data) |= flag)
  89. /**
  90. * GST_COLLECT_PADS_STATE_UNSET:
  91. * @data: a #GstCollectData.
  92. * @flag: the #GstCollectPadsStateFlags to clear.
  93. *
  94. * Clears a state flag on a collected pad.
  95. */
  96. #define GST_COLLECT_PADS_STATE_UNSET(data,flag) (GST_COLLECT_PADS_STATE (data) &= ~(flag))
  97. /**
  98. * GST_COLLECT_PADS_DTS:
  99. * @data: A #GstCollectData.
  100. *
  101. * Returns the DTS that has been converted to running time when using
  102. * gst_collect_pads_clip_running_time(). Unlike the value saved into
  103. * the buffer, this value is of type gint64 and may be negative. This allow
  104. * properly handling streams with frame reordering where the first DTS may
  105. * be negative. If the initial DTS was not set, this value will be
  106. * set to %G_MININT64.
  107. *
  108. * Since: 1.6
  109. */
  110. #define GST_COLLECT_PADS_DTS(data) (((GstCollectData *) data)->ABI.abi.dts)
  111. /**
  112. * GST_COLLECT_PADS_DTS_IS_VALID:
  113. * @data: A #GstCollectData.
  114. *
  115. * Check if running DTS value store is valid.
  116. *
  117. * Since: 1.6
  118. */
  119. #define GST_COLLECT_PADS_DTS_IS_VALID(data) (GST_CLOCK_STIME_IS_VALID (GST_COLLECT_PADS_DTS (data)))
  120. /**
  121. * GstCollectData:
  122. * @collect: owner #GstCollectPads
  123. * @pad: #GstPad managed by this data
  124. * @buffer: currently queued buffer.
  125. * @pos: position in the buffer
  126. * @segment: last segment received.
  127. * @dts: the signed version of the DTS converted to running time. To access
  128. * this memeber, use %GST_COLLECT_PADS_DTS macro. (Since 1.6)
  129. *
  130. * Structure used by the collect_pads.
  131. */
  132. struct _GstCollectData
  133. {
  134. /* with STREAM_LOCK of @collect */
  135. GstCollectPads *collect;
  136. GstPad *pad;
  137. GstBuffer *buffer;
  138. guint pos;
  139. GstSegment segment;
  140. /*< private >*/
  141. /* state: bitfield for easier extension;
  142. * eos, flushing, new_segment, waiting */
  143. GstCollectPadsStateFlags state;
  144. GstCollectDataPrivate *priv;
  145. union {
  146. struct {
  147. /*< public >*/
  148. gint64 dts;
  149. /*< private >*/
  150. } abi;
  151. gpointer _gst_reserved[GST_PADDING];
  152. } ABI;
  153. };
  154. /**
  155. * GstCollectPadsFunction:
  156. * @pads: the #GstCollectPads that triggered the callback
  157. * @user_data: user data passed to gst_collect_pads_set_function()
  158. *
  159. * A function that will be called when all pads have received data.
  160. *
  161. * Returns: %GST_FLOW_OK for success
  162. */
  163. typedef GstFlowReturn (*GstCollectPadsFunction) (GstCollectPads *pads, gpointer user_data);
  164. /**
  165. * GstCollectPadsBufferFunction:
  166. * @pads: the #GstCollectPads that triggered the callback
  167. * @data: the #GstCollectData of pad that has received the buffer
  168. * @buffer: (transfer full): the #GstBuffer
  169. * @user_data: user data passed to gst_collect_pads_set_buffer_function()
  170. *
  171. * A function that will be called when a (considered oldest) buffer can be muxed.
  172. * If all pads have reached EOS, this function is called with %NULL @buffer
  173. * and %NULL @data.
  174. *
  175. * Returns: %GST_FLOW_OK for success
  176. */
  177. typedef GstFlowReturn (*GstCollectPadsBufferFunction) (GstCollectPads *pads, GstCollectData *data,
  178. GstBuffer *buffer, gpointer user_data);
  179. /**
  180. * GstCollectPadsCompareFunction:
  181. * @pads: the #GstCollectPads that is comparing the timestamps
  182. * @data1: the first #GstCollectData
  183. * @timestamp1: the first timestamp
  184. * @data2: the second #GstCollectData
  185. * @timestamp2: the second timestamp
  186. * @user_data: user data passed to gst_collect_pads_set_compare_function()
  187. *
  188. * A function for comparing two timestamps of buffers or newsegments collected on one pad.
  189. *
  190. * Returns: Integer less than zero when first timestamp is deemed older than the second one.
  191. * Zero if the timestamps are deemed equally old.
  192. * Integer greater than zero when second timestamp is deemed older than the first one.
  193. */
  194. typedef gint (*GstCollectPadsCompareFunction) (GstCollectPads *pads,
  195. GstCollectData * data1, GstClockTime timestamp1,
  196. GstCollectData * data2, GstClockTime timestamp2,
  197. gpointer user_data);
  198. /**
  199. * GstCollectPadsEventFunction:
  200. * @pads: the #GstCollectPads that triggered the callback
  201. * @pad: the #GstPad that received an event
  202. * @event: the #GstEvent received
  203. * @user_data: user data passed to gst_collect_pads_set_event_function()
  204. *
  205. * A function that will be called while processing an event. It takes
  206. * ownership of the event and is responsible for chaining up (to
  207. * gst_collect_pads_event_default()) or dropping events (such typical cases
  208. * being handled by the default handler).
  209. *
  210. * Returns: %TRUE if the pad could handle the event
  211. */
  212. typedef gboolean (*GstCollectPadsEventFunction) (GstCollectPads *pads, GstCollectData * pad,
  213. GstEvent * event, gpointer user_data);
  214. /**
  215. * GstCollectPadsQueryFunction:
  216. * @pads: the #GstCollectPads that triggered the callback
  217. * @pad: the #GstPad that received an event
  218. * @query: the #GstEvent received
  219. * @user_data: user data passed to gst_collect_pads_set_query_function()
  220. *
  221. * A function that will be called while processing a query. It takes
  222. * ownership of the query and is responsible for chaining up (to
  223. * events downstream (with gst_pad_event_default()).
  224. *
  225. * Returns: %TRUE if the pad could handle the event
  226. */
  227. typedef gboolean (*GstCollectPadsQueryFunction) (GstCollectPads *pads, GstCollectData * pad,
  228. GstQuery * query, gpointer user_data);
  229. /**
  230. * GstCollectPadsClipFunction:
  231. * @pads: a #GstCollectPads
  232. * @data: a #GstCollectData
  233. * @inbuffer: (transfer full): the input #GstBuffer
  234. * @outbuffer: the output #GstBuffer
  235. * @user_data: user data
  236. *
  237. * A function that will be called when @inbuffer is received on the pad managed
  238. * by @data in the collectpad object @pads.
  239. *
  240. * The function should use the segment of @data and the negotiated media type on
  241. * the pad to perform clipping of @inbuffer.
  242. *
  243. * This function takes ownership of @inbuffer and should output a buffer in
  244. * @outbuffer or return %NULL in @outbuffer if the buffer should be dropped.
  245. *
  246. * Returns: a #GstFlowReturn that corresponds to the result of clipping.
  247. */
  248. typedef GstFlowReturn (*GstCollectPadsClipFunction) (GstCollectPads *pads, GstCollectData *data,
  249. GstBuffer *inbuffer, GstBuffer **outbuffer,
  250. gpointer user_data);
  251. /**
  252. * GstCollectPadsFlushFunction:
  253. * @pads: a #GstCollectPads
  254. * @user_data: user data
  255. *
  256. * A function that will be called while processing a flushing seek event.
  257. *
  258. * The function should flush any internal state of the element and the state of
  259. * all the pads. It should clear only the state not directly managed by the
  260. * @pads object. It is therefore not necessary to call
  261. * gst_collect_pads_set_flushing nor gst_collect_pads_clear from this function.
  262. *
  263. * Since: 1.4
  264. */
  265. typedef void (*GstCollectPadsFlushFunction) (GstCollectPads *pads, gpointer user_data);
  266. /**
  267. * GST_COLLECT_PADS_GET_STREAM_LOCK:
  268. * @pads: a #GstCollectPads
  269. *
  270. * Get the stream lock of @pads. The stream lock is used to coordinate and
  271. * serialize execution among the various streams being collected, and in
  272. * protecting the resources used to accomplish this.
  273. */
  274. #define GST_COLLECT_PADS_GET_STREAM_LOCK(pads) (&((GstCollectPads *)pads)->stream_lock)
  275. /**
  276. * GST_COLLECT_PADS_STREAM_LOCK:
  277. * @pads: a #GstCollectPads
  278. *
  279. * Lock the stream lock of @pads.
  280. */
  281. #define GST_COLLECT_PADS_STREAM_LOCK(pads) g_rec_mutex_lock(GST_COLLECT_PADS_GET_STREAM_LOCK (pads))
  282. /**
  283. * GST_COLLECT_PADS_STREAM_UNLOCK:
  284. * @pads: a #GstCollectPads
  285. *
  286. * Unlock the stream lock of @pads.
  287. */
  288. #define GST_COLLECT_PADS_STREAM_UNLOCK(pads) g_rec_mutex_unlock(GST_COLLECT_PADS_GET_STREAM_LOCK (pads))
  289. /**
  290. * GstCollectPads:
  291. * @data: (element-type GstBase.CollectData): #GList of #GstCollectData managed
  292. * by this #GstCollectPads.
  293. *
  294. * Collectpads object.
  295. */
  296. struct _GstCollectPads {
  297. GstObject object;
  298. /*< public >*/ /* with LOCK and/or STREAM_LOCK */
  299. GSList *data; /* list of CollectData items */
  300. /*< private >*/
  301. GRecMutex stream_lock; /* used to serialize collection among several streams */
  302. GstCollectPadsPrivate *priv;
  303. gpointer _gst_reserved[GST_PADDING];
  304. };
  305. struct _GstCollectPadsClass {
  306. GstObjectClass parent_class;
  307. /*< private >*/
  308. gpointer _gst_reserved[GST_PADDING];
  309. };
  310. GType gst_collect_pads_get_type(void);
  311. /* creating the object */
  312. GstCollectPads* gst_collect_pads_new (void);
  313. /* set the callbacks */
  314. void gst_collect_pads_set_function (GstCollectPads *pads,
  315. GstCollectPadsFunction func,
  316. gpointer user_data);
  317. void gst_collect_pads_set_buffer_function (GstCollectPads *pads,
  318. GstCollectPadsBufferFunction func,
  319. gpointer user_data);
  320. void gst_collect_pads_set_event_function (GstCollectPads *pads,
  321. GstCollectPadsEventFunction func,
  322. gpointer user_data);
  323. void gst_collect_pads_set_query_function (GstCollectPads *pads,
  324. GstCollectPadsQueryFunction func,
  325. gpointer user_data);
  326. void gst_collect_pads_set_compare_function (GstCollectPads *pads,
  327. GstCollectPadsCompareFunction func,
  328. gpointer user_data);
  329. void gst_collect_pads_set_clip_function (GstCollectPads *pads,
  330. GstCollectPadsClipFunction clipfunc,
  331. gpointer user_data);
  332. void gst_collect_pads_set_flush_function (GstCollectPads *pads,
  333. GstCollectPadsFlushFunction func,
  334. gpointer user_data);
  335. /* pad management */
  336. GstCollectData* gst_collect_pads_add_pad (GstCollectPads *pads, GstPad *pad, guint size,
  337. GstCollectDataDestroyNotify destroy_notify,
  338. gboolean lock);
  339. gboolean gst_collect_pads_remove_pad (GstCollectPads *pads, GstPad *pad);
  340. /* start/stop collection */
  341. void gst_collect_pads_start (GstCollectPads *pads);
  342. void gst_collect_pads_stop (GstCollectPads *pads);
  343. void gst_collect_pads_set_flushing (GstCollectPads *pads, gboolean flushing);
  344. /* get collected buffers */
  345. GstBuffer* gst_collect_pads_peek (GstCollectPads *pads, GstCollectData *data);
  346. GstBuffer* gst_collect_pads_pop (GstCollectPads *pads, GstCollectData *data);
  347. /* get collected bytes */
  348. guint gst_collect_pads_available (GstCollectPads *pads);
  349. guint gst_collect_pads_flush (GstCollectPads *pads, GstCollectData *data,
  350. guint size);
  351. GstBuffer* gst_collect_pads_read_buffer (GstCollectPads * pads, GstCollectData * data,
  352. guint size);
  353. GstBuffer* gst_collect_pads_take_buffer (GstCollectPads * pads, GstCollectData * data,
  354. guint size);
  355. /* setting and unsetting waiting mode */
  356. void gst_collect_pads_set_waiting (GstCollectPads *pads, GstCollectData *data,
  357. gboolean waiting);
  358. /* convenience helper */
  359. GstFlowReturn gst_collect_pads_clip_running_time (GstCollectPads * pads,
  360. GstCollectData * cdata,
  361. GstBuffer * buf, GstBuffer ** outbuf,
  362. gpointer user_data);
  363. /* default handlers */
  364. gboolean gst_collect_pads_event_default (GstCollectPads * pads, GstCollectData * data,
  365. GstEvent * event, gboolean discard);
  366. gboolean gst_collect_pads_src_event_default (GstCollectPads * pads, GstPad * pad,
  367. GstEvent * event);
  368. gboolean gst_collect_pads_query_default (GstCollectPads * pads, GstCollectData * data,
  369. GstQuery * query, gboolean discard);
  370. #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
  371. G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstCollectPads, gst_object_unref)
  372. #endif
  373. G_END_DECLS
  374. #endif /* __GST_COLLECT_PADS_H__ */