gstbaseparse.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. /* GStreamer
  2. * Copyright (C) 2008 Nokia Corporation. All rights reserved.
  3. *
  4. * Contact: Stefan Kost <stefan.kost@nokia.com>
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Library General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Library General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Library General Public
  17. * License along with this library; if not, write to the
  18. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  19. * Boston, MA 02110-1301, USA.
  20. */
  21. #ifndef __GST_BASE_PARSE_H__
  22. #define __GST_BASE_PARSE_H__
  23. #include <gst/gst.h>
  24. G_BEGIN_DECLS
  25. #define GST_TYPE_BASE_PARSE (gst_base_parse_get_type())
  26. #define GST_BASE_PARSE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_BASE_PARSE,GstBaseParse))
  27. #define GST_BASE_PARSE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_BASE_PARSE,GstBaseParseClass))
  28. #define GST_BASE_PARSE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj),GST_TYPE_BASE_PARSE,GstBaseParseClass))
  29. #define GST_IS_BASE_PARSE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_BASE_PARSE))
  30. #define GST_IS_BASE_PARSE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_BASE_PARSE))
  31. #define GST_BASE_PARSE_CAST(obj) ((GstBaseParse *)(obj))
  32. /**
  33. * GST_BASE_PARSE_SRC_PAD:
  34. * @obj: base parse instance
  35. *
  36. * Gives the pointer to the source #GstPad object of the element.
  37. */
  38. #define GST_BASE_PARSE_SRC_PAD(obj) (GST_BASE_PARSE_CAST (obj)->srcpad)
  39. /**
  40. * GST_BASE_PARSE_SINK_PAD:
  41. * @obj: base parse instance
  42. *
  43. * Gives the pointer to the sink #GstPad object of the element.
  44. */
  45. #define GST_BASE_PARSE_SINK_PAD(obj) (GST_BASE_PARSE_CAST (obj)->sinkpad)
  46. /**
  47. * GST_BASE_PARSE_FLOW_DROPPED:
  48. *
  49. * A #GstFlowReturn that can be returned from parse_frame to
  50. * indicate that no output buffer was generated, or from pre_push_frame to
  51. * to forego pushing buffer.
  52. */
  53. #define GST_BASE_PARSE_FLOW_DROPPED GST_FLOW_CUSTOM_SUCCESS
  54. /* not public API, use accessor macros below */
  55. #define GST_BASE_PARSE_FLAG_LOST_SYNC (1 << 0)
  56. #define GST_BASE_PARSE_FLAG_DRAINING (1 << 1)
  57. /**
  58. * GST_BASE_PARSE_LOST_SYNC:
  59. * @parse: base parse instance
  60. *
  61. * Obtains current sync status.
  62. */
  63. #define GST_BASE_PARSE_LOST_SYNC(parse) (!!(GST_BASE_PARSE_CAST(parse)->flags & GST_BASE_PARSE_FLAG_LOST_SYNC))
  64. /**
  65. * GST_BASE_PARSE_DRAINING:
  66. * @parse: base parse instance
  67. *
  68. * Obtains current drain status (ie. whether EOS has been received and
  69. * the parser is now processing the frames at the end of the stream)
  70. */
  71. #define GST_BASE_PARSE_DRAINING(parse) (!!(GST_BASE_PARSE_CAST(parse)->flags & GST_BASE_PARSE_FLAG_DRAINING))
  72. /**
  73. * GstBaseParseFrameFlags:
  74. * @GST_BASE_PARSE_FRAME_FLAG_NONE: no flag
  75. * @GST_BASE_PARSE_FRAME_FLAG_NEW_FRAME: set by baseclass if current frame
  76. * is passed for processing to the subclass for the first time
  77. * (and not set on subsequent calls with same data).
  78. * @GST_BASE_PARSE_FRAME_FLAG_NO_FRAME: set to indicate this buffer should not be
  79. * counted as frame, e.g. if this frame is dependent on a previous one.
  80. * As it is not counted as a frame, bitrate increases but frame to time
  81. * conversions are maintained.
  82. * @GST_BASE_PARSE_FRAME_FLAG_CLIP: @pre_push_frame can set this to indicate
  83. * that regular segment clipping can still be performed (as opposed to
  84. * any custom one having been done).
  85. * @GST_BASE_PARSE_FRAME_FLAG_DROP: indicates to @finish_frame that the
  86. * the frame should be dropped (and might be handled internally by subclass)
  87. * @GST_BASE_PARSE_FRAME_FLAG_QUEUE: indicates to @finish_frame that the
  88. * the frame should be queued for now and processed fully later
  89. * when the first non-queued frame is finished
  90. *
  91. * Flags to be used in a #GstBaseParseFrame.
  92. */
  93. typedef enum {
  94. GST_BASE_PARSE_FRAME_FLAG_NONE = 0,
  95. GST_BASE_PARSE_FRAME_FLAG_NEW_FRAME = (1 << 0),
  96. GST_BASE_PARSE_FRAME_FLAG_NO_FRAME = (1 << 1),
  97. GST_BASE_PARSE_FRAME_FLAG_CLIP = (1 << 2),
  98. GST_BASE_PARSE_FRAME_FLAG_DROP = (1 << 3),
  99. GST_BASE_PARSE_FRAME_FLAG_QUEUE = (1 << 4)
  100. } GstBaseParseFrameFlags;
  101. /**
  102. * GstBaseParseFrame:
  103. * @buffer: input data to be parsed for frames.
  104. * @out_buffer: output data.
  105. * @offset: media specific offset of input frame
  106. * Note that a converter may have a different one on the frame's buffer.
  107. * @overhead: subclass can set this to indicates the metadata overhead
  108. * for the given frame, which is then used to enable more accurate bitrate
  109. * computations. If this is -1, it is assumed that this frame should be
  110. * skipped in bitrate calculation.
  111. * @flags: a combination of input and output #GstBaseParseFrameFlags that
  112. * convey additional context to subclass or allow subclass to tune
  113. * subsequent #GstBaseParse actions.
  114. *
  115. * Frame (context) data passed to each frame parsing virtual methods. In
  116. * addition to providing the data to be checked for a valid frame or an already
  117. * identified frame, it conveys additional metadata or control information
  118. * from and to the subclass w.r.t. the particular frame in question (rather
  119. * than global parameters). Some of these may apply to each parsing stage, others
  120. * only to some a particular one. These parameters are effectively zeroed at start
  121. * of each frame's processing, i.e. parsing virtual method invocation sequence.
  122. */
  123. typedef struct {
  124. GstBuffer * buffer;
  125. GstBuffer * out_buffer;
  126. guint flags;
  127. guint64 offset;
  128. gint overhead;
  129. /*< private >*/
  130. gint size;
  131. guint _gst_reserved_i[2];
  132. gpointer _gst_reserved_p[2];
  133. guint _private_flags;
  134. } GstBaseParseFrame;
  135. typedef struct _GstBaseParse GstBaseParse;
  136. typedef struct _GstBaseParseClass GstBaseParseClass;
  137. typedef struct _GstBaseParsePrivate GstBaseParsePrivate;
  138. /**
  139. * GstBaseParse:
  140. * @element: the parent element.
  141. *
  142. * The opaque #GstBaseParse data structure.
  143. */
  144. struct _GstBaseParse {
  145. /*< public >*/
  146. GstElement element;
  147. /*< protected >*/
  148. /* source and sink pads */
  149. GstPad *sinkpad;
  150. GstPad *srcpad;
  151. guint flags;
  152. /* MT-protected (with STREAM_LOCK) */
  153. GstSegment segment;
  154. /*< private >*/
  155. gpointer _gst_reserved[GST_PADDING_LARGE];
  156. GstBaseParsePrivate *priv;
  157. };
  158. /**
  159. * GstBaseParseClass:
  160. * @parent_class: the parent class
  161. * @start: Optional.
  162. * Called when the element starts processing.
  163. * Allows opening external resources.
  164. * @stop: Optional.
  165. * Called when the element stops processing.
  166. * Allows closing external resources.
  167. * @set_sink_caps: Optional.
  168. * Allows the subclass to be notified of the actual caps set.
  169. * @get_sink_caps: Optional.
  170. * Allows the subclass to do its own sink get caps if needed.
  171. * @handle_frame: Parses the input data into valid frames as defined by subclass
  172. * which should be passed to gst_base_parse_finish_frame().
  173. * The frame's input buffer is guaranteed writable,
  174. * whereas the input frame ownership is held by caller
  175. * (so subclass should make a copy if it needs to hang on).
  176. * Input buffer (data) is provided by baseclass with as much
  177. * metadata set as possible by baseclass according to upstream
  178. * information and/or subclass settings,
  179. * though subclass may still set buffer timestamp and duration
  180. * if desired.
  181. * @convert: Optional.
  182. * Convert between formats.
  183. * @sink_event: Optional.
  184. * Event handler on the sink pad. This function should chain
  185. * up to the parent implementation to let the default handler
  186. * run.
  187. * @src_event: Optional.
  188. * Event handler on the source pad. Should chain up to the
  189. * parent to let the default handler run.
  190. * @pre_push_frame: Optional.
  191. * Called just prior to pushing a frame (after any pending
  192. * events have been sent) to give subclass a chance to perform
  193. * additional actions at this time (e.g. tag sending) or to
  194. * decide whether this buffer should be dropped or not
  195. * (e.g. custom segment clipping).
  196. * @detect: Optional.
  197. * Called until it doesn't return GST_FLOW_OK anymore for
  198. * the first buffers. Can be used by the subclass to detect
  199. * the stream format.
  200. * @sink_query: Optional.
  201. * Query handler on the sink pad. This function should chain
  202. * up to the parent implementation to let the default handler
  203. * run (Since 1.2)
  204. * @src_query: Optional.
  205. * Query handler on the source pad. Should chain up to the
  206. * parent to let the default handler run (Since 1.2)
  207. *
  208. * Subclasses can override any of the available virtual methods or not, as
  209. * needed. At minimum @handle_frame needs to be overridden.
  210. */
  211. struct _GstBaseParseClass {
  212. GstElementClass parent_class;
  213. /*< public >*/
  214. /* virtual methods for subclasses */
  215. gboolean (*start) (GstBaseParse * parse);
  216. gboolean (*stop) (GstBaseParse * parse);
  217. gboolean (*set_sink_caps) (GstBaseParse * parse,
  218. GstCaps * caps);
  219. GstFlowReturn (*handle_frame) (GstBaseParse * parse,
  220. GstBaseParseFrame * frame,
  221. gint * skipsize);
  222. GstFlowReturn (*pre_push_frame) (GstBaseParse * parse,
  223. GstBaseParseFrame * frame);
  224. gboolean (*convert) (GstBaseParse * parse,
  225. GstFormat src_format,
  226. gint64 src_value,
  227. GstFormat dest_format,
  228. gint64 * dest_value);
  229. gboolean (*sink_event) (GstBaseParse * parse,
  230. GstEvent * event);
  231. gboolean (*src_event) (GstBaseParse * parse,
  232. GstEvent * event);
  233. GstCaps * (*get_sink_caps) (GstBaseParse * parse,
  234. GstCaps * filter);
  235. GstFlowReturn (*detect) (GstBaseParse * parse,
  236. GstBuffer * buffer);
  237. gboolean (*sink_query) (GstBaseParse * parse,
  238. GstQuery * query);
  239. gboolean (*src_query) (GstBaseParse * parse,
  240. GstQuery * query);
  241. /*< private >*/
  242. gpointer _gst_reserved[GST_PADDING_LARGE - 2];
  243. };
  244. GType gst_base_parse_get_type (void);
  245. GType gst_base_parse_frame_get_type (void);
  246. GstBaseParseFrame * gst_base_parse_frame_new (GstBuffer * buffer,
  247. GstBaseParseFrameFlags flags,
  248. gint overhead);
  249. void gst_base_parse_frame_init (GstBaseParseFrame * frame);
  250. void gst_base_parse_frame_free (GstBaseParseFrame * frame);
  251. GstFlowReturn gst_base_parse_push_frame (GstBaseParse * parse,
  252. GstBaseParseFrame * frame);
  253. GstFlowReturn gst_base_parse_finish_frame (GstBaseParse * parse,
  254. GstBaseParseFrame * frame,
  255. gint size);
  256. void gst_base_parse_set_duration (GstBaseParse * parse,
  257. GstFormat fmt,
  258. gint64 duration,
  259. gint interval);
  260. void gst_base_parse_set_average_bitrate (GstBaseParse * parse,
  261. guint bitrate);
  262. void gst_base_parse_set_min_frame_size (GstBaseParse * parse,
  263. guint min_size);
  264. void gst_base_parse_set_has_timing_info (GstBaseParse * parse,
  265. gboolean has_timing);
  266. void gst_base_parse_set_syncable (GstBaseParse * parse,
  267. gboolean syncable);
  268. void gst_base_parse_set_passthrough (GstBaseParse * parse,
  269. gboolean passthrough);
  270. void gst_base_parse_set_pts_interpolation (GstBaseParse * parse,
  271. gboolean pts_interpolate);
  272. void gst_base_parse_set_infer_ts (GstBaseParse * parse,
  273. gboolean infer_ts);
  274. void gst_base_parse_set_frame_rate (GstBaseParse * parse,
  275. guint fps_num,
  276. guint fps_den,
  277. guint lead_in,
  278. guint lead_out);
  279. void gst_base_parse_set_latency (GstBaseParse * parse,
  280. GstClockTime min_latency,
  281. GstClockTime max_latency);
  282. gboolean gst_base_parse_convert_default (GstBaseParse * parse,
  283. GstFormat src_format,
  284. gint64 src_value,
  285. GstFormat dest_format,
  286. gint64 * dest_value);
  287. gboolean gst_base_parse_add_index_entry (GstBaseParse * parse,
  288. guint64 offset,
  289. GstClockTime ts,
  290. gboolean key,
  291. gboolean force);
  292. void gst_base_parse_set_ts_at_offset (GstBaseParse *parse,
  293. gsize offset);
  294. void gst_base_parse_merge_tags (GstBaseParse * parse,
  295. GstTagList * tags,
  296. GstTagMergeMode mode);
  297. #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
  298. G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstBaseParseFrame, gst_base_parse_frame_free)
  299. #endif
  300. #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
  301. G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstBaseParse, gst_object_unref)
  302. #endif
  303. G_END_DECLS
  304. #endif /* __GST_BASE_PARSE_H__ */