element: Add API to more easily post messages about flowing issues
[platform/upstream/gstreamer.git] / gst / gstelement.h
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *               2000,2004 Wim Taymans <wim@fluendo.com>
4  *
5  * gstelement.h: Header for GstElement
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
23
24 #ifndef __GST_ELEMENT_H__
25 #define __GST_ELEMENT_H__
26
27 /* gstelement.h and gstelementfactory.h include eachother */
28 typedef struct _GstElement GstElement;
29 typedef struct _GstElementClass GstElementClass;
30
31 /* gstmessage.h needs State */
32 /**
33  * GstState:
34  * @GST_STATE_VOID_PENDING: no pending state.
35  * @GST_STATE_NULL        : the NULL state or initial state of an element.
36  * @GST_STATE_READY       : the element is ready to go to PAUSED.
37  * @GST_STATE_PAUSED      : the element is PAUSED, it is ready to accept and
38  *                          process data. Sink elements however only accept one
39  *                          buffer and then block.
40  * @GST_STATE_PLAYING     : the element is PLAYING, the #GstClock is running and
41  *                          the data is flowing.
42  *
43  * The possible states an element can be in. States can be changed using
44  * gst_element_set_state() and checked using gst_element_get_state().
45  */
46 typedef enum {
47   GST_STATE_VOID_PENDING        = 0,
48   GST_STATE_NULL                = 1,
49   GST_STATE_READY               = 2,
50   GST_STATE_PAUSED              = 3,
51   GST_STATE_PLAYING             = 4
52 } GstState;
53
54
55 #include <gst/gstconfig.h>
56 #include <gst/gstobject.h>
57 #include <gst/gstpad.h>
58 #include <gst/gstbus.h>
59 #include <gst/gstclock.h>
60 #include <gst/gstelementfactory.h>
61 #include <gst/gstplugin.h>
62 #include <gst/gstpluginfeature.h>
63 #include <gst/gstiterator.h>
64 #include <gst/gstmessage.h>
65 #include <gst/gstquery.h>
66 #include <gst/gsttaglist.h>
67
68 G_BEGIN_DECLS
69
70 #define GST_TYPE_ELEMENT                (gst_element_get_type ())
71 #define GST_IS_ELEMENT(obj)             (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_ELEMENT))
72 #define GST_IS_ELEMENT_CLASS(klass)     (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_ELEMENT))
73 #define GST_ELEMENT_GET_CLASS(obj)      (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_ELEMENT, GstElementClass))
74 #define GST_ELEMENT(obj)                (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_ELEMENT, GstElement))
75 #define GST_ELEMENT_CLASS(klass)        (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_ELEMENT, GstElementClass))
76 #define GST_ELEMENT_CAST(obj)           ((GstElement*)(obj))
77
78 /**
79  * GstStateChangeReturn:
80  * @GST_STATE_CHANGE_FAILURE   : the state change failed
81  * @GST_STATE_CHANGE_SUCCESS   : the state change succeeded
82  * @GST_STATE_CHANGE_ASYNC     : the state change will happen asynchronously
83  * @GST_STATE_CHANGE_NO_PREROLL: the state change succeeded but the element
84  *                               cannot produce data in %GST_STATE_PAUSED.
85  *                               This typically happens with live sources.
86  *
87  * The possible return values from a state change function such as 
88  * gst_element_set_state(). Only @GST_STATE_CHANGE_FAILURE is a real failure.
89  */
90 typedef enum {
91   GST_STATE_CHANGE_FAILURE             = 0,
92   GST_STATE_CHANGE_SUCCESS             = 1,
93   GST_STATE_CHANGE_ASYNC               = 2,
94   GST_STATE_CHANGE_NO_PREROLL          = 3
95 } GstStateChangeReturn;
96
97 /* NOTE: this probably should be done with an #ifdef to decide
98  * whether to safe-cast or to just do the non-checking cast.
99  */
100
101 /**
102  * GST_STATE:
103  * @elem: a #GstElement to return state for.
104  *
105  * This macro returns the current #GstState of the element.
106  */
107 #define GST_STATE(elem)                 (GST_ELEMENT_CAST(elem)->current_state)
108
109 /**
110  * GST_STATE_NEXT:
111  * @elem: a #GstElement to return the next state for.
112  *
113  * This macro returns the next #GstState of the element.
114  */
115 #define GST_STATE_NEXT(elem)            (GST_ELEMENT_CAST(elem)->next_state)
116
117 /**
118  * GST_STATE_PENDING:
119  * @elem: a #GstElement to return the pending state for.
120  *
121  * This macro returns the currently pending #GstState of the element.
122  */
123 #define GST_STATE_PENDING(elem)         (GST_ELEMENT_CAST(elem)->pending_state)
124
125 /**
126  * GST_STATE_TARGET:
127  * @elem: a #GstElement to return the target state for.
128  *
129  * This macro returns the target #GstState of the element.
130  */
131 #define GST_STATE_TARGET(elem)          (GST_ELEMENT_CAST(elem)->target_state)
132
133 /**
134  * GST_STATE_RETURN:
135  * @elem: a #GstElement to return the last state result for.
136  *
137  * This macro returns the last #GstStateChangeReturn value.
138  */
139 #define GST_STATE_RETURN(elem)          (GST_ELEMENT_CAST(elem)->last_return)
140
141 #define __GST_SIGN(val)                 ((val) < 0 ? -1 : ((val) > 0 ? 1 : 0))
142 /**
143  * GST_STATE_GET_NEXT:
144  * @cur: A starting #GstState
145  * @pending: A target #GstState
146  *
147  * Given a current state @cur and a target state @pending, calculate the next (intermediate)
148  * #GstState.
149  */
150 #define GST_STATE_GET_NEXT(cur,pending)         ((GstState)((cur) + __GST_SIGN ((gint)(pending) - (gint)(cur))))
151 /**
152  * GST_STATE_TRANSITION:
153  * @cur: A current state
154  * @next: A next state
155  *
156  * Given a current state @cur and a next state @next, calculate the associated
157  * #GstStateChange transition.
158  */
159 #define GST_STATE_TRANSITION(cur,next)          ((GstStateChange)(((cur)<<3)|(next)))
160 /**
161  * GST_STATE_TRANSITION_CURRENT:
162  * @trans: A #GstStateChange
163  *
164  * Given a state transition @trans, extract the current #GstState.
165  */
166 #define GST_STATE_TRANSITION_CURRENT(trans)     ((GstState)((trans)>>3))
167 /**
168  * GST_STATE_TRANSITION_NEXT:
169  * @trans: A #GstStateChange
170  *
171  * Given a state transition @trans, extract the next #GstState.
172  */
173 #define GST_STATE_TRANSITION_NEXT(trans)        ((GstState)((trans)&0x7))
174
175 /**
176  * GstStateChange:
177  * @GST_STATE_CHANGE_NULL_TO_READY    : state change from NULL to READY.
178  * <itemizedlist>
179  *   <listitem><para>
180  *     The element must check if the resources it needs are available. Device
181  *     sinks and -sources typically try to probe the device to constrain their
182  *     caps.
183  *   </para></listitem>
184  *   <listitem><para>
185  *     The element opens the device (in case feature need to be probed).
186  *   </para></listitem>
187  * </itemizedlist>
188  * @GST_STATE_CHANGE_READY_TO_PAUSED  : state change from READY to PAUSED.
189  * <itemizedlist>
190  *   <listitem><para>
191  *     The element pads are activated in order to receive data in PAUSED.
192  *     Streaming threads are started.
193  *   </para></listitem>
194  *   <listitem><para>
195  *     Some elements might need to return %GST_STATE_CHANGE_ASYNC and complete
196  *     the state change when they have enough information. It is a requirement
197  *     for sinks to return %GST_STATE_CHANGE_ASYNC and complete the state change
198  *     when they receive the first buffer or %GST_EVENT_EOS (preroll).
199  *     Sinks also block the dataflow when in PAUSED.
200  *   </para></listitem>
201  *   <listitem><para>
202  *     A pipeline resets the running_time to 0.
203  *   </para></listitem>
204  *   <listitem><para>
205  *     Live sources return %GST_STATE_CHANGE_NO_PREROLL and don't generate data.
206  *   </para></listitem>
207  * </itemizedlist>
208  * @GST_STATE_CHANGE_PAUSED_TO_PLAYING: state change from PAUSED to PLAYING.
209  * <itemizedlist>
210  *   <listitem><para>
211  *     Most elements ignore this state change.
212  *   </para></listitem>
213  *   <listitem><para>
214  *     The pipeline selects a #GstClock and distributes this to all the children
215  *     before setting them to PLAYING. This means that it is only allowed to
216  *     synchronize on the #GstClock in the PLAYING state.
217  *   </para></listitem>
218  *   <listitem><para>
219  *     The pipeline uses the #GstClock and the running_time to calculate the
220  *     base_time. The base_time is distributed to all children when performing
221  *     the state change.
222  *   </para></listitem>
223  *   <listitem><para>
224  *     Sink elements stop blocking on the preroll buffer or event and start
225  *     rendering the data.
226  *   </para></listitem>
227  *   <listitem><para>
228  *     Sinks can post %GST_MESSAGE_EOS in the PLAYING state. It is not allowed
229  *     to post %GST_MESSAGE_EOS when not in the PLAYING state.
230  *   </para></listitem>
231  *   <listitem><para>
232  *     While streaming in PAUSED or PLAYING elements can create and remove
233  *     sometimes pads.
234  *   </para></listitem>
235  *   <listitem><para>
236  *     Live sources start generating data and return %GST_STATE_CHANGE_SUCCESS.
237  *   </para></listitem>
238  * </itemizedlist>
239  * @GST_STATE_CHANGE_PLAYING_TO_PAUSED: state change from PLAYING to PAUSED.
240  * <itemizedlist>
241  *   <listitem><para>
242  *     Most elements ignore this state change.
243  *   </para></listitem>
244  *   <listitem><para>
245  *     The pipeline calculates the running_time based on the last selected
246  *     #GstClock and the base_time. It stores this information to continue
247  *     playback when going back to the PLAYING state.
248  *   </para></listitem>
249  *   <listitem><para>
250  *     Sinks unblock any #GstClock wait calls.
251  *   </para></listitem>
252  *   <listitem><para>
253  *     When a sink does not have a pending buffer to play, it returns
254  *     %GST_STATE_CHANGE_ASYNC from this state change and completes the state
255  *     change when it receives a new buffer or an %GST_EVENT_EOS.
256  *   </para></listitem>
257  *   <listitem><para>
258  *     Any queued %GST_MESSAGE_EOS items are removed since they will be reposted
259  *     when going back to the PLAYING state. The EOS messages are queued in
260  *     #GstBin containers.
261  *   </para></listitem>
262  *   <listitem><para>
263  *     Live sources stop generating data and return %GST_STATE_CHANGE_NO_PREROLL.
264  *   </para></listitem>
265  * </itemizedlist>
266  * @GST_STATE_CHANGE_PAUSED_TO_READY  : state change from PAUSED to READY.
267  * <itemizedlist>
268  *   <listitem><para>
269  *     Sinks unblock any waits in the preroll.
270  *   </para></listitem>
271  *   <listitem><para>
272  *     Elements unblock any waits on devices
273  *   </para></listitem>
274  *   <listitem><para>
275  *     Chain or get_range functions return %GST_FLOW_FLUSHING.
276  *   </para></listitem>
277  *   <listitem><para>
278  *     The element pads are deactivated so that streaming becomes impossible and
279  *     all streaming threads are stopped.
280  *   </para></listitem>
281  *   <listitem><para>
282  *     The sink forgets all negotiated formats
283  *   </para></listitem>
284  *   <listitem><para>
285  *     Elements remove all sometimes pads
286  *   </para></listitem>
287  * </itemizedlist>
288  * @GST_STATE_CHANGE_READY_TO_NULL    : state change from READY to NULL.
289  * <itemizedlist>
290  *   <listitem><para>
291  *     Elements close devices
292  *   </para></listitem>
293  *   <listitem><para>
294  *     Elements reset any internal state.
295  *   </para></listitem>
296  * </itemizedlist>
297  *
298  * These are the different state changes an element goes through.
299  * %GST_STATE_NULL &rArr; %GST_STATE_PLAYING is called an upwards state change
300  * and %GST_STATE_PLAYING &rArr; %GST_STATE_NULL a downwards state change.
301  */
302 typedef enum /*< flags=0 >*/
303 {
304   GST_STATE_CHANGE_NULL_TO_READY        = (GST_STATE_NULL<<3) | GST_STATE_READY,
305   GST_STATE_CHANGE_READY_TO_PAUSED      = (GST_STATE_READY<<3) | GST_STATE_PAUSED,
306   GST_STATE_CHANGE_PAUSED_TO_PLAYING    = (GST_STATE_PAUSED<<3) | GST_STATE_PLAYING,
307   GST_STATE_CHANGE_PLAYING_TO_PAUSED    = (GST_STATE_PLAYING<<3) | GST_STATE_PAUSED,
308   GST_STATE_CHANGE_PAUSED_TO_READY      = (GST_STATE_PAUSED<<3) | GST_STATE_READY,
309   GST_STATE_CHANGE_READY_TO_NULL        = (GST_STATE_READY<<3) | GST_STATE_NULL
310 } GstStateChange;
311
312 /**
313  * GstElementFlags:
314  * @GST_ELEMENT_FLAG_LOCKED_STATE: ignore state changes from parent
315  * @GST_ELEMENT_FLAG_SINK: the element is a sink
316  * @GST_ELEMENT_FLAG_SOURCE: the element is a source.
317  * @GST_ELEMENT_FLAG_PROVIDE_CLOCK: the element can provide a clock
318  * @GST_ELEMENT_FLAG_REQUIRE_CLOCK: the element requires a clock
319  * @GST_ELEMENT_FLAG_INDEXABLE: the element can use an index
320  * @GST_ELEMENT_FLAG_LAST: offset to define more flags
321  *
322  * The standard flags that an element may have.
323  */
324 typedef enum
325 {
326   GST_ELEMENT_FLAG_LOCKED_STATE   = (GST_OBJECT_FLAG_LAST << 0),
327   GST_ELEMENT_FLAG_SINK           = (GST_OBJECT_FLAG_LAST << 1),
328   GST_ELEMENT_FLAG_SOURCE         = (GST_OBJECT_FLAG_LAST << 2),
329   GST_ELEMENT_FLAG_PROVIDE_CLOCK  = (GST_OBJECT_FLAG_LAST << 3),
330   GST_ELEMENT_FLAG_REQUIRE_CLOCK  = (GST_OBJECT_FLAG_LAST << 4),
331   GST_ELEMENT_FLAG_INDEXABLE      = (GST_OBJECT_FLAG_LAST << 5),
332   /* padding */
333   GST_ELEMENT_FLAG_LAST           = (GST_OBJECT_FLAG_LAST << 10)
334 } GstElementFlags;
335
336 /**
337  * GST_ELEMENT_IS_LOCKED_STATE:
338  * @elem: A #GstElement to query
339  *
340  * Check if the element is in the locked state and therefore will ignore state
341  * changes from its parent object.
342  */
343 #define GST_ELEMENT_IS_LOCKED_STATE(elem)        (GST_OBJECT_FLAG_IS_SET(elem,GST_ELEMENT_FLAG_LOCKED_STATE))
344
345 /**
346  * GST_ELEMENT_NAME:
347  * @elem: A #GstElement to query
348  *
349  * Gets the name of this element. This is not thread-safe by default
350  * (i.e. you will have to make sure the object lock is taken yourself).
351  * If in doubt use gst_element_get_name() instead.
352  */
353 #define GST_ELEMENT_NAME(elem)                  (GST_OBJECT_NAME(elem))
354
355 /**
356  * GST_ELEMENT_PARENT:
357  * @elem: A #GstElement to query
358  *
359  * Get the parent object of this element. This is not thread-safe by default
360  * (i.e. you will have to make sure the object lock is taken yourself).
361  * If in doubt use gst_object_get_parent() instead.
362  */
363 #define GST_ELEMENT_PARENT(elem)                (GST_ELEMENT_CAST(GST_OBJECT_PARENT(elem)))
364
365 /**
366  * GST_ELEMENT_BUS:
367  * @elem: A #GstElement to query
368  *
369  * Get the message bus of this element. This is not thread-safe by default
370  * (i.e. you will have to make sure the object lock is taken yourself).
371  * If in doubt use gst_element_get_bus() instead.
372  */
373 #define GST_ELEMENT_BUS(elem)                   (GST_ELEMENT_CAST(elem)->bus)
374
375 /**
376  * GST_ELEMENT_CLOCK:
377  * @elem: A #GstElement to query
378  *
379  * Get the clock of this element.This is not thread-safe by default
380  * (i.e. you will have to make sure it is safe yourself).
381  * If in doubt use gst_element_get_clock() instead.
382  */
383 #define GST_ELEMENT_CLOCK(elem)                 (GST_ELEMENT_CAST(elem)->clock)
384
385 /**
386  * GST_ELEMENT_PADS:
387  * @elem: A #GstElement to query
388  *
389  * Get the pads of this elements.
390  */
391 #define GST_ELEMENT_PADS(elem)                  (GST_ELEMENT_CAST(elem)->pads)
392
393 /**
394  * GST_ELEMENT_START_TIME:
395  * @elem: a #GstElement to return the start time for.
396  *
397  * This macro returns the start_time of the @elem. The start_time is the
398  * running_time of the pipeline when the element went to PAUSED.
399  */
400 #define GST_ELEMENT_START_TIME(elem)            (GST_ELEMENT_CAST(elem)->start_time)
401
402 GstStructure *gst_make_element_message_details (const char *name, ...);
403 #define GST_ELEMENT_MESSAGE_MAKE_DETAILS(args) gst_make_element_message_details args
404
405 /**
406  * GST_ELEMENT_FLOW_ERROR:
407  * @el:           the element that generates the error
408  * @flow_return:  the GstFlowReturn leading to that ERROR message
409  *
410  * Utility function that elements can use in case they encountered a fatal
411  * data processing error due to wrong flow processing.
412  *
413  * Since: 1.10
414  */
415 #define GST_ELEMENT_FLOW_ERROR(el,flow_return)  \
416 G_STMT_START {                                                          \
417   GST_ELEMENT_ERROR_WITH_DETAILS (el, STREAM, FAILED, \
418       ("Internal data stream error."), \
419       ("streaming stopped, reason %s (%d)", gst_flow_get_name (flow_return), flow_return), \
420       ("flow-return", G_TYPE_INT, flow_return, NULL));\
421 } G_STMT_END
422
423 /**
424  * GST_ELEMENT_ERROR_WITH_DETAILS:
425  * @el:     the element that generates the error
426  * @domain: like CORE, LIBRARY, RESOURCE or STREAM (see #gstreamer-GstGError)
427  * @code:   error code defined for that domain (see #gstreamer-GstGError)
428  * @text:   the message to display (format string and args enclosed in
429             parentheses)
430  * @debug:  debugging information for the message (format string and args
431             enclosed in parentheses)
432  * @args    optional name, type, value triplets, which will be stored
433  *          in the associated GstStructure. NULL terminator required.
434  *          Must be enclosed within parentheses.
435  *
436  * Utility function that elements can use in case they encountered a fatal
437  * data processing error. The pipeline will post an error message and the
438  * application will be requested to stop further media processing.
439  *
440  * Since: 1.10
441  */
442 #define GST_ELEMENT_ERROR_WITH_DETAILS(el,domain,code,text,debug,args)  \
443 G_STMT_START {                                                          \
444   gchar *__txt = _gst_element_error_printf text;                        \
445   gchar *__dbg = _gst_element_error_printf debug;                       \
446   if (__txt)                                                            \
447     GST_WARNING_OBJECT (el, "error: %s", __txt);                        \
448   if (__dbg)                                                            \
449     GST_WARNING_OBJECT (el, "error: %s", __dbg);                        \
450   gst_element_message_full_with_details (GST_ELEMENT(el),               \
451     GST_MESSAGE_ERROR, GST_ ## domain ## _ERROR,                        \
452       GST_ ## domain ## _ERROR_ ## code, __txt, __dbg, __FILE__,        \
453       GST_FUNCTION, __LINE__, GST_ELEMENT_MESSAGE_MAKE_DETAILS(args));  \
454 } G_STMT_END
455
456 /**
457  * GST_ELEMENT_ERROR:
458  * @el:     the element that generates the error
459  * @domain: like CORE, LIBRARY, RESOURCE or STREAM (see #gstreamer-GstGError)
460  * @code:   error code defined for that domain (see #gstreamer-GstGError)
461  * @text:   the message to display (format string and args enclosed in
462             parentheses)
463  * @debug:  debugging information for the message (format string and args
464             enclosed in parentheses)
465  *
466  * Utility function that elements can use in case they encountered a fatal
467  * data processing error. The pipeline will post an error message and the
468  * application will be requested to stop further media processing.
469  */
470 #define GST_ELEMENT_ERROR(el,domain,code,text,debug)                    \
471 G_STMT_START {                                                          \
472   gchar *__txt = _gst_element_error_printf text;                        \
473   gchar *__dbg = _gst_element_error_printf debug;                       \
474   if (__txt)                                                            \
475     GST_WARNING_OBJECT (el, "error: %s", __txt);                        \
476   if (__dbg)                                                            \
477     GST_WARNING_OBJECT (el, "error: %s", __dbg);                        \
478   gst_element_message_full (GST_ELEMENT(el),                            \
479     GST_MESSAGE_ERROR, GST_ ## domain ## _ERROR,                        \
480       GST_ ## domain ## _ERROR_ ## code, __txt, __dbg, __FILE__,        \
481       GST_FUNCTION, __LINE__);                                          \
482 } G_STMT_END
483
484 /**
485  * GST_ELEMENT_WARNING_WITH_DETAILS:
486  * @el:     the element that generates the warning
487  * @domain: like CORE, LIBRARY, RESOURCE or STREAM (see #gstreamer-GstGError)
488  * @code:   error code defined for that domain (see #gstreamer-GstGError)
489  * @text:   the message to display (format string and args enclosed in
490             parentheses)
491  * @debug:  debugging information for the message (format string and args
492             enclosed in parentheses)
493  * @args    optional name, type, value triplets, which will be stored
494  *          in the associated GstStructure. NULL terminator required.
495  *          Must be enclosed within parentheses.
496  *
497  * Utility function that elements can use in case they encountered a non-fatal
498  * data processing problem. The pipeline will post a warning message and the
499  * application will be informed.
500  *
501  * Since: 1.10
502  */
503 #define GST_ELEMENT_WARNING_WITH_DETAILS(el, domain, code, text, debug, args)\
504 G_STMT_START {                                                          \
505   gchar *__txt = _gst_element_error_printf text;                        \
506   gchar *__dbg = _gst_element_error_printf debug;                       \
507   if (__txt)                                                            \
508     GST_WARNING_OBJECT (el, "warning: %s", __txt);                      \
509   if (__dbg)                                                            \
510     GST_WARNING_OBJECT (el, "warning: %s", __dbg);                      \
511   gst_element_message_full_with_details (GST_ELEMENT(el),               \
512     GST_MESSAGE_WARNING, GST_ ## domain ## _ERROR,                      \
513     GST_ ## domain ## _ERROR_ ## code, __txt, __dbg, __FILE__,          \
514     GST_FUNCTION, __LINE__, GST_ELEMENT_MESSAGE_MAKE_DETAILS(args));    \
515 } G_STMT_END
516
517 /**
518  * GST_ELEMENT_WARNING:
519  * @el:     the element that generates the warning
520  * @domain: like CORE, LIBRARY, RESOURCE or STREAM (see #gstreamer-GstGError)
521  * @code:   error code defined for that domain (see #gstreamer-GstGError)
522  * @text:   the message to display (format string and args enclosed in
523             parentheses)
524  * @debug:  debugging information for the message (format string and args
525             enclosed in parentheses)
526  *
527  * Utility function that elements can use in case they encountered a non-fatal
528  * data processing problem. The pipeline will post a warning message and the
529  * application will be informed.
530  */
531 #define GST_ELEMENT_WARNING(el, domain, code, text, debug)              \
532 G_STMT_START {                                                          \
533   gchar *__txt = _gst_element_error_printf text;                        \
534   gchar *__dbg = _gst_element_error_printf debug;                       \
535   if (__txt)                                                            \
536     GST_WARNING_OBJECT (el, "warning: %s", __txt);                      \
537   if (__dbg)                                                            \
538     GST_WARNING_OBJECT (el, "warning: %s", __dbg);                      \
539   gst_element_message_full (GST_ELEMENT(el),                            \
540     GST_MESSAGE_WARNING, GST_ ## domain ## _ERROR,                      \
541     GST_ ## domain ## _ERROR_ ## code, __txt, __dbg, __FILE__,          \
542     GST_FUNCTION, __LINE__);                                            \
543 } G_STMT_END
544
545 /**
546  * GST_ELEMENT_INFO_WITH_DETAILS:
547  * @el:     the element that generates the information
548  * @domain: like CORE, LIBRARY, RESOURCE or STREAM (see #gstreamer-GstGError)
549  * @code:   error code defined for that domain (see #gstreamer-GstGError)
550  * @text:   the message to display (format string and args enclosed in
551             parentheses)
552  * @debug:  debugging information for the message (format string and args
553             enclosed in parentheses)
554  * @args    optional name, type, value triplets, which will be stored
555  *          in the associated GstStructure. NULL terminator required.
556  *          Must be enclosed within parentheses.
557  *
558  * Utility function that elements can use in case they want to inform
559  * the application of something noteworthy that is not an error.
560  * The pipeline will post a info message and the
561  * application will be informed.
562  * Optional name, type, value triplets may be supplied, and will be stored
563  * in the associated GstStructure. NULL terminator required.
564  *
565  * Since: 1.10
566  */
567 #define GST_ELEMENT_INFO_WITH_DETAILS(el, domain, code, text, debug, args)   \
568 G_STMT_START {                                                          \
569   gchar *__txt = _gst_element_error_printf text;                        \
570   gchar *__dbg = _gst_element_error_printf debug;                       \
571   if (__txt)                                                            \
572     GST_INFO_OBJECT (el, "info: %s", __txt);                            \
573   if (__dbg)                                                            \
574     GST_INFO_OBJECT (el, "info: %s", __dbg);                            \
575   gst_element_message_full_with_details (GST_ELEMENT(el),               \
576     GST_MESSAGE_INFO, GST_ ## domain ## _ERROR,                         \
577     GST_ ## domain ## _ERROR_ ## code, __txt, __dbg, __FILE__,          \
578     GST_FUNCTION, __LINE__, GST_ELEMENT_MESSAGE_MAKE_DETAILS(args));    \
579 } G_STMT_END
580
581 /**
582  * GST_ELEMENT_INFO:
583  * @el:     the element that generates the information
584  * @domain: like CORE, LIBRARY, RESOURCE or STREAM (see #gstreamer-GstGError)
585  * @code:   error code defined for that domain (see #gstreamer-GstGError)
586  * @text:   the message to display (format string and args enclosed in
587             parentheses)
588  * @debug:  debugging information for the message (format string and args
589             enclosed in parentheses)
590  *
591  * Utility function that elements can use in case they want to inform
592  * the application of something noteworthy that is not an error.
593  * The pipeline will post a info message and the
594  * application will be informed.
595  */
596 #define GST_ELEMENT_INFO(el, domain, code, text, debug)                 \
597 G_STMT_START {                                                          \
598   gchar *__txt = _gst_element_error_printf text;                        \
599   gchar *__dbg = _gst_element_error_printf debug;                       \
600   if (__txt)                                                            \
601     GST_INFO_OBJECT (el, "info: %s", __txt);                            \
602   if (__dbg)                                                            \
603     GST_INFO_OBJECT (el, "info: %s", __dbg);                            \
604   gst_element_message_full (GST_ELEMENT(el),                            \
605     GST_MESSAGE_INFO, GST_ ## domain ## _ERROR,                         \
606     GST_ ## domain ## _ERROR_ ## code, __txt, __dbg, __FILE__,          \
607     GST_FUNCTION, __LINE__);                                            \
608 } G_STMT_END
609
610 /* the state change mutexes and conds */
611 /**
612  * GST_STATE_GET_LOCK:
613  * @elem:   a #GstElement
614  *
615  * Get a reference to the state lock of @elem.
616  * This lock is used by the core.  It is taken while getting or setting
617  * the state, during state changes, and while finalizing.
618  */
619 #define GST_STATE_GET_LOCK(elem)               (&(GST_ELEMENT_CAST(elem)->state_lock))
620 /**
621  * GST_STATE_GET_COND:
622  * @elem: a #GstElement
623  *
624  * Get the conditional used to signal the completion of a state change.
625  */
626 #define GST_STATE_GET_COND(elem)               (&GST_ELEMENT_CAST(elem)->state_cond)
627
628 #define GST_STATE_LOCK(elem)                   g_rec_mutex_lock(GST_STATE_GET_LOCK(elem))
629 #define GST_STATE_TRYLOCK(elem)                g_rec_mutex_trylock(GST_STATE_GET_LOCK(elem))
630 #define GST_STATE_UNLOCK(elem)                 g_rec_mutex_unlock(GST_STATE_GET_LOCK(elem))
631 #define GST_STATE_WAIT(elem)                   g_cond_wait (GST_STATE_GET_COND (elem), \
632                                                         GST_OBJECT_GET_LOCK (elem))
633 #define GST_STATE_WAIT_UNTIL(elem, end_time)   g_cond_wait_until (GST_STATE_GET_COND (elem), \
634                                                         GST_OBJECT_GET_LOCK (elem), end_time)
635 #define GST_STATE_SIGNAL(elem)                 g_cond_signal (GST_STATE_GET_COND (elem));
636 #define GST_STATE_BROADCAST(elem)              g_cond_broadcast (GST_STATE_GET_COND (elem));
637
638 /**
639  * GstElement:
640  * @state_lock: Used to serialize execution of gst_element_set_state()
641  * @state_cond: Used to signal completion of a state change
642  * @state_cookie: Used to detect concurrent execution of
643  * gst_element_set_state() and gst_element_get_state()
644  * @target_state: the target state of an element as set by the application
645  * @current_state: the current state of an element
646  * @next_state: the next state of an element, can be #GST_STATE_VOID_PENDING if
647  * the element is in the correct state.
648  * @pending_state: the final state the element should go to, can be
649  * #GST_STATE_VOID_PENDING if the element is in the correct state
650  * @last_return: the last return value of an element state change
651  * @bus: the bus of the element. This bus is provided to the element by the
652  * parent element or the application. A #GstPipeline has a bus of its own.
653  * @clock: the clock of the element. This clock is usually provided to the
654  * element by the toplevel #GstPipeline.
655  * @base_time: the time of the clock right before the element is set to
656  * PLAYING. Subtracting @base_time from the current clock time in the PLAYING
657  * state will yield the running_time against the clock.
658  * @start_time: the running_time of the last PAUSED state
659  * @numpads: number of pads of the element, includes both source and sink pads.
660  * @pads: (element-type Gst.Pad): list of pads
661  * @numsrcpads: number of source pads of the element.
662  * @srcpads: (element-type Gst.Pad): list of source pads
663  * @numsinkpads: number of sink pads of the element.
664  * @sinkpads: (element-type Gst.Pad): list of sink pads
665  * @pads_cookie: updated whenever the a pad is added or removed
666  *
667  * GStreamer element abstract base class.
668  */
669 struct _GstElement
670 {
671   GstObject             object;
672
673   /*< public >*/ /* with LOCK */
674   GRecMutex             state_lock;
675
676   /* element state */
677   GCond                 state_cond;
678   guint32               state_cookie;
679   GstState              target_state;
680   GstState              current_state;
681   GstState              next_state;
682   GstState              pending_state;
683   GstStateChangeReturn  last_return;
684
685   GstBus               *bus;
686
687   /* allocated clock */
688   GstClock             *clock;
689   GstClockTimeDiff      base_time; /* NULL/READY: 0 - PAUSED: current time - PLAYING: difference to clock */
690   GstClockTime          start_time;
691
692   /* element pads, these lists can only be iterated while holding
693    * the LOCK or checking the cookie after each LOCK. */
694   guint16               numpads;
695   GList                *pads;
696   guint16               numsrcpads;
697   GList                *srcpads;
698   guint16               numsinkpads;
699   GList                *sinkpads;
700   guint32               pads_cookie;
701
702   /* with object LOCK */
703   GList                *contexts;
704
705   /*< private >*/
706   gpointer _gst_reserved[GST_PADDING-1];
707 };
708
709 /**
710  * GstElementClass:
711  * @parent_class: the parent class structure
712  * @metadata: metadata for elements of this class
713  * @elementfactory: the #GstElementFactory that creates these elements
714  * @padtemplates: a #GList of #GstPadTemplate
715  * @numpadtemplates: the number of padtemplates
716  * @pad_templ_cookie: changed whenever the padtemplates change
717  * @request_new_pad: called when a new pad is requested
718  * @release_pad: called when a request pad is to be released
719  * @get_state: get the state of the element
720  * @set_state: set a new state on the element
721  * @change_state: called by @set_state to perform an incremental state change
722  * @set_bus: set a #GstBus on the element
723  * @provide_clock: gets the #GstClock provided by the element
724  * @set_clock: set the #GstClock on the element
725  * @send_event: send a #GstEvent to the element
726  * @query: perform a #GstQuery on the element
727  * @state_changed: called immediately after a new state was set.
728  * @post_message: called when a message is posted on the element. Chain up to
729  *                the parent class' handler to have it posted on the bus.
730  * @set_context: set a #GstContext on the element
731  *
732  * GStreamer element class. Override the vmethods to implement the element
733  * functionality.
734  */
735 struct _GstElementClass
736 {
737   GstObjectClass         parent_class;
738
739   /*< public >*/
740   /* the element metadata */
741   gpointer               metadata;
742
743   /* factory that the element was created from */
744   GstElementFactory     *elementfactory;
745
746   /* templates for our pads */
747   GList                 *padtemplates;
748   gint                   numpadtemplates;
749   guint32                pad_templ_cookie;
750
751   /*< private >*/
752   /* signal callbacks */
753   void (*pad_added)     (GstElement *element, GstPad *pad);
754   void (*pad_removed)   (GstElement *element, GstPad *pad);
755   void (*no_more_pads)  (GstElement *element);
756
757   /*< public >*/
758   /* virtual methods for subclasses */
759
760   /* request/release pads */
761   /* FIXME 2.0 harmonize naming with gst_element_request_pad */
762   GstPad*               (*request_new_pad)      (GstElement *element, GstPadTemplate *templ,
763                                                  const gchar* name, const GstCaps *caps);
764
765   void                  (*release_pad)          (GstElement *element, GstPad *pad);
766
767   /* state changes */
768   GstStateChangeReturn (*get_state)             (GstElement * element, GstState * state,
769                                                  GstState * pending, GstClockTime timeout);
770   GstStateChangeReturn (*set_state)             (GstElement *element, GstState state);
771   GstStateChangeReturn (*change_state)          (GstElement *element, GstStateChange transition);
772   void                 (*state_changed)         (GstElement *element, GstState oldstate,
773                                                  GstState newstate, GstState pending);
774
775   /* bus */
776   void                  (*set_bus)              (GstElement * element, GstBus * bus);
777
778   /* set/get clocks */
779   GstClock*             (*provide_clock)        (GstElement *element);
780   gboolean              (*set_clock)            (GstElement *element, GstClock *clock);
781
782   /* query functions */
783   gboolean              (*send_event)           (GstElement *element, GstEvent *event);
784
785   gboolean              (*query)                (GstElement *element, GstQuery *query);
786
787   gboolean              (*post_message)         (GstElement *element, GstMessage *message);
788
789   void                  (*set_context)          (GstElement *element, GstContext *context);
790
791   /*< private >*/
792   gpointer _gst_reserved[GST_PADDING_LARGE-2];
793 };
794
795 /* element class pad templates */
796 void                    gst_element_class_add_pad_template      (GstElementClass *klass, GstPadTemplate *templ);
797
798 void                    gst_element_class_add_static_pad_template (GstElementClass *klass, GstStaticPadTemplate *static_templ);
799
800 GstPadTemplate*         gst_element_class_get_pad_template      (GstElementClass *element_class, const gchar *name);
801 GList*                  gst_element_class_get_pad_template_list (GstElementClass *element_class);
802
803 /* element class meta data */
804 void                    gst_element_class_set_metadata          (GstElementClass *klass,
805                                                                  const gchar     *longname,
806                                                                  const gchar     *classification,
807                                                                  const gchar     *description,
808                                                                  const gchar     *author);
809 void                    gst_element_class_set_static_metadata   (GstElementClass *klass,
810                                                                  const gchar     *longname,
811                                                                  const gchar     *classification,
812                                                                  const gchar     *description,
813                                                                  const gchar     *author);
814 void                    gst_element_class_add_metadata          (GstElementClass * klass,
815                                                                  const gchar * key, const gchar * value);
816 void                    gst_element_class_add_static_metadata   (GstElementClass * klass,
817                                                                  const gchar * key, const gchar * value);
818 const gchar *           gst_element_class_get_metadata          (GstElementClass * klass,
819                                                                  const gchar * key);
820
821
822 /* element instance */
823 GType                   gst_element_get_type            (void);
824
825 /* basic name and parentage stuff from GstObject */
826
827 /**
828  * gst_element_get_name:
829  * @elem: a #GstElement to get the name of @elem.
830  *
831  * Returns a copy of the name of @elem.
832  * Caller should g_free() the return value after usage.
833  * For a nameless element, this returns %NULL, which you can safely g_free()
834  * as well.
835  *
836  * Returns: (transfer full) (nullable): the name of @elem. g_free()
837  * after usage. MT safe.
838  *
839  */
840 #define                 gst_element_get_name(elem)      gst_object_get_name(GST_OBJECT_CAST(elem))
841
842 /**
843  * gst_element_set_name:
844  * @elem: a #GstElement to set the name of.
845  * @name: the new name
846  *
847  * Sets the name of the element, getting rid of the old name if there was one.
848  */
849 #define                 gst_element_set_name(elem,name) gst_object_set_name(GST_OBJECT_CAST(elem),name)
850
851 /**
852  * gst_element_get_parent:
853  * @elem: a #GstElement to get the parent of.
854  *
855  * Get the parent of an element.
856  *
857  * Returns: (transfer full): the parent of an element.
858  */
859 #define                 gst_element_get_parent(elem)    gst_object_get_parent(GST_OBJECT_CAST(elem))
860
861 /**
862  * gst_element_set_parent:
863  * @elem: a #GstElement to set the parent of.
864  * @parent: the new parent #GstObject of the element.
865  *
866  * Sets the parent of an element.
867  */
868 #define                 gst_element_set_parent(elem,parent)     gst_object_set_parent(GST_OBJECT_CAST(elem),parent)
869
870 /* clocking */
871 GstClock*               gst_element_provide_clock       (GstElement *element);
872 GstClock*               gst_element_get_clock           (GstElement *element);
873 gboolean                gst_element_set_clock           (GstElement *element, GstClock *clock);
874 void                    gst_element_set_base_time       (GstElement *element, GstClockTime time);
875 GstClockTime            gst_element_get_base_time       (GstElement *element);
876 void                    gst_element_set_start_time      (GstElement *element, GstClockTime time);
877 GstClockTime            gst_element_get_start_time      (GstElement *element);
878
879 /* bus */
880 void                    gst_element_set_bus             (GstElement * element, GstBus * bus);
881 GstBus *                gst_element_get_bus             (GstElement * element);
882
883 /* context */
884 void                    gst_element_set_context         (GstElement * element, GstContext * context);
885 GList *                 gst_element_get_contexts        (GstElement * element);
886 GstContext *            gst_element_get_context         (GstElement * element, const gchar * context_type);
887 GstContext *            gst_element_get_context_unlocked (GstElement * element, const gchar * context_type);
888
889 /* pad management */
890 gboolean                gst_element_add_pad             (GstElement *element, GstPad *pad);
891 gboolean                gst_element_remove_pad          (GstElement *element, GstPad *pad);
892 void                    gst_element_no_more_pads        (GstElement *element);
893
894 GstPad*                 gst_element_get_static_pad      (GstElement *element, const gchar *name);
895 GstPad*                 gst_element_get_request_pad     (GstElement *element, const gchar *name);
896 GstPad*                 gst_element_request_pad         (GstElement *element, GstPadTemplate *templ,
897                                                          const gchar * name, const GstCaps *caps);
898 void                    gst_element_release_request_pad (GstElement *element, GstPad *pad);
899
900 GstIterator *           gst_element_iterate_pads        (GstElement * element);
901 GstIterator *           gst_element_iterate_src_pads    (GstElement * element);
902 GstIterator *           gst_element_iterate_sink_pads   (GstElement * element);
903
904 /* event/query/format stuff */
905 gboolean                gst_element_send_event          (GstElement *element, GstEvent *event);
906 gboolean                gst_element_seek                (GstElement *element, gdouble rate,
907                                                          GstFormat format, GstSeekFlags flags,
908                                                          GstSeekType start_type, gint64 start,
909                                                          GstSeekType stop_type, gint64 stop);
910 gboolean                gst_element_query               (GstElement *element, GstQuery *query);
911
912 /* messages */
913 gboolean                gst_element_post_message        (GstElement * element, GstMessage * message);
914
915 /* error handling */
916 /* gcc versions < 3.3 warn about NULL being passed as format to printf */
917 #if (!defined(__GNUC__) || (__GNUC__ < 3) || (__GNUC__ == 3 && __GNUC_MINOR__ < 3))
918 gchar *                 _gst_element_error_printf       (const gchar *format, ...);
919 #else
920 gchar *                 _gst_element_error_printf       (const gchar *format, ...) G_GNUC_PRINTF (1, 2);
921 #endif
922 void                    gst_element_message_full        (GstElement * element, GstMessageType type,
923                                                          GQuark domain, gint code, gchar * text,
924                                                          gchar * debug, const gchar * file,
925                                                          const gchar * function, gint line);
926
927 void                    gst_element_message_full_with_details (GstElement * element, GstMessageType type,
928                                                          GQuark domain, gint code, gchar * text,
929                                                          gchar * debug, const gchar * file,
930                                                          const gchar * function, gint line,
931                                                          GstStructure * structure);
932
933 /* state management */
934 gboolean                gst_element_is_locked_state     (GstElement *element);
935 gboolean                gst_element_set_locked_state    (GstElement *element, gboolean locked_state);
936 gboolean                gst_element_sync_state_with_parent (GstElement *element);
937
938 GstStateChangeReturn    gst_element_get_state           (GstElement * element,
939                                                          GstState * state,
940                                                          GstState * pending,
941                                                          GstClockTime timeout);
942 GstStateChangeReturn    gst_element_set_state           (GstElement *element, GstState state);
943
944 void                    gst_element_abort_state         (GstElement * element);
945 GstStateChangeReturn    gst_element_change_state        (GstElement * element,
946                                                          GstStateChange transition);
947 GstStateChangeReturn    gst_element_continue_state      (GstElement * element,
948                                                          GstStateChangeReturn ret);
949 void                    gst_element_lost_state          (GstElement * element);
950
951 typedef void          (*GstElementCallAsyncFunc)        (GstElement * element,
952                                                          gpointer     user_data);
953
954 void                    gst_element_call_async          (GstElement * element,
955                                                          GstElementCallAsyncFunc func, gpointer user_data,
956                                                          GDestroyNotify destroy_notify);
957
958 /* factory management */
959 GstElementFactory*      gst_element_get_factory         (GstElement *element);
960
961 /* utility functions */
962 gulong                  gst_element_add_property_notify_watch (GstElement  * element,
963                                                                const gchar * property_name,
964                                                                gboolean      include_value);
965
966 gulong                  gst_element_add_property_deep_notify_watch (GstElement  * element,
967                                                                     const gchar * property_name,
968                                                                     gboolean      include_value);
969
970 void                    gst_element_remove_property_notify_watch (GstElement * element,
971                                                                   gulong       watch_id);
972
973 #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
974 G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstElement, gst_object_unref)
975 #endif
976
977 G_END_DECLS
978
979 #endif /* __GST_ELEMENT_H__ */