2000-12-28 22:12:02 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
gst/: More MT safety fixes following the desing doc.
Original commit message from CVS:
* gst/gst_private.h:
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_index),
(gst_bin_set_clock), (gst_bin_get_clock),
(gst_bin_iterate_elements), (gst_bin_get_by_name),
(gst_bin_get_by_name_recurse_up), (gst_bin_get_by_interface),
(gst_bin_get_all_by_interface):
* gst/gstbin.h:
* gst/gstelement.c: (gst_element_add_pad),
(gst_element_remove_pad), (gst_element_request_pad),
(gst_element_post_message), (gst_element_error_full),
(gst_element_is_locked_state), (gst_element_set_locked_state),
(gst_element_create_task):
* gst/gstelement.h:
* gst/gstinfo.h:
* gst/gstiterator.h:
* gst/gstobject.c: (gst_object_init), (gst_object_ref),
(gst_object_unref), (gst_object_sink), (gst_object_dispose),
(gst_object_finalize), (gst_object_dispatch_properties_changed),
(gst_object_set_name), (gst_object_get_name),
(gst_object_set_parent), (gst_object_get_parent),
(gst_object_unparent), (gst_object_check_uniqueness),
(gst_object_save_thyself), (gst_object_restore_thyself),
(gst_object_real_restore_thyself), (gst_object_set_property),
(gst_object_get_property), (gst_object_get_path_string):
* gst/gstobject.h:
* gst/gstpad.c: (gst_pad_get_direction), (gst_pad_unlink),
(gst_pad_is_linked), (gst_pad_link_filtered),
(gst_pad_relink_filtered), (gst_pad_get_peer), (gst_pad_push),
(gst_pad_pull), (gst_pad_pull_range):
* gst/gstpad.h:
More MT safety fixes following the desing doc.
2004-12-09 21:08:13 +00:00
|
|
|
* 2004 Wim Taymans <wim@fluendo.com>
|
2000-12-28 22:12:02 +00:00
|
|
|
*
|
|
|
|
* gstelement.h: Header for GstElement
|
2000-01-30 09:03:00 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GST_ELEMENT_H__
|
|
|
|
#define __GST_ELEMENT_H__
|
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
#include <gst/gstconfig.h>
|
2001-12-18 19:03:07 +00:00
|
|
|
#include <gst/gsttypes.h>
|
2000-01-30 09:03:00 +00:00
|
|
|
#include <gst/gstobject.h>
|
|
|
|
#include <gst/gstpad.h>
|
2002-02-03 20:07:09 +00:00
|
|
|
#include <gst/gstclock.h>
|
2003-10-31 19:32:47 +00:00
|
|
|
#include <gst/gstplugin.h>
|
2001-08-21 20:16:48 +00:00
|
|
|
#include <gst/gstpluginfeature.h>
|
2002-12-12 22:14:36 +00:00
|
|
|
#include <gst/gstindex.h>
|
2004-12-08 17:40:37 +00:00
|
|
|
#include <gst/gstiterator.h>
|
2004-12-13 14:49:11 +00:00
|
|
|
#include <gst/gstmessage.h>
|
2003-11-24 02:09:23 +00:00
|
|
|
#include <gst/gsttag.h>
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-12-13 14:49:11 +00:00
|
|
|
G_BEGIN_DECLS typedef struct _GstElementDetails GstElementDetails;
|
2003-10-31 19:32:47 +00:00
|
|
|
|
|
|
|
/* FIXME: need translatable stuff in here (how handle in registry)? */
|
2004-12-13 14:49:11 +00:00
|
|
|
struct _GstElementDetails
|
|
|
|
{
|
|
|
|
/*< public > */
|
2004-03-15 14:43:35 +00:00
|
|
|
gchar *longname; /* long, english name */
|
|
|
|
gchar *klass; /* type of element, as hierarchy */
|
|
|
|
gchar *description; /* insights of one form or another */
|
|
|
|
gchar *author; /* who wrote this thing? */
|
2003-10-31 19:32:47 +00:00
|
|
|
|
2004-12-13 14:49:11 +00:00
|
|
|
/*< private > */
|
2003-12-09 02:39:31 +00:00
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
2003-10-31 19:32:47 +00:00
|
|
|
};
|
2004-12-13 14:49:11 +00:00
|
|
|
|
gst/: More MT safety fixes following the desing doc.
Original commit message from CVS:
* gst/gst_private.h:
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_index),
(gst_bin_set_clock), (gst_bin_get_clock),
(gst_bin_iterate_elements), (gst_bin_get_by_name),
(gst_bin_get_by_name_recurse_up), (gst_bin_get_by_interface),
(gst_bin_get_all_by_interface):
* gst/gstbin.h:
* gst/gstelement.c: (gst_element_add_pad),
(gst_element_remove_pad), (gst_element_request_pad),
(gst_element_post_message), (gst_element_error_full),
(gst_element_is_locked_state), (gst_element_set_locked_state),
(gst_element_create_task):
* gst/gstelement.h:
* gst/gstinfo.h:
* gst/gstiterator.h:
* gst/gstobject.c: (gst_object_init), (gst_object_ref),
(gst_object_unref), (gst_object_sink), (gst_object_dispose),
(gst_object_finalize), (gst_object_dispatch_properties_changed),
(gst_object_set_name), (gst_object_get_name),
(gst_object_set_parent), (gst_object_get_parent),
(gst_object_unparent), (gst_object_check_uniqueness),
(gst_object_save_thyself), (gst_object_restore_thyself),
(gst_object_real_restore_thyself), (gst_object_set_property),
(gst_object_get_property), (gst_object_get_path_string):
* gst/gstobject.h:
* gst/gstpad.c: (gst_pad_get_direction), (gst_pad_unlink),
(gst_pad_is_linked), (gst_pad_link_filtered),
(gst_pad_relink_filtered), (gst_pad_get_peer), (gst_pad_push),
(gst_pad_pull), (gst_pad_pull_range):
* gst/gstpad.h:
More MT safety fixes following the desing doc.
2004-12-09 21:08:13 +00:00
|
|
|
#define GST_ELEMENT_DETAILS(longname,klass,description,author) \
|
2003-12-09 02:39:31 +00:00
|
|
|
{ longname, klass, description, author, GST_PADDING_INIT }
|
2003-10-31 19:32:47 +00:00
|
|
|
#define GST_IS_ELEMENT_DETAILS(details) ( \
|
|
|
|
(details) && ((details)->longname != NULL) && ((details)->klass != NULL) \
|
|
|
|
&& ((details)->description != NULL) && ((details)->author != NULL))
|
|
|
|
|
2001-12-04 22:12:50 +00:00
|
|
|
#define GST_NUM_STATES 4
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-12-15 18:15:13 +00:00
|
|
|
/* NOTE: this probably should be done with an #ifdef to decide
|
|
|
|
* whether to safe-cast or to just do the non-checking cast.
|
|
|
|
*/
|
2000-07-17 17:14:15 +00:00
|
|
|
#define GST_STATE(obj) (GST_ELEMENT(obj)->current_state)
|
|
|
|
#define GST_STATE_PENDING(obj) (GST_ELEMENT(obj)->pending_state)
|
gst/: Patch state changes according to design document.
Original commit message from CVS:
* gst/gstbin.c: (gst_bin_set_index), (gst_bin_set_clock),
(gst_bin_set_bus), (gst_bin_set_scheduler), (gst_bin_add_func),
(gst_bin_iterate_elements), (gst_bin_get_state),
(gst_bin_change_state), (gst_bin_get_by_name_recurse_up):
* gst/gstelement.c: (gst_element_add_pad),
(gst_element_remove_pad), (gst_element_get_state_func),
(gst_element_get_state), (gst_element_abort_state),
(gst_element_set_state), (gst_element_pads_activate):
* gst/gstelement.h:
Patch state changes according to design document.
2005-01-12 18:54:42 +00:00
|
|
|
#define GST_STATE_ERROR(obj) (GST_ELEMENT(obj)->state_error)
|
2000-07-17 17:14:15 +00:00
|
|
|
|
2001-12-15 18:15:13 +00:00
|
|
|
/* Note: using 8 bit shift mostly "just because", it leaves us enough room to grow <g> */
|
2001-01-14 21:55:41 +00:00
|
|
|
#define GST_STATE_TRANSITION(obj) ((GST_STATE(obj)<<8) | GST_STATE_PENDING(obj))
|
2001-01-23 20:03:07 +00:00
|
|
|
#define GST_STATE_NULL_TO_READY ((GST_STATE_NULL<<8) | GST_STATE_READY)
|
2001-05-25 21:00:07 +00:00
|
|
|
#define GST_STATE_READY_TO_PAUSED ((GST_STATE_READY<<8) | GST_STATE_PAUSED)
|
2001-01-14 21:55:41 +00:00
|
|
|
#define GST_STATE_PAUSED_TO_PLAYING ((GST_STATE_PAUSED<<8) | GST_STATE_PLAYING)
|
2001-05-25 21:00:07 +00:00
|
|
|
#define GST_STATE_PLAYING_TO_PAUSED ((GST_STATE_PLAYING<<8) | GST_STATE_PAUSED)
|
|
|
|
#define GST_STATE_PAUSED_TO_READY ((GST_STATE_PAUSED<<8) | GST_STATE_READY)
|
2001-01-14 21:55:41 +00:00
|
|
|
#define GST_STATE_READY_TO_NULL ((GST_STATE_READY<<8) | GST_STATE_NULL)
|
2000-12-23 03:17:52 +00:00
|
|
|
|
2004-06-13 10:04:12 +00:00
|
|
|
GST_EXPORT GType _gst_element_type;
|
2001-10-17 10:21:27 +00:00
|
|
|
|
|
|
|
#define GST_TYPE_ELEMENT (_gst_element_type)
|
|
|
|
#define GST_IS_ELEMENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_ELEMENT))
|
2002-12-19 21:31:03 +00:00
|
|
|
#define GST_IS_ELEMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_ELEMENT))
|
|
|
|
#define GST_ELEMENT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_ELEMENT, GstElementClass))
|
2003-12-13 16:58:29 +00:00
|
|
|
#define GST_ELEMENT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_ELEMENT, GstElement))
|
|
|
|
#define GST_ELEMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_ELEMENT, GstElementClass))
|
gst/: More MT safety fixes following the desing doc.
Original commit message from CVS:
* gst/gst_private.h:
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_index),
(gst_bin_set_clock), (gst_bin_get_clock),
(gst_bin_iterate_elements), (gst_bin_get_by_name),
(gst_bin_get_by_name_recurse_up), (gst_bin_get_by_interface),
(gst_bin_get_all_by_interface):
* gst/gstbin.h:
* gst/gstelement.c: (gst_element_add_pad),
(gst_element_remove_pad), (gst_element_request_pad),
(gst_element_post_message), (gst_element_error_full),
(gst_element_is_locked_state), (gst_element_set_locked_state),
(gst_element_create_task):
* gst/gstelement.h:
* gst/gstinfo.h:
* gst/gstiterator.h:
* gst/gstobject.c: (gst_object_init), (gst_object_ref),
(gst_object_unref), (gst_object_sink), (gst_object_dispose),
(gst_object_finalize), (gst_object_dispatch_properties_changed),
(gst_object_set_name), (gst_object_get_name),
(gst_object_set_parent), (gst_object_get_parent),
(gst_object_unparent), (gst_object_check_uniqueness),
(gst_object_save_thyself), (gst_object_restore_thyself),
(gst_object_real_restore_thyself), (gst_object_set_property),
(gst_object_get_property), (gst_object_get_path_string):
* gst/gstobject.h:
* gst/gstpad.c: (gst_pad_get_direction), (gst_pad_unlink),
(gst_pad_is_linked), (gst_pad_link_filtered),
(gst_pad_relink_filtered), (gst_pad_get_peer), (gst_pad_push),
(gst_pad_pull), (gst_pad_pull_range):
* gst/gstpad.h:
More MT safety fixes following the desing doc.
2004-12-09 21:08:13 +00:00
|
|
|
#define GST_ELEMENT_CAST(obj) ((GstElement*)(obj))
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-12-30 17:42:11 +00:00
|
|
|
/* convenience functions */
|
|
|
|
#ifdef G_HAVE_ISO_VARARGS
|
|
|
|
#define GST_ELEMENT_QUERY_TYPE_FUNCTION(functionname, ...) \
|
|
|
|
GST_QUERY_TYPE_FUNCTION (GstElement*, functionname, __VA_ARGS__);
|
|
|
|
#define GST_ELEMENT_FORMATS_FUNCTION(functionname, ...) \
|
|
|
|
GST_FORMATS_FUNCTION (GstElement*, functionname, __VA_ARGS__);
|
|
|
|
#define GST_ELEMENT_EVENT_MASK_FUNCTION(functionname, ...) \
|
|
|
|
GST_EVENT_MASK_FUNCTION (GstElement*, functionname, __VA_ARGS__);
|
|
|
|
#elif defined(G_HAVE_GNUC_VARARGS)
|
|
|
|
#define GST_ELEMENT_QUERY_TYPE_FUNCTION(functionname, a...) \
|
|
|
|
GST_QUERY_TYPE_FUNCTION (GstElement*, functionname, a);
|
|
|
|
#define GST_ELEMENT_FORMATS_FUNCTION(functionname, a...) \
|
|
|
|
GST_FORMATS_FUNCTION (GstElement*, functionname, a);
|
|
|
|
#define GST_ELEMENT_EVENT_MASK_FUNCTION(functionname, a...) \
|
|
|
|
GST_EVENT_MASK_FUNCTION (GstElement*, functionname, a);
|
|
|
|
#endif
|
|
|
|
|
2004-12-13 14:49:11 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2002-05-26 03:23:25 +00:00
|
|
|
/* private flags that can be used by the scheduler */
|
|
|
|
GST_ELEMENT_SCHEDULER_PRIVATE1,
|
|
|
|
GST_ELEMENT_SCHEDULER_PRIVATE2,
|
2001-11-14 21:07:33 +00:00
|
|
|
|
2003-03-25 19:39:18 +00:00
|
|
|
/* ignore state changes from parent */
|
|
|
|
GST_ELEMENT_LOCKED_STATE,
|
|
|
|
|
2000-12-15 01:57:34 +00:00
|
|
|
/* use some padding for future expansion */
|
2004-12-13 14:49:11 +00:00
|
|
|
GST_ELEMENT_FLAG_LAST = GST_OBJECT_FLAG_LAST + 16
|
2004-03-15 14:43:35 +00:00
|
|
|
} GstElementFlags;
|
2000-07-17 17:14:15 +00:00
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
#define GST_ELEMENT_NAME(obj) (GST_OBJECT_NAME(obj))
|
More MT fixes. Header cleanups, design doc update.
Original commit message from CVS:
* docs/design/part-MT-refcounting.txt:
* gst/gstbin.c: (gst_bin_set_index), (gst_bin_set_clock),
(gst_bin_add_func), (gst_bin_add), (gst_bin_remove_func),
(gst_bin_remove), (gst_bin_iterate_elements),
(bin_element_is_sink), (gst_bin_get_state), (gst_bin_change_state),
(gst_bin_get_by_name), (gst_bin_get_by_name_recurse_up),
(gst_bin_get_by_interface), (gst_bin_get_all_by_interface):
* gst/gstbin.h:
* gst/gstbuffer.h:
* gst/gstbus.h:
* gst/gstcaps.h:
* gst/gstclock.h:
* gst/gstdata.h:
* gst/gstelement.h:
* gst/gstevent.h:
* gst/gstmessage.h:
* gst/gststructure.h:
More MT fixes. Header cleanups, design doc update.
2004-12-09 23:28:31 +00:00
|
|
|
#define GST_ELEMENT_PARENT(obj) (GST_ELEMENT_CAST(GST_OBJECT_PARENT(obj)))
|
gst/: More MT safety fixes following the desing doc.
Original commit message from CVS:
* gst/gst_private.h:
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_index),
(gst_bin_set_clock), (gst_bin_get_clock),
(gst_bin_iterate_elements), (gst_bin_get_by_name),
(gst_bin_get_by_name_recurse_up), (gst_bin_get_by_interface),
(gst_bin_get_all_by_interface):
* gst/gstbin.h:
* gst/gstelement.c: (gst_element_add_pad),
(gst_element_remove_pad), (gst_element_request_pad),
(gst_element_post_message), (gst_element_error_full),
(gst_element_is_locked_state), (gst_element_set_locked_state),
(gst_element_create_task):
* gst/gstelement.h:
* gst/gstinfo.h:
* gst/gstiterator.h:
* gst/gstobject.c: (gst_object_init), (gst_object_ref),
(gst_object_unref), (gst_object_sink), (gst_object_dispose),
(gst_object_finalize), (gst_object_dispatch_properties_changed),
(gst_object_set_name), (gst_object_get_name),
(gst_object_set_parent), (gst_object_get_parent),
(gst_object_unparent), (gst_object_check_uniqueness),
(gst_object_save_thyself), (gst_object_restore_thyself),
(gst_object_real_restore_thyself), (gst_object_set_property),
(gst_object_get_property), (gst_object_get_path_string):
* gst/gstobject.h:
* gst/gstpad.c: (gst_pad_get_direction), (gst_pad_unlink),
(gst_pad_is_linked), (gst_pad_link_filtered),
(gst_pad_relink_filtered), (gst_pad_get_peer), (gst_pad_push),
(gst_pad_pull), (gst_pad_pull_range):
* gst/gstpad.h:
More MT safety fixes following the desing doc.
2004-12-09 21:08:13 +00:00
|
|
|
#define GST_ELEMENT_MANAGER(obj) (GST_ELEMENT_CAST(obj)->manager)
|
2004-12-13 14:49:11 +00:00
|
|
|
#define GST_ELEMENT_BUS(obj) (GST_ELEMENT_CAST(obj)->bus)
|
|
|
|
#define GST_ELEMENT_SCHEDULER(obj) (GST_ELEMENT_CAST(obj)->scheduler)
|
gst/: More MT safety fixes following the desing doc.
Original commit message from CVS:
* gst/gst_private.h:
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_index),
(gst_bin_set_clock), (gst_bin_get_clock),
(gst_bin_iterate_elements), (gst_bin_get_by_name),
(gst_bin_get_by_name_recurse_up), (gst_bin_get_by_interface),
(gst_bin_get_all_by_interface):
* gst/gstbin.h:
* gst/gstelement.c: (gst_element_add_pad),
(gst_element_remove_pad), (gst_element_request_pad),
(gst_element_post_message), (gst_element_error_full),
(gst_element_is_locked_state), (gst_element_set_locked_state),
(gst_element_create_task):
* gst/gstelement.h:
* gst/gstinfo.h:
* gst/gstiterator.h:
* gst/gstobject.c: (gst_object_init), (gst_object_ref),
(gst_object_unref), (gst_object_sink), (gst_object_dispose),
(gst_object_finalize), (gst_object_dispatch_properties_changed),
(gst_object_set_name), (gst_object_get_name),
(gst_object_set_parent), (gst_object_get_parent),
(gst_object_unparent), (gst_object_check_uniqueness),
(gst_object_save_thyself), (gst_object_restore_thyself),
(gst_object_real_restore_thyself), (gst_object_set_property),
(gst_object_get_property), (gst_object_get_path_string):
* gst/gstobject.h:
* gst/gstpad.c: (gst_pad_get_direction), (gst_pad_unlink),
(gst_pad_is_linked), (gst_pad_link_filtered),
(gst_pad_relink_filtered), (gst_pad_get_peer), (gst_pad_push),
(gst_pad_pull), (gst_pad_pull_range):
* gst/gstpad.h:
More MT safety fixes following the desing doc.
2004-12-09 21:08:13 +00:00
|
|
|
#define GST_ELEMENT_CLOCK(obj) (GST_ELEMENT_CAST(obj)->clock)
|
|
|
|
#define GST_ELEMENT_PADS(obj) (GST_ELEMENT_CAST(obj)->pads)
|
2000-07-17 17:14:15 +00:00
|
|
|
|
2004-12-13 14:49:11 +00:00
|
|
|
/* log a (fatal) error message and post it on the bus */
|
|
|
|
#define GST_ELEMENT_ERROR(el, domain, code, text, debug) \
|
|
|
|
G_STMT_START { \
|
|
|
|
gchar *__txt = _gst_element_error_printf text; \
|
|
|
|
gchar *__dbg = _gst_element_error_printf debug; \
|
|
|
|
if (__txt) \
|
|
|
|
GST_ERROR_OBJECT (el, "%s", __txt); \
|
|
|
|
if (__dbg) \
|
|
|
|
GST_ERROR_OBJECT (el, "%s", __dbg); \
|
|
|
|
gst_element_message_full (GST_ELEMENT(el), GST_MESSAGE_ERROR, \
|
|
|
|
GST_ ## domain ## _ERROR, GST_ ## domain ## _ERROR_ ## code, \
|
|
|
|
__txt, __dbg, __FILE__, GST_FUNCTION, __LINE__); \
|
|
|
|
} G_STMT_END
|
|
|
|
|
|
|
|
/* log a (non-fatal) warning message and post it on the bus */
|
|
|
|
#define GST_ELEMENT_WARNING(el, domain, code, text, debug) \
|
|
|
|
G_STMT_START { \
|
|
|
|
gchar *__txt = _gst_element_error_printf text; \
|
|
|
|
gchar *__dbg = _gst_element_error_printf debug; \
|
|
|
|
if (__txt) \
|
|
|
|
GST_WARNING_OBJECT (el, "%s", __txt); \
|
|
|
|
if (__dbg) \
|
|
|
|
GST_WARNING_OBJECT (el, "%s", __dbg); \
|
|
|
|
gst_element_message_full (GST_ELEMENT(el), GST_MESSAGE_WARNING, \
|
|
|
|
GST_ ## domain ## _ERROR, GST_ ## domain ## _ERROR_ ## code, \
|
|
|
|
__txt, __dbg, __FILE__, GST_FUNCTION, __LINE__); \
|
2004-01-30 03:54:08 +00:00
|
|
|
} G_STMT_END
|
2004-01-18 21:36:20 +00:00
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
/* the state change mutexes and conds */
|
gst/: More MT safety fixes following the desing doc.
Original commit message from CVS:
* gst/gst_private.h:
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_index),
(gst_bin_set_clock), (gst_bin_get_clock),
(gst_bin_iterate_elements), (gst_bin_get_by_name),
(gst_bin_get_by_name_recurse_up), (gst_bin_get_by_interface),
(gst_bin_get_all_by_interface):
* gst/gstbin.h:
* gst/gstelement.c: (gst_element_add_pad),
(gst_element_remove_pad), (gst_element_request_pad),
(gst_element_post_message), (gst_element_error_full),
(gst_element_is_locked_state), (gst_element_set_locked_state),
(gst_element_create_task):
* gst/gstelement.h:
* gst/gstinfo.h:
* gst/gstiterator.h:
* gst/gstobject.c: (gst_object_init), (gst_object_ref),
(gst_object_unref), (gst_object_sink), (gst_object_dispose),
(gst_object_finalize), (gst_object_dispatch_properties_changed),
(gst_object_set_name), (gst_object_get_name),
(gst_object_set_parent), (gst_object_get_parent),
(gst_object_unparent), (gst_object_check_uniqueness),
(gst_object_save_thyself), (gst_object_restore_thyself),
(gst_object_real_restore_thyself), (gst_object_set_property),
(gst_object_get_property), (gst_object_get_path_string):
* gst/gstobject.h:
* gst/gstpad.c: (gst_pad_get_direction), (gst_pad_unlink),
(gst_pad_is_linked), (gst_pad_link_filtered),
(gst_pad_relink_filtered), (gst_pad_get_peer), (gst_pad_push),
(gst_pad_pull), (gst_pad_pull_range):
* gst/gstpad.h:
More MT safety fixes following the desing doc.
2004-12-09 21:08:13 +00:00
|
|
|
#define GST_STATE_GET_LOCK(elem) (GST_ELEMENT_CAST(elem)->state_lock)
|
2004-12-08 17:40:37 +00:00
|
|
|
#define GST_STATE_LOCK(elem) g_mutex_lock(GST_STATE_GET_LOCK(elem))
|
|
|
|
#define GST_STATE_TRYLOCK(elem) g_mutex_trylock(GST_STATE_GET_LOCK(elem))
|
|
|
|
#define GST_STATE_UNLOCK(elem) g_mutex_unlock(GST_STATE_GET_LOCK(elem))
|
gst/: More MT safety fixes following the desing doc.
Original commit message from CVS:
* gst/gst_private.h:
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_index),
(gst_bin_set_clock), (gst_bin_get_clock),
(gst_bin_iterate_elements), (gst_bin_get_by_name),
(gst_bin_get_by_name_recurse_up), (gst_bin_get_by_interface),
(gst_bin_get_all_by_interface):
* gst/gstbin.h:
* gst/gstelement.c: (gst_element_add_pad),
(gst_element_remove_pad), (gst_element_request_pad),
(gst_element_post_message), (gst_element_error_full),
(gst_element_is_locked_state), (gst_element_set_locked_state),
(gst_element_create_task):
* gst/gstelement.h:
* gst/gstinfo.h:
* gst/gstiterator.h:
* gst/gstobject.c: (gst_object_init), (gst_object_ref),
(gst_object_unref), (gst_object_sink), (gst_object_dispose),
(gst_object_finalize), (gst_object_dispatch_properties_changed),
(gst_object_set_name), (gst_object_get_name),
(gst_object_set_parent), (gst_object_get_parent),
(gst_object_unparent), (gst_object_check_uniqueness),
(gst_object_save_thyself), (gst_object_restore_thyself),
(gst_object_real_restore_thyself), (gst_object_set_property),
(gst_object_get_property), (gst_object_get_path_string):
* gst/gstobject.h:
* gst/gstpad.c: (gst_pad_get_direction), (gst_pad_unlink),
(gst_pad_is_linked), (gst_pad_link_filtered),
(gst_pad_relink_filtered), (gst_pad_get_peer), (gst_pad_push),
(gst_pad_pull), (gst_pad_pull_range):
* gst/gstpad.h:
More MT safety fixes following the desing doc.
2004-12-09 21:08:13 +00:00
|
|
|
#define GST_STATE_GET_COND(elem) (GST_ELEMENT_CAST(elem)->state_cond)
|
2004-12-08 17:40:37 +00:00
|
|
|
#define GST_STATE_WAIT(elem) g_cond_wait (GST_STATE_GET_COND (elem), GST_STATE_GET_LOCK (elem))
|
|
|
|
#define GST_STATE_TIMED_WAIT(elem, timeval) g_cond_timed_wait (GST_STATE_GET_COND (elem), GST_STATE_GET_LOCK (elem),\
|
2004-12-13 14:49:11 +00:00
|
|
|
timeval)
|
2005-01-06 18:17:12 +00:00
|
|
|
#define GST_STATE_SIGNAL(elem) g_cond_signal (GST_STATE_GET_COND (elem));
|
|
|
|
#define GST_STATE_BROADCAST(elem) g_cond_broadcast (GST_STATE_GET_COND (elem));
|
2004-12-08 17:40:37 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
typedef struct _GstElementFactory GstElementFactory;
|
2001-08-21 20:16:48 +00:00
|
|
|
typedef struct _GstElementFactoryClass GstElementFactoryClass;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-12-13 14:49:11 +00:00
|
|
|
struct _GstElement
|
|
|
|
{
|
|
|
|
GstObject object;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-12-13 14:49:11 +00:00
|
|
|
/*< public > *//* with STATE_LOCK */
|
2004-12-08 17:40:37 +00:00
|
|
|
/* element state */
|
gst/: Patch state changes according to design document.
Original commit message from CVS:
* gst/gstbin.c: (gst_bin_set_index), (gst_bin_set_clock),
(gst_bin_set_bus), (gst_bin_set_scheduler), (gst_bin_add_func),
(gst_bin_iterate_elements), (gst_bin_get_state),
(gst_bin_change_state), (gst_bin_get_by_name_recurse_up):
* gst/gstelement.c: (gst_element_add_pad),
(gst_element_remove_pad), (gst_element_get_state_func),
(gst_element_get_state), (gst_element_abort_state),
(gst_element_set_state), (gst_element_pads_activate):
* gst/gstelement.h:
Patch state changes according to design document.
2005-01-12 18:54:42 +00:00
|
|
|
GMutex *state_lock;
|
|
|
|
GCond *state_cond;
|
|
|
|
guint8 current_state;
|
|
|
|
guint8 pending_state;
|
|
|
|
gboolean state_error; /* flag is set when the element has an error in the last state
|
|
|
|
change. it is cleared when doing another state change. */
|
2001-12-22 21:18:17 +00:00
|
|
|
|
2004-12-13 14:49:11 +00:00
|
|
|
/*< public > *//* with LOCK */
|
2004-12-08 17:40:37 +00:00
|
|
|
/* element manager */
|
gst/: Patch state changes according to design document.
Original commit message from CVS:
* gst/gstbin.c: (gst_bin_set_index), (gst_bin_set_clock),
(gst_bin_set_bus), (gst_bin_set_scheduler), (gst_bin_add_func),
(gst_bin_iterate_elements), (gst_bin_get_state),
(gst_bin_change_state), (gst_bin_get_by_name_recurse_up):
* gst/gstelement.c: (gst_element_add_pad),
(gst_element_remove_pad), (gst_element_get_state_func),
(gst_element_get_state), (gst_element_abort_state),
(gst_element_set_state), (gst_element_pads_activate):
* gst/gstelement.h:
Patch state changes according to design document.
2005-01-12 18:54:42 +00:00
|
|
|
GstPipeline *manager;
|
|
|
|
GstBus *bus;
|
2004-12-13 14:49:11 +00:00
|
|
|
GstScheduler *scheduler;
|
2004-12-08 17:40:37 +00:00
|
|
|
/* private pointer for the scheduler */
|
gst/: Patch state changes according to design document.
Original commit message from CVS:
* gst/gstbin.c: (gst_bin_set_index), (gst_bin_set_clock),
(gst_bin_set_bus), (gst_bin_set_scheduler), (gst_bin_add_func),
(gst_bin_iterate_elements), (gst_bin_get_state),
(gst_bin_change_state), (gst_bin_get_by_name_recurse_up):
* gst/gstelement.c: (gst_element_add_pad),
(gst_element_remove_pad), (gst_element_get_state_func),
(gst_element_get_state), (gst_element_abort_state),
(gst_element_set_state), (gst_element_pads_activate):
* gst/gstelement.h:
Patch state changes according to design document.
2005-01-12 18:54:42 +00:00
|
|
|
gpointer sched_private;
|
2002-12-19 21:31:03 +00:00
|
|
|
|
|
|
|
/* allocated clock */
|
gst/: Patch state changes according to design document.
Original commit message from CVS:
* gst/gstbin.c: (gst_bin_set_index), (gst_bin_set_clock),
(gst_bin_set_bus), (gst_bin_set_scheduler), (gst_bin_add_func),
(gst_bin_iterate_elements), (gst_bin_get_state),
(gst_bin_change_state), (gst_bin_get_by_name_recurse_up):
* gst/gstelement.c: (gst_element_add_pad),
(gst_element_remove_pad), (gst_element_get_state_func),
(gst_element_get_state), (gst_element_abort_state),
(gst_element_set_state), (gst_element_pads_activate):
* gst/gstelement.h:
Patch state changes according to design document.
2005-01-12 18:54:42 +00:00
|
|
|
GstClock *clock;
|
|
|
|
GstClockTimeDiff base_time; /* NULL/READY: 0 - PAUSED: current time - PLAYING: difference to clock */
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
/* element pads, these lists can only be iterated while holding
|
gst/: More MT safety fixes following the desing doc.
Original commit message from CVS:
* gst/gst_private.h:
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_index),
(gst_bin_set_clock), (gst_bin_get_clock),
(gst_bin_iterate_elements), (gst_bin_get_by_name),
(gst_bin_get_by_name_recurse_up), (gst_bin_get_by_interface),
(gst_bin_get_all_by_interface):
* gst/gstbin.h:
* gst/gstelement.c: (gst_element_add_pad),
(gst_element_remove_pad), (gst_element_request_pad),
(gst_element_post_message), (gst_element_error_full),
(gst_element_is_locked_state), (gst_element_set_locked_state),
(gst_element_create_task):
* gst/gstelement.h:
* gst/gstinfo.h:
* gst/gstiterator.h:
* gst/gstobject.c: (gst_object_init), (gst_object_ref),
(gst_object_unref), (gst_object_sink), (gst_object_dispose),
(gst_object_finalize), (gst_object_dispatch_properties_changed),
(gst_object_set_name), (gst_object_get_name),
(gst_object_set_parent), (gst_object_get_parent),
(gst_object_unparent), (gst_object_check_uniqueness),
(gst_object_save_thyself), (gst_object_restore_thyself),
(gst_object_real_restore_thyself), (gst_object_set_property),
(gst_object_get_property), (gst_object_get_path_string):
* gst/gstobject.h:
* gst/gstpad.c: (gst_pad_get_direction), (gst_pad_unlink),
(gst_pad_is_linked), (gst_pad_link_filtered),
(gst_pad_relink_filtered), (gst_pad_get_peer), (gst_pad_push),
(gst_pad_pull), (gst_pad_pull_range):
* gst/gstpad.h:
More MT safety fixes following the desing doc.
2004-12-09 21:08:13 +00:00
|
|
|
* the LOCK or checking the cookie after each LOCK. */
|
gst/: Patch state changes according to design document.
Original commit message from CVS:
* gst/gstbin.c: (gst_bin_set_index), (gst_bin_set_clock),
(gst_bin_set_bus), (gst_bin_set_scheduler), (gst_bin_add_func),
(gst_bin_iterate_elements), (gst_bin_get_state),
(gst_bin_change_state), (gst_bin_get_by_name_recurse_up):
* gst/gstelement.c: (gst_element_add_pad),
(gst_element_remove_pad), (gst_element_get_state_func),
(gst_element_get_state), (gst_element_abort_state),
(gst_element_set_state), (gst_element_pads_activate):
* gst/gstelement.h:
Patch state changes according to design document.
2005-01-12 18:54:42 +00:00
|
|
|
guint16 numpads;
|
|
|
|
GList *pads;
|
|
|
|
guint16 numsrcpads;
|
|
|
|
GList *srcpads;
|
|
|
|
guint16 numsinkpads;
|
|
|
|
GList *sinkpads;
|
|
|
|
guint32 pads_cookie;
|
2004-12-13 14:49:11 +00:00
|
|
|
|
|
|
|
/*< private > */
|
2003-12-09 02:39:31 +00:00
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2004-12-13 14:49:11 +00:00
|
|
|
struct _GstElementClass
|
|
|
|
{
|
|
|
|
GstObjectClass parent_class;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-12-13 14:49:11 +00:00
|
|
|
/*< public > */
|
2003-10-31 19:32:47 +00:00
|
|
|
/* the element details */
|
2004-12-13 14:49:11 +00:00
|
|
|
GstElementDetails details;
|
2003-11-02 16:46:12 +00:00
|
|
|
|
|
|
|
/* factory that the element was created from */
|
2004-12-13 14:49:11 +00:00
|
|
|
GstElementFactory *elementfactory;
|
2003-11-02 16:46:12 +00:00
|
|
|
|
2001-07-11 12:33:17 +00:00
|
|
|
/* templates for our pads */
|
2004-12-13 14:49:11 +00:00
|
|
|
GList *padtemplates;
|
|
|
|
gint numpadtemplates;
|
|
|
|
guint32 pad_templ_cookie;
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
/* signal callbacks */
|
2004-12-13 14:49:11 +00:00
|
|
|
void (*state_change) (GstElement * element, GstElementState old,
|
|
|
|
GstElementState state);
|
|
|
|
void (*new_pad) (GstElement * element, GstPad * pad);
|
|
|
|
void (*pad_removed) (GstElement * element, GstPad * pad);
|
|
|
|
void (*no_more_pads) (GstElement * element);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2004-12-13 14:49:11 +00:00
|
|
|
/*< protected > */
|
2004-12-08 17:40:37 +00:00
|
|
|
/* vtable */
|
2002-12-30 17:42:11 +00:00
|
|
|
|
|
|
|
/* request/release pads */
|
2004-12-13 14:49:11 +00:00
|
|
|
GstPad *(*request_new_pad) (GstElement * element, GstPadTemplate * templ,
|
|
|
|
const gchar * name);
|
|
|
|
void (*release_pad) (GstElement * element, GstPad * pad);
|
2002-12-30 17:42:11 +00:00
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
/* state changes */
|
gst/: Patch state changes according to design document.
Original commit message from CVS:
* gst/gstbin.c: (gst_bin_set_index), (gst_bin_set_clock),
(gst_bin_set_bus), (gst_bin_set_scheduler), (gst_bin_add_func),
(gst_bin_iterate_elements), (gst_bin_get_state),
(gst_bin_change_state), (gst_bin_get_by_name_recurse_up):
* gst/gstelement.c: (gst_element_add_pad),
(gst_element_remove_pad), (gst_element_get_state_func),
(gst_element_get_state), (gst_element_abort_state),
(gst_element_set_state), (gst_element_pads_activate):
* gst/gstelement.h:
Patch state changes according to design document.
2005-01-12 18:54:42 +00:00
|
|
|
GstElementStateReturn (*get_state) (GstElement * element, GstElementState * state,
|
|
|
|
GstElementState * pending, GTimeVal * timeout);
|
|
|
|
GstElementStateReturn (*change_state) (GstElement * element);
|
2004-12-08 17:40:37 +00:00
|
|
|
|
|
|
|
/* manager */
|
2004-12-13 14:49:11 +00:00
|
|
|
void (*set_manager) (GstElement * element, GstPipeline * pipeline);
|
|
|
|
void (*set_bus) (GstElement * element, GstBus * bus);
|
|
|
|
void (*set_scheduler) (GstElement * element, GstScheduler * scheduler);
|
2004-12-08 17:40:37 +00:00
|
|
|
|
2002-11-27 20:47:39 +00:00
|
|
|
/* set/get clocks */
|
2004-12-13 14:49:11 +00:00
|
|
|
GstClock *(*get_clock) (GstElement * element);
|
|
|
|
void (*set_clock) (GstElement * element, GstClock * clock);
|
2002-12-30 17:42:11 +00:00
|
|
|
|
2002-12-12 22:14:36 +00:00
|
|
|
/* index */
|
2004-12-13 14:49:11 +00:00
|
|
|
GstIndex *(*get_index) (GstElement * element);
|
|
|
|
void (*set_index) (GstElement * element, GstIndex * index);
|
2002-12-19 21:31:03 +00:00
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
/* query/convert/events functions */
|
2004-12-13 14:49:11 +00:00
|
|
|
const GstEventMask *(*get_event_masks) (GstElement * element);
|
|
|
|
gboolean (*send_event) (GstElement * element, GstEvent * event);
|
|
|
|
const GstFormat *(*get_formats) (GstElement * element);
|
|
|
|
gboolean (*convert) (GstElement * element,
|
|
|
|
GstFormat src_format, gint64 src_value,
|
|
|
|
GstFormat * dest_format, gint64 * dest_value);
|
|
|
|
const GstQueryType *(*get_query_types) (GstElement * element);
|
|
|
|
gboolean (*query) (GstElement * element, GstQueryType type,
|
|
|
|
GstFormat * format, gint64 * value);
|
|
|
|
|
|
|
|
/*< private > */
|
2004-05-10 16:48:44 +00:00
|
|
|
gpointer _gst_reserved[GST_PADDING - 1];
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
/* class stuff */
|
2004-12-13 14:49:11 +00:00
|
|
|
void gst_element_class_add_pad_template (GstElementClass * klass,
|
|
|
|
GstPadTemplate * templ);
|
|
|
|
void gst_element_class_set_details (GstElementClass * klass,
|
|
|
|
const GstElementDetails * details);
|
|
|
|
GstPadTemplate *gst_element_class_get_pad_template (GstElementClass *
|
|
|
|
element_class, const gchar * name);
|
|
|
|
GList *gst_element_class_get_pad_template_list (GstElementClass *
|
|
|
|
element_class);
|
2002-05-26 03:23:25 +00:00
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
/* element instance */
|
2001-07-11 12:33:17 +00:00
|
|
|
|
2004-12-13 14:49:11 +00:00
|
|
|
GType gst_element_get_type (void);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
gst/: More MT safety fixes following the desing doc.
Original commit message from CVS:
* gst/gst_private.h:
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_index),
(gst_bin_set_clock), (gst_bin_get_clock),
(gst_bin_iterate_elements), (gst_bin_get_by_name),
(gst_bin_get_by_name_recurse_up), (gst_bin_get_by_interface),
(gst_bin_get_all_by_interface):
* gst/gstbin.h:
* gst/gstelement.c: (gst_element_add_pad),
(gst_element_remove_pad), (gst_element_request_pad),
(gst_element_post_message), (gst_element_error_full),
(gst_element_is_locked_state), (gst_element_set_locked_state),
(gst_element_create_task):
* gst/gstelement.h:
* gst/gstinfo.h:
* gst/gstiterator.h:
* gst/gstobject.c: (gst_object_init), (gst_object_ref),
(gst_object_unref), (gst_object_sink), (gst_object_dispose),
(gst_object_finalize), (gst_object_dispatch_properties_changed),
(gst_object_set_name), (gst_object_get_name),
(gst_object_set_parent), (gst_object_get_parent),
(gst_object_unparent), (gst_object_check_uniqueness),
(gst_object_save_thyself), (gst_object_restore_thyself),
(gst_object_real_restore_thyself), (gst_object_set_property),
(gst_object_get_property), (gst_object_get_path_string):
* gst/gstobject.h:
* gst/gstpad.c: (gst_pad_get_direction), (gst_pad_unlink),
(gst_pad_is_linked), (gst_pad_link_filtered),
(gst_pad_relink_filtered), (gst_pad_get_peer), (gst_pad_push),
(gst_pad_pull), (gst_pad_pull_range):
* gst/gstpad.h:
More MT safety fixes following the desing doc.
2004-12-09 21:08:13 +00:00
|
|
|
#define gst_element_get_name(elem) gst_object_get_name(GST_OBJECT(elem))
|
|
|
|
#define gst_element_set_name(elem,name) gst_object_set_name(GST_OBJECT(elem),name)
|
|
|
|
#define gst_element_get_parent(elem) gst_object_get_parent(GST_OBJECT(elem))
|
2002-12-08 02:08:47 +00:00
|
|
|
#define gst_element_set_parent(elem,parent) gst_object_set_parent(GST_OBJECT(elem),parent)
|
2002-12-07 22:18:17 +00:00
|
|
|
|
2002-11-27 20:47:39 +00:00
|
|
|
/* clocking */
|
2004-12-13 14:49:11 +00:00
|
|
|
gboolean gst_element_requires_clock (GstElement * element);
|
|
|
|
gboolean gst_element_provides_clock (GstElement * element);
|
|
|
|
GstClock *gst_element_get_clock (GstElement * element);
|
|
|
|
void gst_element_set_clock (GstElement * element, GstClock * clock);
|
2004-12-08 17:40:37 +00:00
|
|
|
|
2004-12-13 14:49:11 +00:00
|
|
|
GstClockReturn gst_element_clock_wait (GstElement * element,
|
|
|
|
GstClockID id, GstClockTimeDiff * jitter);
|
|
|
|
GstClockTime gst_element_get_time (GstElement * element);
|
|
|
|
gboolean gst_element_wait (GstElement * element, GstClockTime timestamp);
|
2004-03-28 13:15:21 +00:00
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
/* indexes */
|
2004-12-13 14:49:11 +00:00
|
|
|
gboolean gst_element_is_indexable (GstElement * element);
|
|
|
|
void gst_element_set_index (GstElement * element, GstIndex * index);
|
|
|
|
GstIndex *gst_element_get_index (GstElement * element);
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
/* manager and tasks */
|
2004-12-13 14:49:11 +00:00
|
|
|
void gst_element_set_manager (GstElement * element, GstPipeline * pipeline);
|
|
|
|
GstPipeline *gst_element_get_manager (GstElement * element);
|
|
|
|
void gst_element_set_bus (GstElement * element, GstBus * bus);
|
|
|
|
GstBus *gst_element_get_bus (GstElement * element);
|
|
|
|
void gst_element_set_scheduler (GstElement * element, GstScheduler * scheduler);
|
|
|
|
GstScheduler *gst_element_get_scheduler (GstElement * element);
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
/* pad management */
|
2004-12-13 14:49:11 +00:00
|
|
|
gboolean gst_element_add_pad (GstElement * element, GstPad * pad);
|
|
|
|
gboolean gst_element_remove_pad (GstElement * element, GstPad * pad);
|
|
|
|
GstPad *gst_element_add_ghost_pad (GstElement * element, GstPad * pad,
|
|
|
|
const gchar * name);
|
|
|
|
void gst_element_no_more_pads (GstElement * element);
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2004-12-13 14:49:11 +00:00
|
|
|
GstPad *gst_element_get_pad (GstElement * element, const gchar * name);
|
|
|
|
GstPad *gst_element_get_static_pad (GstElement * element, const gchar * name);
|
|
|
|
GstPad *gst_element_get_request_pad (GstElement * element, const gchar * name);
|
|
|
|
void gst_element_release_request_pad (GstElement * element, GstPad * pad);
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2004-12-13 14:49:11 +00:00
|
|
|
GstIterator *gst_element_iterate_pads (GstElement * element);
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
/* event/query/format stuff */
|
2004-12-13 14:49:11 +00:00
|
|
|
G_CONST_RETURN GstEventMask *gst_element_get_event_masks (GstElement * element);
|
|
|
|
gboolean gst_element_send_event (GstElement * element, GstEvent * event);
|
|
|
|
gboolean gst_element_seek (GstElement * element, GstSeekType seek_type,
|
|
|
|
guint64 offset);
|
|
|
|
G_CONST_RETURN GstQueryType *gst_element_get_query_types (GstElement * element);
|
|
|
|
gboolean gst_element_query (GstElement * element, GstQueryType type,
|
|
|
|
GstFormat * format, gint64 * value);
|
|
|
|
G_CONST_RETURN GstFormat *gst_element_get_formats (GstElement * element);
|
|
|
|
gboolean gst_element_convert (GstElement * element,
|
|
|
|
GstFormat src_format, gint64 src_value,
|
|
|
|
GstFormat * dest_format, gint64 * dest_value);
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
/* messages */
|
2004-12-13 14:49:11 +00:00
|
|
|
gboolean gst_element_post_message (GstElement * element, GstMessage * message);
|
2004-03-15 14:43:35 +00:00
|
|
|
|
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
/* error handling */
|
2004-12-13 14:49:11 +00:00
|
|
|
gchar *_gst_element_error_printf (const gchar * format, ...);
|
|
|
|
void gst_element_message_full (GstElement * element, GstMessageType type,
|
|
|
|
GQuark domain, gint code, gchar * text, gchar * debug, const gchar * file,
|
|
|
|
const gchar * function, gint line);
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
/* state management */
|
gst/: Patch state changes according to design document.
Original commit message from CVS:
* gst/gstbin.c: (gst_bin_set_index), (gst_bin_set_clock),
(gst_bin_set_bus), (gst_bin_set_scheduler), (gst_bin_add_func),
(gst_bin_iterate_elements), (gst_bin_get_state),
(gst_bin_change_state), (gst_bin_get_by_name_recurse_up):
* gst/gstelement.c: (gst_element_add_pad),
(gst_element_remove_pad), (gst_element_get_state_func),
(gst_element_get_state), (gst_element_abort_state),
(gst_element_set_state), (gst_element_pads_activate):
* gst/gstelement.h:
Patch state changes according to design document.
2005-01-12 18:54:42 +00:00
|
|
|
gboolean gst_element_is_locked_state (GstElement * element);
|
|
|
|
gboolean gst_element_set_locked_state (GstElement * element,
|
|
|
|
gboolean locked_state);
|
|
|
|
gboolean gst_element_sync_state_with_parent (GstElement * element);
|
|
|
|
|
|
|
|
GstElementStateReturn gst_element_get_state (GstElement * element,
|
|
|
|
GstElementState * state,
|
|
|
|
GstElementState * pending,
|
|
|
|
GTimeVal * timeout);
|
|
|
|
GstElementStateReturn gst_element_set_state (GstElement * element,
|
|
|
|
GstElementState state);
|
|
|
|
|
|
|
|
void gst_element_abort_state (GstElement * element);
|
|
|
|
void gst_element_commit_state (GstElement * element);
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
/* factory management */
|
2004-12-13 14:49:11 +00:00
|
|
|
GstElementFactory *gst_element_get_factory (GstElement * element);
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2001-01-19 22:15:21 +00:00
|
|
|
/*
|
2000-12-19 13:41:55 +00:00
|
|
|
*
|
|
|
|
* factories stuff
|
|
|
|
*
|
|
|
|
**/
|
2001-08-21 20:16:48 +00:00
|
|
|
|
2002-04-11 20:35:18 +00:00
|
|
|
#define GST_TYPE_ELEMENT_FACTORY (gst_element_factory_get_type())
|
|
|
|
#define GST_ELEMENT_FACTORY(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_ELEMENT_FACTORY,\
|
2001-10-17 10:21:27 +00:00
|
|
|
GstElementFactory))
|
2002-04-11 20:35:18 +00:00
|
|
|
#define GST_ELEMENT_FACTORY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_ELEMENT_FACTORY,\
|
2001-10-17 10:21:27 +00:00
|
|
|
GstElementFactoryClass))
|
2002-04-11 20:35:18 +00:00
|
|
|
#define GST_IS_ELEMENT_FACTORY(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_ELEMENT_FACTORY))
|
|
|
|
#define GST_IS_ELEMENT_FACTORY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_ELEMENT_FACTORY))
|
2001-08-21 20:16:48 +00:00
|
|
|
|
2004-12-13 14:49:11 +00:00
|
|
|
struct _GstElementFactory
|
|
|
|
{
|
|
|
|
GstPluginFeature parent;
|
2001-08-21 20:16:48 +00:00
|
|
|
|
2004-12-13 14:49:11 +00:00
|
|
|
GType type; /* unique GType of element or 0 if not loaded */
|
2001-08-21 20:16:48 +00:00
|
|
|
|
2004-12-13 14:49:11 +00:00
|
|
|
GstElementDetails details;
|
2001-09-13 20:12:17 +00:00
|
|
|
|
2004-12-13 14:49:11 +00:00
|
|
|
GList *padtemplates;
|
|
|
|
guint numpadtemplates;
|
2003-10-07 21:58:42 +00:00
|
|
|
|
2003-11-24 03:21:54 +00:00
|
|
|
/* URI interface stuff */
|
2004-12-13 14:49:11 +00:00
|
|
|
guint uri_type;
|
|
|
|
gchar **uri_protocols;
|
|
|
|
|
|
|
|
GList *interfaces; /* interfaces this element implements */
|
2003-11-24 02:09:23 +00:00
|
|
|
|
2003-12-09 02:39:31 +00:00
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
2001-08-21 20:16:48 +00:00
|
|
|
};
|
|
|
|
|
2004-12-13 14:49:11 +00:00
|
|
|
struct _GstElementFactoryClass
|
|
|
|
{
|
2001-08-21 20:16:48 +00:00
|
|
|
GstPluginFeatureClass parent_class;
|
2003-10-07 21:58:42 +00:00
|
|
|
|
2003-12-09 02:39:31 +00:00
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
2001-08-21 20:16:48 +00:00
|
|
|
};
|
|
|
|
|
2004-12-13 14:49:11 +00:00
|
|
|
GType gst_element_factory_get_type (void);
|
|
|
|
|
|
|
|
gboolean gst_element_register (GstPlugin * plugin,
|
|
|
|
const gchar * name, guint rank, GType type);
|
|
|
|
|
|
|
|
GstElementFactory *gst_element_factory_find (const gchar * name);
|
|
|
|
GType gst_element_factory_get_element_type (GstElementFactory * factory);
|
|
|
|
G_CONST_RETURN gchar *gst_element_factory_get_longname (GstElementFactory *
|
|
|
|
factory);
|
|
|
|
G_CONST_RETURN gchar *gst_element_factory_get_klass (GstElementFactory *
|
|
|
|
factory);
|
|
|
|
G_CONST_RETURN gchar *gst_element_factory_get_description (GstElementFactory *
|
|
|
|
factory);
|
|
|
|
G_CONST_RETURN gchar *gst_element_factory_get_author (GstElementFactory *
|
|
|
|
factory);
|
|
|
|
guint gst_element_factory_get_num_pad_templates (GstElementFactory * factory);
|
|
|
|
G_CONST_RETURN GList *gst_element_factory_get_pad_templates (GstElementFactory *
|
|
|
|
factory);
|
|
|
|
guint gst_element_factory_get_uri_type (GstElementFactory * factory);
|
|
|
|
gchar **gst_element_factory_get_uri_protocols (GstElementFactory * factory);
|
|
|
|
|
|
|
|
GstElement *gst_element_factory_create (GstElementFactory * factory,
|
|
|
|
const gchar * name);
|
|
|
|
GstElement *gst_element_factory_make (const gchar * factoryname,
|
|
|
|
const gchar * name);
|
2004-03-15 14:43:35 +00:00
|
|
|
|
Clock updates, remove deprecated methods, simplify operations.
Original commit message from CVS:
* gst/gstbin.c: (gst_bin_set_index), (gst_bin_set_clock),
(gst_bin_set_bus), (gst_bin_set_scheduler), (gst_bin_add_func),
(gst_bin_iterate_elements), (gst_bin_change_state),
(gst_bin_get_by_name_recurse_up):
* gst/gstbuffer.c: (gst_buffer_default_copy):
* gst/gstbuffer.h:
* gst/gstclock.c: (gst_clock_init), (gst_clock_get_time),
(gst_clock_set_time_adjust):
* gst/gstclock.h:
* gst/gstelement.h:
* gst/gstevent.h:
* gst/gstinfo.h:
* gst/gstpipeline.c: (is_eos), (pipeline_bus_handler),
(gst_pipeline_change_state):
* gst/gstpipeline.h:
* gst/gstsystemclock.c: (gst_system_clock_wait):
* gst/gstutils.c: (gst_element_finish_preroll),
(gst_element_get_compatible_pad_filtered),
(gst_element_link_pads_filtered), (gst_element_unlink):
* gst/registries/gstxmlregistry.c:
(gst_xml_registry_parse_element_factory),
(gst_xml_registry_end_element):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_header_from_buffer):
Clock updates, remove deprecated methods, simplify operations.
Fix clocking and time management in GstPipeline.
Preroll also occurs when going from playing to paused.
2004-12-31 10:44:46 +00:00
|
|
|
void __gst_element_factory_add_pad_template (GstElementFactory *elementfactory,
|
|
|
|
GstPadTemplate *templ);
|
|
|
|
void __gst_element_factory_add_interface (GstElementFactory *elementfactory,
|
|
|
|
const gchar *interfacename);
|
|
|
|
|
2002-05-26 03:23:25 +00:00
|
|
|
G_END_DECLS
|
2001-01-23 20:03:07 +00:00
|
|
|
#endif /* __GST_ELEMENT_H__ */
|