2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000,2004 Wim Taymans <wim@fluendo.com>
5 * gstelement.h: Header for GstElement
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.
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.
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.
24 #ifndef __GST_ELEMENT_H__
25 #define __GST_ELEMENT_H__
27 /* gstelement.h and gstelementfactory.h include eachother */
28 typedef struct _GstElement GstElement;
29 typedef struct _GstElementClass GstElementClass;
31 /* gstmessage.h needs State */
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.
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().
47 GST_STATE_VOID_PENDING = 0,
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>
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))
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.
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.
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;
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.
103 * @elem: a #GstElement to return state for.
105 * This macro returns the current #GstState of the element.
107 #define GST_STATE(elem) (GST_ELEMENT_CAST(elem)->current_state)
111 * @elem: a #GstElement to return the next state for.
113 * This macro returns the next #GstState of the element.
115 #define GST_STATE_NEXT(elem) (GST_ELEMENT_CAST(elem)->next_state)
119 * @elem: a #GstElement to return the pending state for.
121 * This macro returns the currently pending #GstState of the element.
123 #define GST_STATE_PENDING(elem) (GST_ELEMENT_CAST(elem)->pending_state)
127 * @elem: a #GstElement to return the target state for.
129 * This macro returns the target #GstState of the element.
131 #define GST_STATE_TARGET(elem) (GST_ELEMENT_CAST(elem)->target_state)
135 * @elem: a #GstElement to return the last state result for.
137 * This macro returns the last #GstStateChangeReturn value.
139 #define GST_STATE_RETURN(elem) (GST_ELEMENT_CAST(elem)->last_return)
141 #define __GST_SIGN(val) ((val) < 0 ? -1 : ((val) > 0 ? 1 : 0))
143 * GST_STATE_GET_NEXT:
144 * @cur: A starting #GstState
145 * @pending: A target #GstState
147 * Given a current state @cur and a target state @pending, calculate the next (intermediate)
150 #define GST_STATE_GET_NEXT(cur,pending) ((GstState)((cur) + __GST_SIGN ((gint)(pending) - (gint)(cur))))
152 * GST_STATE_TRANSITION:
153 * @cur: A current state
154 * @next: A next state
156 * Given a current state @cur and a next state @next, calculate the associated
157 * #GstStateChange transition.
159 #define GST_STATE_TRANSITION(cur,next) ((GstStateChange)(((cur)<<3)|(next)))
161 * GST_STATE_TRANSITION_CURRENT:
162 * @trans: A #GstStateChange
164 * Given a state transition @trans, extract the current #GstState.
166 #define GST_STATE_TRANSITION_CURRENT(trans) ((GstState)((trans)>>3))
168 * GST_STATE_TRANSITION_NEXT:
169 * @trans: A #GstStateChange
171 * Given a state transition @trans, extract the next #GstState.
173 #define GST_STATE_TRANSITION_NEXT(trans) ((GstState)((trans)&0x7))
177 * @GST_STATE_CHANGE_NULL_TO_READY : state change from NULL to READY.
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
185 * The element opens the device (in case feature need to be probed).
188 * @GST_STATE_CHANGE_READY_TO_PAUSED : state change from READY to PAUSED.
191 * The element pads are activated in order to receive data in PAUSED.
192 * Streaming threads are started.
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.
202 * A pipeline resets the running_time to 0.
205 * Live sources return %GST_STATE_CHANGE_NO_PREROLL and don't generate data.
208 * @GST_STATE_CHANGE_PAUSED_TO_PLAYING: state change from PAUSED to PLAYING.
211 * Most elements ignore this state change.
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.
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
224 * Sink elements stop blocking on the preroll buffer or event and start
225 * rendering the data.
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.
232 * While streaming in PAUSED or PLAYING elements can create and remove
236 * Live sources start generating data and return %GST_STATE_CHANGE_SUCCESS.
239 * @GST_STATE_CHANGE_PLAYING_TO_PAUSED: state change from PLAYING to PAUSED.
242 * Most elements ignore this state change.
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.
250 * Sinks unblock any #GstClock wait calls.
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.
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.
263 * Live sources stop generating data and return %GST_STATE_CHANGE_NO_PREROLL.
266 * @GST_STATE_CHANGE_PAUSED_TO_READY : state change from PAUSED to READY.
269 * Sinks unblock any waits in the preroll.
272 * Elements unblock any waits on devices
275 * Chain or get_range functions return %GST_FLOW_FLUSHING.
278 * The element pads are deactivated so that streaming becomes impossible and
279 * all streaming threads are stopped.
282 * The sink forgets all negotiated formats
285 * Elements remove all sometimes pads
288 * @GST_STATE_CHANGE_READY_TO_NULL : state change from READY to NULL.
291 * Elements close devices
294 * Elements reset any internal state.
298 * These are the different state changes an element goes through.
299 * %GST_STATE_NULL ⇒ %GST_STATE_PLAYING is called an upwards state change
300 * and %GST_STATE_PLAYING ⇒ %GST_STATE_NULL a downwards state change.
302 typedef enum /*< flags=0 >*/
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
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
322 * The standard flags that an element may have.
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),
333 GST_ELEMENT_FLAG_LAST = (GST_OBJECT_FLAG_LAST << 10)
337 * GST_ELEMENT_IS_LOCKED_STATE:
338 * @elem: A #GstElement to query
340 * Check if the element is in the locked state and therefore will ignore state
341 * changes from its parent object.
343 #define GST_ELEMENT_IS_LOCKED_STATE(elem) (GST_OBJECT_FLAG_IS_SET(elem,GST_ELEMENT_FLAG_LOCKED_STATE))
347 * @elem: A #GstElement to query
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.
353 #define GST_ELEMENT_NAME(elem) (GST_OBJECT_NAME(elem))
356 * GST_ELEMENT_PARENT:
357 * @elem: A #GstElement to query
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.
363 #define GST_ELEMENT_PARENT(elem) (GST_ELEMENT_CAST(GST_OBJECT_PARENT(elem)))
367 * @elem: A #GstElement to query
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.
373 #define GST_ELEMENT_BUS(elem) (GST_ELEMENT_CAST(elem)->bus)
377 * @elem: A #GstElement to query
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.
383 #define GST_ELEMENT_CLOCK(elem) (GST_ELEMENT_CAST(elem)->clock)
387 * @elem: A #GstElement to query
389 * Get the pads of this elements.
391 #define GST_ELEMENT_PADS(elem) (GST_ELEMENT_CAST(elem)->pads)
394 * GST_ELEMENT_START_TIME:
395 * @elem: a #GstElement to return the start time for.
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.
400 #define GST_ELEMENT_START_TIME(elem) (GST_ELEMENT_CAST(elem)->start_time)
402 GstStructure *gst_make_element_message_details (const char *name, ...);
403 #define GST_ELEMENT_MESSAGE_MAKE_DETAILS(args) gst_make_element_message_details args
406 * GST_ELEMENT_FLOW_ERROR:
407 * @el: the element that generates the error
408 * @flow_return: the GstFlowReturn leading to that ERROR message
410 * Utility function that elements can use in case they encountered a fatal
411 * data processing error due to wrong flow processing.
415 #define GST_ELEMENT_FLOW_ERROR(el,flow_return) \
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));\
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
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.
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.
442 #define GST_ELEMENT_ERROR_WITH_DETAILS(el,domain,code,text,debug,args) \
444 gchar *__txt = _gst_element_error_printf text; \
445 gchar *__dbg = _gst_element_error_printf debug; \
447 GST_WARNING_OBJECT (el, "error: %s", __txt); \
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)); \
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
463 * @debug: debugging information for the message (format string and args
464 enclosed in parentheses)
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.
470 #define GST_ELEMENT_ERROR(el,domain,code,text,debug) \
472 gchar *__txt = _gst_element_error_printf text; \
473 gchar *__dbg = _gst_element_error_printf debug; \
475 GST_WARNING_OBJECT (el, "error: %s", __txt); \
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__); \
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
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.
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.
503 #define GST_ELEMENT_WARNING_WITH_DETAILS(el, domain, code, text, debug, args)\
505 gchar *__txt = _gst_element_error_printf text; \
506 gchar *__dbg = _gst_element_error_printf debug; \
508 GST_WARNING_OBJECT (el, "warning: %s", __txt); \
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)); \
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
524 * @debug: debugging information for the message (format string and args
525 enclosed in parentheses)
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.
531 #define GST_ELEMENT_WARNING(el, domain, code, text, debug) \
533 gchar *__txt = _gst_element_error_printf text; \
534 gchar *__dbg = _gst_element_error_printf debug; \
536 GST_WARNING_OBJECT (el, "warning: %s", __txt); \
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__); \
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
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.
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.
567 #define GST_ELEMENT_INFO_WITH_DETAILS(el, domain, code, text, debug, args) \
569 gchar *__txt = _gst_element_error_printf text; \
570 gchar *__dbg = _gst_element_error_printf debug; \
572 GST_INFO_OBJECT (el, "info: %s", __txt); \
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)); \
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
588 * @debug: debugging information for the message (format string and args
589 enclosed in parentheses)
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.
596 #define GST_ELEMENT_INFO(el, domain, code, text, debug) \
598 gchar *__txt = _gst_element_error_printf text; \
599 gchar *__dbg = _gst_element_error_printf debug; \
601 GST_INFO_OBJECT (el, "info: %s", __txt); \
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__); \
610 /* the state change mutexes and conds */
612 * GST_STATE_GET_LOCK:
613 * @elem: a #GstElement
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.
619 #define GST_STATE_GET_LOCK(elem) (&(GST_ELEMENT_CAST(elem)->state_lock))
621 * GST_STATE_GET_COND:
622 * @elem: a #GstElement
624 * Get the conditional used to signal the completion of a state change.
626 #define GST_STATE_GET_COND(elem) (&GST_ELEMENT_CAST(elem)->state_cond)
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));
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 * @contexts: (element-type Gst.Context): list of contexts
668 * GStreamer element abstract base class.
674 /*< public >*/ /* with LOCK */
675 GRecMutex state_lock;
679 guint32 state_cookie;
680 GstState target_state;
681 GstState current_state;
683 GstState pending_state;
684 GstStateChangeReturn last_return;
688 /* allocated clock */
690 GstClockTimeDiff base_time; /* NULL/READY: 0 - PAUSED: current time - PLAYING: difference to clock */
691 GstClockTime start_time;
693 /* element pads, these lists can only be iterated while holding
694 * the LOCK or checking the cookie after each LOCK. */
703 /* with object LOCK */
707 gpointer _gst_reserved[GST_PADDING-1];
712 * @parent_class: the parent class structure
713 * @metadata: metadata for elements of this class
714 * @elementfactory: the #GstElementFactory that creates these elements
715 * @padtemplates: a #GList of #GstPadTemplate
716 * @numpadtemplates: the number of padtemplates
717 * @pad_templ_cookie: changed whenever the padtemplates change
718 * @request_new_pad: called when a new pad is requested
719 * @release_pad: called when a request pad is to be released
720 * @get_state: get the state of the element
721 * @set_state: set a new state on the element
722 * @change_state: called by @set_state to perform an incremental state change
723 * @set_bus: set a #GstBus on the element
724 * @provide_clock: gets the #GstClock provided by the element
725 * @set_clock: set the #GstClock on the element
726 * @send_event: send a #GstEvent to the element
727 * @query: perform a #GstQuery on the element
728 * @state_changed: called immediately after a new state was set.
729 * @post_message: called when a message is posted on the element. Chain up to
730 * the parent class' handler to have it posted on the bus.
731 * @set_context: set a #GstContext on the element
733 * GStreamer element class. Override the vmethods to implement the element
736 struct _GstElementClass
738 GstObjectClass parent_class;
741 /* the element metadata */
744 /* factory that the element was created from */
745 GstElementFactory *elementfactory;
747 /* templates for our pads */
749 gint numpadtemplates;
750 guint32 pad_templ_cookie;
753 /* signal callbacks */
754 void (*pad_added) (GstElement *element, GstPad *pad);
755 void (*pad_removed) (GstElement *element, GstPad *pad);
756 void (*no_more_pads) (GstElement *element);
759 /* virtual methods for subclasses */
761 /* request/release pads */
762 /* FIXME 2.0 harmonize naming with gst_element_request_pad */
763 GstPad* (*request_new_pad) (GstElement *element, GstPadTemplate *templ,
764 const gchar* name, const GstCaps *caps);
766 void (*release_pad) (GstElement *element, GstPad *pad);
769 GstStateChangeReturn (*get_state) (GstElement * element, GstState * state,
770 GstState * pending, GstClockTime timeout);
771 GstStateChangeReturn (*set_state) (GstElement *element, GstState state);
772 GstStateChangeReturn (*change_state) (GstElement *element, GstStateChange transition);
773 void (*state_changed) (GstElement *element, GstState oldstate,
774 GstState newstate, GstState pending);
777 void (*set_bus) (GstElement * element, GstBus * bus);
780 GstClock* (*provide_clock) (GstElement *element);
781 gboolean (*set_clock) (GstElement *element, GstClock *clock);
783 /* query functions */
784 gboolean (*send_event) (GstElement *element, GstEvent *event);
786 gboolean (*query) (GstElement *element, GstQuery *query);
788 gboolean (*post_message) (GstElement *element, GstMessage *message);
790 void (*set_context) (GstElement *element, GstContext *context);
793 gpointer _gst_reserved[GST_PADDING_LARGE-2];
796 /* element class pad templates */
797 void gst_element_class_add_pad_template (GstElementClass *klass, GstPadTemplate *templ);
799 void gst_element_class_add_static_pad_template (GstElementClass *klass, GstStaticPadTemplate *static_templ);
801 GstPadTemplate* gst_element_class_get_pad_template (GstElementClass *element_class, const gchar *name);
802 GList* gst_element_class_get_pad_template_list (GstElementClass *element_class);
804 /* element class meta data */
805 void gst_element_class_set_metadata (GstElementClass *klass,
806 const gchar *longname,
807 const gchar *classification,
808 const gchar *description,
809 const gchar *author);
810 void gst_element_class_set_static_metadata (GstElementClass *klass,
811 const gchar *longname,
812 const gchar *classification,
813 const gchar *description,
814 const gchar *author);
815 void gst_element_class_add_metadata (GstElementClass * klass,
816 const gchar * key, const gchar * value);
817 void gst_element_class_add_static_metadata (GstElementClass * klass,
818 const gchar * key, const gchar * value);
819 const gchar * gst_element_class_get_metadata (GstElementClass * klass,
823 /* element instance */
824 GType gst_element_get_type (void);
826 /* basic name and parentage stuff from GstObject */
829 * gst_element_get_name:
830 * @elem: a #GstElement to get the name of @elem.
832 * Returns a copy of the name of @elem.
833 * Caller should g_free() the return value after usage.
834 * For a nameless element, this returns %NULL, which you can safely g_free()
837 * Returns: (transfer full) (nullable): the name of @elem. g_free()
838 * after usage. MT safe.
841 #define gst_element_get_name(elem) gst_object_get_name(GST_OBJECT_CAST(elem))
844 * gst_element_set_name:
845 * @elem: a #GstElement to set the name of.
846 * @name: the new name
848 * Sets the name of the element, getting rid of the old name if there was one.
850 #define gst_element_set_name(elem,name) gst_object_set_name(GST_OBJECT_CAST(elem),name)
853 * gst_element_get_parent:
854 * @elem: a #GstElement to get the parent of.
856 * Get the parent of an element.
858 * Returns: (transfer full): the parent of an element.
860 #define gst_element_get_parent(elem) gst_object_get_parent(GST_OBJECT_CAST(elem))
863 * gst_element_set_parent:
864 * @elem: a #GstElement to set the parent of.
865 * @parent: the new parent #GstObject of the element.
867 * Sets the parent of an element.
869 #define gst_element_set_parent(elem,parent) gst_object_set_parent(GST_OBJECT_CAST(elem),parent)
872 GstClock* gst_element_provide_clock (GstElement *element);
873 GstClock* gst_element_get_clock (GstElement *element);
874 gboolean gst_element_set_clock (GstElement *element, GstClock *clock);
875 void gst_element_set_base_time (GstElement *element, GstClockTime time);
876 GstClockTime gst_element_get_base_time (GstElement *element);
877 void gst_element_set_start_time (GstElement *element, GstClockTime time);
878 GstClockTime gst_element_get_start_time (GstElement *element);
881 void gst_element_set_bus (GstElement * element, GstBus * bus);
882 GstBus * gst_element_get_bus (GstElement * element);
885 void gst_element_set_context (GstElement * element, GstContext * context);
886 GList * gst_element_get_contexts (GstElement * element);
887 GstContext * gst_element_get_context (GstElement * element, const gchar * context_type);
888 GstContext * gst_element_get_context_unlocked (GstElement * element, const gchar * context_type);
891 gboolean gst_element_add_pad (GstElement *element, GstPad *pad);
892 gboolean gst_element_remove_pad (GstElement *element, GstPad *pad);
893 void gst_element_no_more_pads (GstElement *element);
895 GstPad* gst_element_get_static_pad (GstElement *element, const gchar *name);
896 GstPad* gst_element_get_request_pad (GstElement *element, const gchar *name);
897 GstPad* gst_element_request_pad (GstElement *element, GstPadTemplate *templ,
898 const gchar * name, const GstCaps *caps);
899 void gst_element_release_request_pad (GstElement *element, GstPad *pad);
901 GstIterator * gst_element_iterate_pads (GstElement * element);
902 GstIterator * gst_element_iterate_src_pads (GstElement * element);
903 GstIterator * gst_element_iterate_sink_pads (GstElement * element);
905 /* event/query/format stuff */
906 gboolean gst_element_send_event (GstElement *element, GstEvent *event);
907 gboolean gst_element_seek (GstElement *element, gdouble rate,
908 GstFormat format, GstSeekFlags flags,
909 GstSeekType start_type, gint64 start,
910 GstSeekType stop_type, gint64 stop);
911 gboolean gst_element_query (GstElement *element, GstQuery *query);
914 gboolean gst_element_post_message (GstElement * element, GstMessage * message);
917 /* gcc versions < 3.3 warn about NULL being passed as format to printf */
918 #if (!defined(__GNUC__) || (__GNUC__ < 3) || (__GNUC__ == 3 && __GNUC_MINOR__ < 3))
919 gchar * _gst_element_error_printf (const gchar *format, ...);
921 gchar * _gst_element_error_printf (const gchar *format, ...) G_GNUC_PRINTF (1, 2);
923 void gst_element_message_full (GstElement * element, GstMessageType type,
924 GQuark domain, gint code, gchar * text,
925 gchar * debug, const gchar * file,
926 const gchar * function, gint line);
928 void gst_element_message_full_with_details (GstElement * element, GstMessageType type,
929 GQuark domain, gint code, gchar * text,
930 gchar * debug, const gchar * file,
931 const gchar * function, gint line,
932 GstStructure * structure);
934 /* state management */
935 gboolean gst_element_is_locked_state (GstElement *element);
936 gboolean gst_element_set_locked_state (GstElement *element, gboolean locked_state);
937 gboolean gst_element_sync_state_with_parent (GstElement *element);
939 GstStateChangeReturn gst_element_get_state (GstElement * element,
942 GstClockTime timeout);
943 GstStateChangeReturn gst_element_set_state (GstElement *element, GstState state);
945 void gst_element_abort_state (GstElement * element);
946 GstStateChangeReturn gst_element_change_state (GstElement * element,
947 GstStateChange transition);
948 GstStateChangeReturn gst_element_continue_state (GstElement * element,
949 GstStateChangeReturn ret);
950 void gst_element_lost_state (GstElement * element);
952 typedef void (*GstElementCallAsyncFunc) (GstElement * element,
955 void gst_element_call_async (GstElement * element,
956 GstElementCallAsyncFunc func, gpointer user_data,
957 GDestroyNotify destroy_notify);
959 /* factory management */
960 GstElementFactory* gst_element_get_factory (GstElement *element);
962 /* utility functions */
963 gulong gst_element_add_property_notify_watch (GstElement * element,
964 const gchar * property_name,
965 gboolean include_value);
967 gulong gst_element_add_property_deep_notify_watch (GstElement * element,
968 const gchar * property_name,
969 gboolean include_value);
971 void gst_element_remove_property_notify_watch (GstElement * element,
974 #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
975 G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstElement, gst_object_unref)
980 #endif /* __GST_ELEMENT_H__ */