2000-12-28 22:12:02 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
2005-03-08 17:42:29 +00:00
|
|
|
* 2000,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__
|
|
|
|
|
2005-07-18 12:49:53 +00:00
|
|
|
/* gstelement.h and gstelementfactory.h include eachother */
|
|
|
|
typedef struct _GstElement GstElement;
|
|
|
|
typedef struct _GstElementClass GstElementClass;
|
|
|
|
|
2005-09-02 15:42:00 +00:00
|
|
|
/* gstmessage.h needs State */
|
2005-10-21 11:36:32 +00:00
|
|
|
/**
|
|
|
|
* GstState:
|
|
|
|
* @GST_STATE_VOID_PENDING : no pending state.
|
|
|
|
* @GST_STATE_NULL : the NULL state or initial state of an element
|
|
|
|
* @GST_STATE_READY : the element is ready to go to PAUSED
|
|
|
|
* @GST_STATE_PAUSED : the element is PAUSED
|
|
|
|
* @GST_STATE_PLAYING : the element is PLAYING
|
|
|
|
*
|
2006-06-06 09:47:40 +00:00
|
|
|
* The posible states an element can be in.
|
2005-10-21 11:36:32 +00:00
|
|
|
*/
|
2005-07-18 12:49:53 +00:00
|
|
|
typedef enum {
|
2005-11-10 11:17:26 +00:00
|
|
|
GST_STATE_VOID_PENDING = 0,
|
2005-09-02 15:42:00 +00:00
|
|
|
GST_STATE_NULL = 1,
|
|
|
|
GST_STATE_READY = 2,
|
|
|
|
GST_STATE_PAUSED = 3,
|
|
|
|
GST_STATE_PLAYING = 4
|
|
|
|
} GstState;
|
2005-07-18 12:49:53 +00:00
|
|
|
|
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
#include <gst/gstconfig.h>
|
2000-01-30 09:03:00 +00:00
|
|
|
#include <gst/gstobject.h>
|
|
|
|
#include <gst/gstpad.h>
|
2005-07-18 12:49:53 +00:00
|
|
|
#include <gst/gstbus.h>
|
2002-02-03 20:07:09 +00:00
|
|
|
#include <gst/gstclock.h>
|
2005-05-30 15:51:40 +00:00
|
|
|
#include <gst/gstelementfactory.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>
|
more docs inlined, splitted gstindex.{c,h}
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* docs/gst/tmpl/.cvsignore:
* gst/Makefile.am:
* gst/gst.h:
* gst/gstbin.c:
* gst/gstelement.h:
* gst/gstindex.c: (gst_index_class_init):
* gst/gstindex.h:
* gst/gstindexfactory.c: (gst_index_factory_get_type),
(gst_index_factory_class_init), (gst_index_factory_init),
(gst_index_factory_finalize), (gst_index_factory_new),
(gst_index_factory_destroy), (gst_index_factory_find),
(gst_index_factory_create), (gst_index_factory_make):
* gst/gstindexfactory.h:
* gst/gstpluginfeature.c:
* gst/gstpluginfeature.h:
* libs/gst/controller/gstcontroller.c: (gst_controller_new_valist):
more docs inlined, splitted gstindex.{c,h}
2005-09-20 20:40:00 +00:00
|
|
|
#include <gst/gstindexfactory.h>
|
2005-03-07 18:27:42 +00:00
|
|
|
#include <gst/gstiterator.h>
|
2005-03-21 17:34:02 +00:00
|
|
|
#include <gst/gstmessage.h>
|
2005-09-07 13:22:16 +00:00
|
|
|
#include <gst/gsttaglist.h>
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2009-08-28 16:14:23 +00:00
|
|
|
#define GST_TYPE_ELEMENT (gst_element_get_type ())
|
|
|
|
#define GST_IS_ELEMENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_ELEMENT))
|
|
|
|
#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))
|
|
|
|
#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))
|
|
|
|
#define GST_ELEMENT_CAST(obj) ((GstElement*)(obj))
|
2003-10-31 19:32:47 +00:00
|
|
|
|
2005-09-11 12:57:36 +00:00
|
|
|
/**
|
|
|
|
* GstStateChangeReturn:
|
|
|
|
* @GST_STATE_CHANGE_FAILURE : the state change failed
|
|
|
|
* @GST_STATE_CHANGE_SUCCESS : the state change succeeded
|
|
|
|
* @GST_STATE_CHANGE_ASYNC : the state change will happen asynchronously
|
2007-06-23 11:18:46 +00:00
|
|
|
* @GST_STATE_CHANGE_NO_PREROLL: the state change succeeded but the element
|
|
|
|
* cannot produce data in PAUSED. This typically
|
|
|
|
* happens with live sources.
|
2005-10-08 14:57:09 +00:00
|
|
|
*
|
2006-10-13 13:27:46 +00:00
|
|
|
* The possible return values from a state change function. Only
|
|
|
|
* @GST_STATE_CHANGE_FAILURE is a real failure.
|
2005-09-11 12:57:36 +00:00
|
|
|
*/
|
2005-07-18 12:49:53 +00:00
|
|
|
typedef enum {
|
2005-09-02 15:42:00 +00:00
|
|
|
GST_STATE_CHANGE_FAILURE = 0,
|
|
|
|
GST_STATE_CHANGE_SUCCESS = 1,
|
|
|
|
GST_STATE_CHANGE_ASYNC = 2,
|
|
|
|
GST_STATE_CHANGE_NO_PREROLL = 3
|
|
|
|
} GstStateChangeReturn;
|
2005-07-18 12:49:53 +00:00
|
|
|
|
2005-06-27 08:16:51 +00:00
|
|
|
/* NOTE: this probably should be done with an #ifdef to decide
|
2001-12-15 18:15:13 +00:00
|
|
|
* whether to safe-cast or to just do the non-checking cast.
|
|
|
|
*/
|
2005-09-23 14:31:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GST_STATE:
|
2005-11-10 11:17:26 +00:00
|
|
|
* @elem: a #GstElement to return state for.
|
2005-09-23 14:31:21 +00:00
|
|
|
*
|
2005-11-10 11:17:26 +00:00
|
|
|
* This macro returns the current #GstState of the element.
|
2005-09-23 14:31:21 +00:00
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#define GST_STATE(elem) (GST_ELEMENT_CAST(elem)->current_state)
|
2005-09-23 14:31:21 +00:00
|
|
|
|
check/: Check fixes, use API as stated in design docs, remove hacks.
Original commit message from CVS:
* check/Makefile.am:
* check/generic/states.c: (GST_START_TEST):
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (gst_pipeline_suite):
* check/states/sinks.c: (GST_START_TEST):
* check/states/sinks2.c: (GST_START_TEST), (gst_object_suite),
(main):
Check fixes, use API as stated in design docs, remove hacks.
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_change_state):
Catch stopping our task while we're shutting down.
* gst/gstbin.c: (gst_bin_init), (gst_bin_add_func),
(gst_bin_remove_func), (gst_bin_get_state_func),
(gst_bin_recalc_state), (gst_bin_change_state_func),
(bin_bus_handler):
* gst/gstbin.h:
* gst/gstelement.c: (gst_element_init),
(gst_element_get_state_func), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state),
(gst_element_set_state), (gst_element_change_state),
(gst_element_change_state_func):
* gst/gstelement.h:
New state change algorithm (see #318116)
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_set_property),
(gst_pipeline_get_property), (do_pipeline_seek),
(gst_pipeline_change_state), (gst_pipeline_provide_clock_func):
* gst/gstpipeline.h:
Remove crude state change hacks.
* gst/gstutils.h:
Remove crude hacks.
* tools/gst-launch.c: (main):
Fixes for state change. Needs some more work to fully use the
new stuff.
2005-10-10 16:38:26 +00:00
|
|
|
/**
|
|
|
|
* GST_STATE_NEXT:
|
2005-11-10 11:17:26 +00:00
|
|
|
* @elem: a #GstElement to return the next state for.
|
check/: Check fixes, use API as stated in design docs, remove hacks.
Original commit message from CVS:
* check/Makefile.am:
* check/generic/states.c: (GST_START_TEST):
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (gst_pipeline_suite):
* check/states/sinks.c: (GST_START_TEST):
* check/states/sinks2.c: (GST_START_TEST), (gst_object_suite),
(main):
Check fixes, use API as stated in design docs, remove hacks.
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_change_state):
Catch stopping our task while we're shutting down.
* gst/gstbin.c: (gst_bin_init), (gst_bin_add_func),
(gst_bin_remove_func), (gst_bin_get_state_func),
(gst_bin_recalc_state), (gst_bin_change_state_func),
(bin_bus_handler):
* gst/gstbin.h:
* gst/gstelement.c: (gst_element_init),
(gst_element_get_state_func), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state),
(gst_element_set_state), (gst_element_change_state),
(gst_element_change_state_func):
* gst/gstelement.h:
New state change algorithm (see #318116)
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_set_property),
(gst_pipeline_get_property), (do_pipeline_seek),
(gst_pipeline_change_state), (gst_pipeline_provide_clock_func):
* gst/gstpipeline.h:
Remove crude state change hacks.
* gst/gstutils.h:
Remove crude hacks.
* tools/gst-launch.c: (main):
Fixes for state change. Needs some more work to fully use the
new stuff.
2005-10-10 16:38:26 +00:00
|
|
|
*
|
2006-06-06 09:47:40 +00:00
|
|
|
* This macro returns the next #GstState of the element.
|
check/: Check fixes, use API as stated in design docs, remove hacks.
Original commit message from CVS:
* check/Makefile.am:
* check/generic/states.c: (GST_START_TEST):
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (gst_pipeline_suite):
* check/states/sinks.c: (GST_START_TEST):
* check/states/sinks2.c: (GST_START_TEST), (gst_object_suite),
(main):
Check fixes, use API as stated in design docs, remove hacks.
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_change_state):
Catch stopping our task while we're shutting down.
* gst/gstbin.c: (gst_bin_init), (gst_bin_add_func),
(gst_bin_remove_func), (gst_bin_get_state_func),
(gst_bin_recalc_state), (gst_bin_change_state_func),
(bin_bus_handler):
* gst/gstbin.h:
* gst/gstelement.c: (gst_element_init),
(gst_element_get_state_func), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state),
(gst_element_set_state), (gst_element_change_state),
(gst_element_change_state_func):
* gst/gstelement.h:
New state change algorithm (see #318116)
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_set_property),
(gst_pipeline_get_property), (do_pipeline_seek),
(gst_pipeline_change_state), (gst_pipeline_provide_clock_func):
* gst/gstpipeline.h:
Remove crude state change hacks.
* gst/gstutils.h:
Remove crude hacks.
* tools/gst-launch.c: (main):
Fixes for state change. Needs some more work to fully use the
new stuff.
2005-10-10 16:38:26 +00:00
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#define GST_STATE_NEXT(elem) (GST_ELEMENT_CAST(elem)->next_state)
|
check/: Check fixes, use API as stated in design docs, remove hacks.
Original commit message from CVS:
* check/Makefile.am:
* check/generic/states.c: (GST_START_TEST):
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (gst_pipeline_suite):
* check/states/sinks.c: (GST_START_TEST):
* check/states/sinks2.c: (GST_START_TEST), (gst_object_suite),
(main):
Check fixes, use API as stated in design docs, remove hacks.
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_change_state):
Catch stopping our task while we're shutting down.
* gst/gstbin.c: (gst_bin_init), (gst_bin_add_func),
(gst_bin_remove_func), (gst_bin_get_state_func),
(gst_bin_recalc_state), (gst_bin_change_state_func),
(bin_bus_handler):
* gst/gstbin.h:
* gst/gstelement.c: (gst_element_init),
(gst_element_get_state_func), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state),
(gst_element_set_state), (gst_element_change_state),
(gst_element_change_state_func):
* gst/gstelement.h:
New state change algorithm (see #318116)
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_set_property),
(gst_pipeline_get_property), (do_pipeline_seek),
(gst_pipeline_change_state), (gst_pipeline_provide_clock_func):
* gst/gstpipeline.h:
Remove crude state change hacks.
* gst/gstutils.h:
Remove crude hacks.
* tools/gst-launch.c: (main):
Fixes for state change. Needs some more work to fully use the
new stuff.
2005-10-10 16:38:26 +00:00
|
|
|
|
2005-09-23 14:31:21 +00:00
|
|
|
/**
|
|
|
|
* GST_STATE_PENDING:
|
2005-11-10 11:17:26 +00:00
|
|
|
* @elem: a #GstElement to return the pending state for.
|
2005-09-23 14:31:21 +00:00
|
|
|
*
|
2005-11-10 11:17:26 +00:00
|
|
|
* This macro returns the currently pending #GstState of the element.
|
2005-09-23 14:31:21 +00:00
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#define GST_STATE_PENDING(elem) (GST_ELEMENT_CAST(elem)->pending_state)
|
check/: Check fixes, use API as stated in design docs, remove hacks.
Original commit message from CVS:
* check/Makefile.am:
* check/generic/states.c: (GST_START_TEST):
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (gst_pipeline_suite):
* check/states/sinks.c: (GST_START_TEST):
* check/states/sinks2.c: (GST_START_TEST), (gst_object_suite),
(main):
Check fixes, use API as stated in design docs, remove hacks.
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_change_state):
Catch stopping our task while we're shutting down.
* gst/gstbin.c: (gst_bin_init), (gst_bin_add_func),
(gst_bin_remove_func), (gst_bin_get_state_func),
(gst_bin_recalc_state), (gst_bin_change_state_func),
(bin_bus_handler):
* gst/gstbin.h:
* gst/gstelement.c: (gst_element_init),
(gst_element_get_state_func), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state),
(gst_element_set_state), (gst_element_change_state),
(gst_element_change_state_func):
* gst/gstelement.h:
New state change algorithm (see #318116)
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_set_property),
(gst_pipeline_get_property), (do_pipeline_seek),
(gst_pipeline_change_state), (gst_pipeline_provide_clock_func):
* gst/gstpipeline.h:
Remove crude state change hacks.
* gst/gstutils.h:
Remove crude hacks.
* tools/gst-launch.c: (main):
Fixes for state change. Needs some more work to fully use the
new stuff.
2005-10-10 16:38:26 +00:00
|
|
|
|
docs/gst/gstreamer-sections.txt: Add new element field and method.
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
Add new element field and method.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(bin_remove_messages), (gst_bin_add_func), (gst_bin_remove_func),
(gst_bin_recalc_state), (gst_bin_get_state_func),
(gst_bin_element_set_state), (gst_bin_change_state_func),
(gst_bin_continue_func), (bin_bus_handler),
(bin_push_state_continue), (bin_handle_async_start),
(bin_handle_async_done), (gst_bin_handle_message_func):
Make async state changes a bit smarter by using new ASYNC_START and
ASYNC_DONE messages. This reduces the number of times we run the state
recalculation thread.
Don't change state of element with a pending ASYNC_START message.
Deprecate STATE_DIRTY messages.
* gst/gstelement.c: (gst_element_init), (gst_element_send_event),
(gst_element_get_state_func), (gst_element_continue_state),
(gst_element_lost_state), (gst_element_set_state_func),
(gst_element_change_state):
* gst/gstelement.h:
Keep the state that was last set by the app in a new element field.
Don't allow state changes when handling an element event.
Post ASYNC_START and ASYNC_DONE messages.
Change lost_state so that we go to PAUSED and wait for the parent to set
us to PLAYING again (so latency calculation can be performed)
Export gst_element_change_state() method so that subclasses can use it.
API: gst_element_change_state()
API: GST_STATE_TARGET
* gst/gstpipeline.c: (gst_pipeline_class_init),
(reset_stream_time), (gst_pipeline_change_state),
(gst_pipeline_handle_message), (gst_pipeline_set_new_stream_time):
Using the new ASYNC_START message we can reset the base_time when
needed. This can then be used to implement base_time redistribution in
flushing seeks so that we can remove the explicit seek handling.
Perform latency query and configuration when going to PLAYING.
* libs/gst/base/gstbasesink.c: (gst_base_sink_commit_state),
(gst_base_sink_query), (gst_base_sink_change_state):
Post new ASYNC_START/ASYNC_DONE messages.
* tests/check/generic/sinks.c: (GST_START_TEST):
Fix test because the bin will not set the async element to PLAYING right
away.
* tests/check/gst/gstbin.c: (pop_async_done), (GST_START_TEST):
Make the message check a little stronger.
Handle ASYNC messages.
* tests/check/pipelines/cleanup.c: (GST_START_TEST):
* tests/check/pipelines/simple-launch-lines.c: (GST_START_TEST):
Expect ASYNC_DONE messages.
2007-03-19 10:47:56 +00:00
|
|
|
/**
|
|
|
|
* GST_STATE_TARGET:
|
|
|
|
* @elem: a #GstElement to return the target state for.
|
|
|
|
*
|
|
|
|
* This macro returns the target #GstState of the element.
|
|
|
|
*
|
|
|
|
* Since: 0.10.13
|
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#define GST_STATE_TARGET(elem) (GST_ELEMENT_CAST(elem)->abidata.ABI.target_state)
|
docs/gst/gstreamer-sections.txt: Add new element field and method.
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
Add new element field and method.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(bin_remove_messages), (gst_bin_add_func), (gst_bin_remove_func),
(gst_bin_recalc_state), (gst_bin_get_state_func),
(gst_bin_element_set_state), (gst_bin_change_state_func),
(gst_bin_continue_func), (bin_bus_handler),
(bin_push_state_continue), (bin_handle_async_start),
(bin_handle_async_done), (gst_bin_handle_message_func):
Make async state changes a bit smarter by using new ASYNC_START and
ASYNC_DONE messages. This reduces the number of times we run the state
recalculation thread.
Don't change state of element with a pending ASYNC_START message.
Deprecate STATE_DIRTY messages.
* gst/gstelement.c: (gst_element_init), (gst_element_send_event),
(gst_element_get_state_func), (gst_element_continue_state),
(gst_element_lost_state), (gst_element_set_state_func),
(gst_element_change_state):
* gst/gstelement.h:
Keep the state that was last set by the app in a new element field.
Don't allow state changes when handling an element event.
Post ASYNC_START and ASYNC_DONE messages.
Change lost_state so that we go to PAUSED and wait for the parent to set
us to PLAYING again (so latency calculation can be performed)
Export gst_element_change_state() method so that subclasses can use it.
API: gst_element_change_state()
API: GST_STATE_TARGET
* gst/gstpipeline.c: (gst_pipeline_class_init),
(reset_stream_time), (gst_pipeline_change_state),
(gst_pipeline_handle_message), (gst_pipeline_set_new_stream_time):
Using the new ASYNC_START message we can reset the base_time when
needed. This can then be used to implement base_time redistribution in
flushing seeks so that we can remove the explicit seek handling.
Perform latency query and configuration when going to PLAYING.
* libs/gst/base/gstbasesink.c: (gst_base_sink_commit_state),
(gst_base_sink_query), (gst_base_sink_change_state):
Post new ASYNC_START/ASYNC_DONE messages.
* tests/check/generic/sinks.c: (GST_START_TEST):
Fix test because the bin will not set the async element to PLAYING right
away.
* tests/check/gst/gstbin.c: (pop_async_done), (GST_START_TEST):
Make the message check a little stronger.
Handle ASYNC messages.
* tests/check/pipelines/cleanup.c: (GST_START_TEST):
* tests/check/pipelines/simple-launch-lines.c: (GST_START_TEST):
Expect ASYNC_DONE messages.
2007-03-19 10:47:56 +00:00
|
|
|
|
check/: Check fixes, use API as stated in design docs, remove hacks.
Original commit message from CVS:
* check/Makefile.am:
* check/generic/states.c: (GST_START_TEST):
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (gst_pipeline_suite):
* check/states/sinks.c: (GST_START_TEST):
* check/states/sinks2.c: (GST_START_TEST), (gst_object_suite),
(main):
Check fixes, use API as stated in design docs, remove hacks.
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_change_state):
Catch stopping our task while we're shutting down.
* gst/gstbin.c: (gst_bin_init), (gst_bin_add_func),
(gst_bin_remove_func), (gst_bin_get_state_func),
(gst_bin_recalc_state), (gst_bin_change_state_func),
(bin_bus_handler):
* gst/gstbin.h:
* gst/gstelement.c: (gst_element_init),
(gst_element_get_state_func), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state),
(gst_element_set_state), (gst_element_change_state),
(gst_element_change_state_func):
* gst/gstelement.h:
New state change algorithm (see #318116)
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_set_property),
(gst_pipeline_get_property), (do_pipeline_seek),
(gst_pipeline_change_state), (gst_pipeline_provide_clock_func):
* gst/gstpipeline.h:
Remove crude state change hacks.
* gst/gstutils.h:
Remove crude hacks.
* tools/gst-launch.c: (main):
Fixes for state change. Needs some more work to fully use the
new stuff.
2005-10-10 16:38:26 +00:00
|
|
|
/**
|
|
|
|
* GST_STATE_RETURN:
|
2005-11-10 11:17:26 +00:00
|
|
|
* @elem: a #GstElement to return the last state result for.
|
check/: Check fixes, use API as stated in design docs, remove hacks.
Original commit message from CVS:
* check/Makefile.am:
* check/generic/states.c: (GST_START_TEST):
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (gst_pipeline_suite):
* check/states/sinks.c: (GST_START_TEST):
* check/states/sinks2.c: (GST_START_TEST), (gst_object_suite),
(main):
Check fixes, use API as stated in design docs, remove hacks.
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_change_state):
Catch stopping our task while we're shutting down.
* gst/gstbin.c: (gst_bin_init), (gst_bin_add_func),
(gst_bin_remove_func), (gst_bin_get_state_func),
(gst_bin_recalc_state), (gst_bin_change_state_func),
(bin_bus_handler):
* gst/gstbin.h:
* gst/gstelement.c: (gst_element_init),
(gst_element_get_state_func), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state),
(gst_element_set_state), (gst_element_change_state),
(gst_element_change_state_func):
* gst/gstelement.h:
New state change algorithm (see #318116)
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_set_property),
(gst_pipeline_get_property), (do_pipeline_seek),
(gst_pipeline_change_state), (gst_pipeline_provide_clock_func):
* gst/gstpipeline.h:
Remove crude state change hacks.
* gst/gstutils.h:
Remove crude hacks.
* tools/gst-launch.c: (main):
Fixes for state change. Needs some more work to fully use the
new stuff.
2005-10-10 16:38:26 +00:00
|
|
|
*
|
2005-11-10 11:17:26 +00:00
|
|
|
* This macro returns the last #GstStateChangeReturn value.
|
check/: Check fixes, use API as stated in design docs, remove hacks.
Original commit message from CVS:
* check/Makefile.am:
* check/generic/states.c: (GST_START_TEST):
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (gst_pipeline_suite):
* check/states/sinks.c: (GST_START_TEST):
* check/states/sinks2.c: (GST_START_TEST), (gst_object_suite),
(main):
Check fixes, use API as stated in design docs, remove hacks.
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_change_state):
Catch stopping our task while we're shutting down.
* gst/gstbin.c: (gst_bin_init), (gst_bin_add_func),
(gst_bin_remove_func), (gst_bin_get_state_func),
(gst_bin_recalc_state), (gst_bin_change_state_func),
(bin_bus_handler):
* gst/gstbin.h:
* gst/gstelement.c: (gst_element_init),
(gst_element_get_state_func), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state),
(gst_element_set_state), (gst_element_change_state),
(gst_element_change_state_func):
* gst/gstelement.h:
New state change algorithm (see #318116)
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_set_property),
(gst_pipeline_get_property), (do_pipeline_seek),
(gst_pipeline_change_state), (gst_pipeline_provide_clock_func):
* gst/gstpipeline.h:
Remove crude state change hacks.
* gst/gstutils.h:
Remove crude hacks.
* tools/gst-launch.c: (main):
Fixes for state change. Needs some more work to fully use the
new stuff.
2005-10-10 16:38:26 +00:00
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#define GST_STATE_RETURN(elem) (GST_ELEMENT_CAST(elem)->last_return)
|
check/: Check fixes, use API as stated in design docs, remove hacks.
Original commit message from CVS:
* check/Makefile.am:
* check/generic/states.c: (GST_START_TEST):
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (gst_pipeline_suite):
* check/states/sinks.c: (GST_START_TEST):
* check/states/sinks2.c: (GST_START_TEST), (gst_object_suite),
(main):
Check fixes, use API as stated in design docs, remove hacks.
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_change_state):
Catch stopping our task while we're shutting down.
* gst/gstbin.c: (gst_bin_init), (gst_bin_add_func),
(gst_bin_remove_func), (gst_bin_get_state_func),
(gst_bin_recalc_state), (gst_bin_change_state_func),
(bin_bus_handler):
* gst/gstbin.h:
* gst/gstelement.c: (gst_element_init),
(gst_element_get_state_func), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state),
(gst_element_set_state), (gst_element_change_state),
(gst_element_change_state_func):
* gst/gstelement.h:
New state change algorithm (see #318116)
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_set_property),
(gst_pipeline_get_property), (do_pipeline_seek),
(gst_pipeline_change_state), (gst_pipeline_provide_clock_func):
* gst/gstpipeline.h:
Remove crude state change hacks.
* gst/gstutils.h:
Remove crude hacks.
* tools/gst-launch.c: (main):
Fixes for state change. Needs some more work to fully use the
new stuff.
2005-10-10 16:38:26 +00:00
|
|
|
|
2009-08-28 16:14:23 +00:00
|
|
|
#define __GST_SIGN(val) ((val) < 0 ? -1 : ((val) > 0 ? 1 : 0))
|
2005-10-21 11:36:32 +00:00
|
|
|
/**
|
|
|
|
* GST_STATE_GET_NEXT:
|
2005-11-10 11:17:26 +00:00
|
|
|
* @cur: A starting #GstState
|
|
|
|
* @pending: A target #GstState
|
2005-10-21 11:36:32 +00:00
|
|
|
*
|
2005-11-10 11:17:26 +00:00
|
|
|
* Given a current state @cur and a target state @pending, calculate the next (intermediate)
|
|
|
|
* #GstState.
|
2005-10-21 11:36:32 +00:00
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#define GST_STATE_GET_NEXT(cur,pending) ((cur) + __GST_SIGN ((gint)(pending) - (gint)(cur)))
|
2005-10-21 11:36:32 +00:00
|
|
|
/**
|
|
|
|
* GST_STATE_TRANSITION:
|
|
|
|
* @cur: A current state
|
|
|
|
* @next: A next state
|
|
|
|
*
|
2006-06-06 09:47:40 +00:00
|
|
|
* Given a current state @cur and a next state @next, calculate the associated
|
2005-11-10 11:17:26 +00:00
|
|
|
* #GstStateChange transition.
|
2005-10-21 11:36:32 +00:00
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#define GST_STATE_TRANSITION(cur,next) ((GstStateChange)(((cur)<<3)|(next)))
|
2005-10-21 11:36:32 +00:00
|
|
|
/**
|
|
|
|
* GST_STATE_TRANSITION_CURRENT:
|
2006-06-06 09:47:40 +00:00
|
|
|
* @trans: A #GstStateChange
|
2005-10-21 11:36:32 +00:00
|
|
|
*
|
2005-11-10 11:17:26 +00:00
|
|
|
* Given a state transition @trans, extract the current #GstState.
|
2005-10-21 11:36:32 +00:00
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#define GST_STATE_TRANSITION_CURRENT(trans) ((GstState)((trans)>>3))
|
2005-10-21 11:36:32 +00:00
|
|
|
/**
|
|
|
|
* GST_STATE_TRANSITION_NEXT:
|
2005-11-10 11:17:26 +00:00
|
|
|
* @trans: A #GstStateChange
|
2005-10-21 11:36:32 +00:00
|
|
|
*
|
2005-11-10 11:17:26 +00:00
|
|
|
* Given a state transition @trans, extract the next #GstState.
|
2005-10-21 11:36:32 +00:00
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#define GST_STATE_TRANSITION_NEXT(trans) ((GstState)((trans)&0x7))
|
check/: Check fixes, use API as stated in design docs, remove hacks.
Original commit message from CVS:
* check/Makefile.am:
* check/generic/states.c: (GST_START_TEST):
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (gst_pipeline_suite):
* check/states/sinks.c: (GST_START_TEST):
* check/states/sinks2.c: (GST_START_TEST), (gst_object_suite),
(main):
Check fixes, use API as stated in design docs, remove hacks.
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_change_state):
Catch stopping our task while we're shutting down.
* gst/gstbin.c: (gst_bin_init), (gst_bin_add_func),
(gst_bin_remove_func), (gst_bin_get_state_func),
(gst_bin_recalc_state), (gst_bin_change_state_func),
(bin_bus_handler):
* gst/gstbin.h:
* gst/gstelement.c: (gst_element_init),
(gst_element_get_state_func), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state),
(gst_element_set_state), (gst_element_change_state),
(gst_element_change_state_func):
* gst/gstelement.h:
New state change algorithm (see #318116)
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_set_property),
(gst_pipeline_get_property), (do_pipeline_seek),
(gst_pipeline_change_state), (gst_pipeline_provide_clock_func):
* gst/gstpipeline.h:
Remove crude state change hacks.
* gst/gstutils.h:
Remove crude hacks.
* tools/gst-launch.c: (main):
Fixes for state change. Needs some more work to fully use the
new stuff.
2005-10-10 16:38:26 +00:00
|
|
|
|
2005-09-11 12:57:36 +00:00
|
|
|
/**
|
|
|
|
* GstStateChange:
|
|
|
|
* @GST_STATE_CHANGE_NULL_TO_READY : state change from NULL to READY
|
|
|
|
* @GST_STATE_CHANGE_READY_TO_PAUSED : state change from READY to PAUSED
|
|
|
|
* @GST_STATE_CHANGE_PAUSED_TO_PLAYING: state change from PAUSED to PLAYING
|
|
|
|
* @GST_STATE_CHANGE_PLAYING_TO_PAUSED: state change from PLAYING to PAUSED
|
|
|
|
* @GST_STATE_CHANGE_PAUSED_TO_READY : state change from PAUSED to READY
|
|
|
|
* @GST_STATE_CHANGE_READY_TO_NULL : state change from READY to NULL
|
2005-10-21 11:36:32 +00:00
|
|
|
*
|
|
|
|
* The different (interesting) state changes that are passed to the
|
|
|
|
* state change functions of elements.
|
2005-09-11 12:57:36 +00:00
|
|
|
*/
|
2005-09-02 16:44:57 +00:00
|
|
|
typedef enum /*< flags=0 >*/
|
2005-09-02 15:42:00 +00:00
|
|
|
{
|
2009-08-28 16:14:23 +00:00
|
|
|
GST_STATE_CHANGE_NULL_TO_READY = (GST_STATE_NULL<<3) | GST_STATE_READY,
|
|
|
|
GST_STATE_CHANGE_READY_TO_PAUSED = (GST_STATE_READY<<3) | GST_STATE_PAUSED,
|
|
|
|
GST_STATE_CHANGE_PAUSED_TO_PLAYING = (GST_STATE_PAUSED<<3) | GST_STATE_PLAYING,
|
|
|
|
GST_STATE_CHANGE_PLAYING_TO_PAUSED = (GST_STATE_PLAYING<<3) | GST_STATE_PAUSED,
|
|
|
|
GST_STATE_CHANGE_PAUSED_TO_READY = (GST_STATE_PAUSED<<3) | GST_STATE_READY,
|
|
|
|
GST_STATE_CHANGE_READY_TO_NULL = (GST_STATE_READY<<3) | GST_STATE_NULL
|
2005-09-02 15:42:00 +00:00
|
|
|
} GstStateChange;
|
2000-12-23 03:17:52 +00:00
|
|
|
|
2005-09-23 14:31:21 +00:00
|
|
|
/**
|
|
|
|
* GstElementFlags:
|
|
|
|
* @GST_ELEMENT_LOCKED_STATE: ignore state changes from parent
|
|
|
|
* @GST_ELEMENT_IS_SINK: the element is a sink
|
|
|
|
* @GST_ELEMENT_UNPARENTING: Child is being removed from the parent bin.
|
|
|
|
* gst_bin_remove() on a child already being removed immediately returns FALSE
|
|
|
|
* @GST_ELEMENT_FLAG_LAST: offset to define more flags
|
|
|
|
*
|
|
|
|
* The standard flags that an element may have.
|
|
|
|
*/
|
2005-03-07 18:27:42 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
renamed GST_FLAGS macros to GST_OBJECT_FLAGS moved bitshift from macro to enum definition
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* docs/gst/gstreamer-sections.txt:
* gst/base/gstbasesink.c: (gst_base_sink_init):
* gst/base/gstbasesrc.c: (gst_base_src_init),
(gst_base_src_get_range), (gst_base_src_check_get_range),
(gst_base_src_start), (gst_base_src_stop):
* gst/base/gstbasesrc.h:
* gst/elements/gstfakesrc.c: (gst_fake_src_set_property):
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
(bin_element_is_sink), (reset_degree), (gst_bin_element_set_state),
(bin_bus_handler):
* gst/gstbin.h:
* gst/gstbuffer.h:
* gst/gstbus.c: (gst_bus_post), (gst_bus_set_flushing):
* gst/gstbus.h:
* gst/gstelement.c: (gst_element_is_locked_state),
(gst_element_set_locked_state), (gst_element_commit_state),
(gst_element_set_state):
* gst/gstelement.h:
* gst/gstindex.c: (gst_index_init):
* gst/gstindex.h:
* gst/gstminiobject.h:
* gst/gstobject.c: (gst_object_init), (gst_object_sink),
(gst_object_set_parent):
* gst/gstobject.h:
* gst/gstpad.c: (gst_pad_set_blocked_async), (gst_pad_is_blocked),
(gst_pad_get_caps_unlocked), (gst_pad_set_caps):
* gst/gstpad.h:
* gst/gstpadtemplate.h:
* gst/gstpipeline.c: (gst_pipeline_provide_clock_func),
(gst_pipeline_use_clock), (gst_pipeline_auto_clock):
* gst/gstpipeline.h:
* gst/indexers/gstfileindex.c: (gst_file_index_load),
(gst_file_index_commit):
* testsuite/bytestream/filepadsink.c: (gst_fp_sink_init):
* testsuite/pad/link.c: (gst_test_src_init),
(gst_test_filter_init), (gst_test_sink_init):
* testsuite/states/locked.c: (main):
renamed GST_FLAGS macros to GST_OBJECT_FLAGS
moved bitshift from macro to enum definition
2005-10-12 14:28:39 +00:00
|
|
|
GST_ELEMENT_LOCKED_STATE = (GST_OBJECT_FLAG_LAST << 0),
|
|
|
|
GST_ELEMENT_IS_SINK = (GST_OBJECT_FLAG_LAST << 1),
|
|
|
|
GST_ELEMENT_UNPARENTING = (GST_OBJECT_FLAG_LAST << 2),
|
|
|
|
/* padding */
|
|
|
|
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
|
|
|
|
2005-09-23 14:31:21 +00:00
|
|
|
/**
|
|
|
|
* GST_ELEMENT_IS_LOCKED_STATE:
|
2005-11-10 11:17:26 +00:00
|
|
|
* @elem: A #GstElement to query
|
2005-09-23 14:31:21 +00:00
|
|
|
*
|
2005-10-24 09:13:27 +00:00
|
|
|
* Check if the element is in the locked state and therefore will ignore state
|
2005-09-23 14:31:21 +00:00
|
|
|
* changes from its parent object.
|
|
|
|
*/
|
2005-11-10 11:17:26 +00:00
|
|
|
#define GST_ELEMENT_IS_LOCKED_STATE(elem) (GST_OBJECT_FLAG_IS_SET(elem,GST_ELEMENT_LOCKED_STATE))
|
2000-07-17 17:14:15 +00:00
|
|
|
|
2005-09-23 14:31:21 +00:00
|
|
|
/**
|
|
|
|
* GST_ELEMENT_NAME:
|
2005-11-10 11:17:26 +00:00
|
|
|
* @elem: A #GstElement to query
|
2005-09-23 14:31:21 +00:00
|
|
|
*
|
|
|
|
* Gets the name of this element. Use only in core as this is not
|
|
|
|
* ABI-compatible. Others use gst_element_get_name()
|
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#define GST_ELEMENT_NAME(elem) (GST_OBJECT_NAME(elem))
|
2005-09-23 14:31:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GST_ELEMENT_PARENT:
|
2005-11-10 11:17:26 +00:00
|
|
|
* @elem: A #GstElement to query
|
2005-09-23 14:31:21 +00:00
|
|
|
*
|
|
|
|
* Get the parent object of this element.
|
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#define GST_ELEMENT_PARENT(elem) (GST_ELEMENT_CAST(GST_OBJECT_PARENT(elem)))
|
2005-09-23 14:31:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GST_ELEMENT_BUS:
|
2005-11-10 11:17:26 +00:00
|
|
|
* @elem: A #GstElement to query
|
2005-09-23 14:31:21 +00:00
|
|
|
*
|
|
|
|
* Get the message bus of this element.
|
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#define GST_ELEMENT_BUS(elem) (GST_ELEMENT_CAST(elem)->bus)
|
2005-09-23 14:31:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GST_ELEMENT_CLOCK:
|
2005-11-10 11:17:26 +00:00
|
|
|
* @elem: A #GstElement to query
|
2005-09-23 14:31:21 +00:00
|
|
|
*
|
|
|
|
* Get the clock of this element
|
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#define GST_ELEMENT_CLOCK(elem) (GST_ELEMENT_CAST(elem)->clock)
|
2005-09-23 14:31:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GST_ELEMENT_PADS:
|
2005-11-10 11:17:26 +00:00
|
|
|
* @elem: A #GstElement to query
|
2005-09-23 14:31:21 +00:00
|
|
|
*
|
|
|
|
* Get the pads of this elements.
|
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#define GST_ELEMENT_PADS(elem) (GST_ELEMENT_CAST(elem)->pads)
|
2000-07-17 17:14:15 +00:00
|
|
|
|
2009-05-26 09:53:05 +00:00
|
|
|
/**
|
|
|
|
* GST_ELEMENT_START_TIME:
|
|
|
|
* @elem: a #GstElement to return the start time for.
|
|
|
|
*
|
|
|
|
* This macro returns the start_time of the @elem. The start_time is the
|
|
|
|
* running_time of the pipeline when the element went to PAUSED.
|
|
|
|
*
|
|
|
|
* Since: 0.10.24
|
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#define GST_ELEMENT_START_TIME(elem) (GST_ELEMENT_CAST(elem)->abidata.ABI.start_time)
|
2009-05-26 09:53:05 +00:00
|
|
|
|
2005-01-24 17:04:08 +00:00
|
|
|
/**
|
|
|
|
* GST_ELEMENT_ERROR:
|
2007-01-09 15:38:58 +00:00
|
|
|
* @el: the element that generates the error
|
2008-07-25 10:24:43 +00:00
|
|
|
* @domain: like CORE, LIBRARY, RESOURCE or STREAM (see #gstreamer-GstGError)
|
|
|
|
* @code: error code defined for that domain (see #gstreamer-GstGError)
|
2005-06-29 12:23:35 +00:00
|
|
|
* @text: the message to display (format string and args enclosed in
|
|
|
|
parentheses)
|
|
|
|
* @debug: debugging information for the message (format string and args
|
|
|
|
enclosed in parentheses)
|
2005-01-24 17:04:08 +00:00
|
|
|
*
|
|
|
|
* Utility function that elements can use in case they encountered a fatal
|
2007-01-09 15:38:58 +00:00
|
|
|
* data processing error. The pipeline will post an error message and the
|
2005-01-24 17:04:08 +00:00
|
|
|
* application will be requested to stop further media processing.
|
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#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_WARNING_OBJECT (el, "error: %s", __txt); \
|
|
|
|
if (__dbg) \
|
|
|
|
GST_WARNING_OBJECT (el, "error: %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__); \
|
2004-01-30 03:54:08 +00:00
|
|
|
} G_STMT_END
|
2004-01-18 21:36:20 +00:00
|
|
|
|
2005-09-23 14:31:21 +00:00
|
|
|
/**
|
|
|
|
* GST_ELEMENT_WARNING:
|
2007-01-09 15:38:58 +00:00
|
|
|
* @el: the element that generates the warning
|
2007-02-21 15:34:14 +00:00
|
|
|
* @domain: like CORE, LIBRARY, RESOURCE or STREAM (see #gstreamer-GstGError)
|
|
|
|
* @code: error code defined for that domain (see #gstreamer-GstGError)
|
2005-09-23 14:31:21 +00:00
|
|
|
* @text: the message to display (format string and args enclosed in
|
|
|
|
parentheses)
|
|
|
|
* @debug: debugging information for the message (format string and args
|
|
|
|
enclosed in parentheses)
|
|
|
|
*
|
|
|
|
* Utility function that elements can use in case they encountered a non-fatal
|
2007-01-09 15:38:58 +00:00
|
|
|
* data processing problem. The pipeline will post a warning message and the
|
2005-09-23 14:31:21 +00:00
|
|
|
* application will be informed.
|
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#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, "warning: %s", __txt); \
|
|
|
|
if (__dbg) \
|
|
|
|
GST_WARNING_OBJECT (el, "warning: %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__); \
|
2005-03-21 17:34:02 +00:00
|
|
|
} G_STMT_END
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2007-02-21 15:34:14 +00:00
|
|
|
/**
|
|
|
|
* GST_ELEMENT_INFO:
|
|
|
|
* @el: the element that generates the information
|
|
|
|
* @domain: like CORE, LIBRARY, RESOURCE or STREAM (see #gstreamer-GstGError)
|
|
|
|
* @code: error code defined for that domain (see #gstreamer-GstGError)
|
|
|
|
* @text: the message to display (format string and args enclosed in
|
|
|
|
parentheses)
|
|
|
|
* @debug: debugging information for the message (format string and args
|
|
|
|
enclosed in parentheses)
|
|
|
|
*
|
|
|
|
* Utility function that elements can use in case they want to inform
|
|
|
|
* the application of something noteworthy that is not an error.
|
|
|
|
* The pipeline will post a warning message and the
|
|
|
|
* application will be informed.
|
2007-02-28 16:43:43 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.12
|
2007-02-21 15:34:14 +00:00
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#define GST_ELEMENT_INFO(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_INFO_OBJECT (el, "info: %s", __txt); \
|
|
|
|
if (__dbg) \
|
|
|
|
GST_INFO_OBJECT (el, "info: %s", __dbg); \
|
|
|
|
gst_element_message_full (GST_ELEMENT(el), GST_MESSAGE_INFO, \
|
|
|
|
GST_ ## domain ## _ERROR, GST_ ## domain ## _ERROR_ ## code, \
|
|
|
|
__txt, __dbg, __FILE__, GST_FUNCTION, __LINE__); \
|
2007-02-21 15:34:14 +00:00
|
|
|
} G_STMT_END
|
|
|
|
|
2005-03-08 17:42:29 +00:00
|
|
|
/* the state change mutexes and conds */
|
2005-10-05 22:35:14 +00:00
|
|
|
/**
|
2005-11-10 11:17:26 +00:00
|
|
|
* GST_STATE_GET_LOCK:
|
|
|
|
* @elem: a #GstElement
|
2005-10-05 22:35:14 +00:00
|
|
|
*
|
2005-11-10 11:17:26 +00:00
|
|
|
* Get a reference to the state lock of @elem.
|
|
|
|
* This lock is used by the core. It is taken while getting or setting
|
2005-10-05 22:35:14 +00:00
|
|
|
* the state, during state changes, and while finalizing.
|
|
|
|
*/
|
2005-11-10 11:17:26 +00:00
|
|
|
#define GST_STATE_GET_LOCK(elem) (GST_ELEMENT_CAST(elem)->state_lock)
|
|
|
|
/**
|
|
|
|
* GST_STATE_GET_COND:
|
2006-06-06 09:47:40 +00:00
|
|
|
* @elem: a #GstElement
|
2005-11-10 11:17:26 +00:00
|
|
|
*
|
|
|
|
* Get the conditional used to signal the completion of a state change.
|
|
|
|
*/
|
|
|
|
#define GST_STATE_GET_COND(elem) (GST_ELEMENT_CAST(elem)->state_cond)
|
|
|
|
|
2005-10-10 14:33:13 +00:00
|
|
|
#define GST_STATE_LOCK(elem) g_static_rec_mutex_lock(GST_STATE_GET_LOCK(elem))
|
|
|
|
#define GST_STATE_TRYLOCK(elem) g_static_rec_mutex_trylock(GST_STATE_GET_LOCK(elem))
|
|
|
|
#define GST_STATE_UNLOCK(elem) g_static_rec_mutex_unlock(GST_STATE_GET_LOCK(elem))
|
|
|
|
#define GST_STATE_UNLOCK_FULL(elem) g_static_rec_mutex_unlock_full(GST_STATE_GET_LOCK(elem))
|
|
|
|
#define GST_STATE_LOCK_FULL(elem,t) g_static_rec_mutex_lock_full(GST_STATE_GET_LOCK(elem), t)
|
check/: Small state change torture test.
Original commit message from CVS:
* check/Makefile.am:
* check/pipelines/stress.c: (GST_START_TEST),
(simple_launch_lines_suite), (main):
Small state change torture test.
* docs/design/part-states.txt:
* gst/base/gstbasesink.c: (gst_base_sink_commit_state),
(gst_base_sink_handle_object), (gst_base_sink_event), (do_playing),
(gst_base_sink_change_state):
Never take state lock from streaming thread, clean up ugly
hacks. Unfortunatly core does not yet support nice ways to
async commit state.
* gst/gstbin.c: (gst_bin_remove_func), (gst_bin_recalc_state),
(bin_bus_handler):
Start state recalc if a STATE_DIRTY message is posted, but only
on the toplevel bin.
* gst/gstelement.c: (gst_element_sync_state_with_parent),
(gst_element_get_state_func), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state),
(gst_element_set_state_func), (gst_element_change_state):
* gst/gstelement.h:
State variables are now protected with the LOCK, the state
lock is only used to serialize _set_state().
2005-10-18 17:06:29 +00:00
|
|
|
#define GST_STATE_WAIT(elem) g_cond_wait (GST_STATE_GET_COND (elem), \
|
2009-08-28 16:14:23 +00:00
|
|
|
GST_OBJECT_GET_LOCK (elem))
|
check/: Small state change torture test.
Original commit message from CVS:
* check/Makefile.am:
* check/pipelines/stress.c: (GST_START_TEST),
(simple_launch_lines_suite), (main):
Small state change torture test.
* docs/design/part-states.txt:
* gst/base/gstbasesink.c: (gst_base_sink_commit_state),
(gst_base_sink_handle_object), (gst_base_sink_event), (do_playing),
(gst_base_sink_change_state):
Never take state lock from streaming thread, clean up ugly
hacks. Unfortunatly core does not yet support nice ways to
async commit state.
* gst/gstbin.c: (gst_bin_remove_func), (gst_bin_recalc_state),
(bin_bus_handler):
Start state recalc if a STATE_DIRTY message is posted, but only
on the toplevel bin.
* gst/gstelement.c: (gst_element_sync_state_with_parent),
(gst_element_get_state_func), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state),
(gst_element_set_state_func), (gst_element_change_state):
* gst/gstelement.h:
State variables are now protected with the LOCK, the state
lock is only used to serialize _set_state().
2005-10-18 17:06:29 +00:00
|
|
|
#define GST_STATE_TIMED_WAIT(elem, timeval) g_cond_timed_wait (GST_STATE_GET_COND (elem), \
|
2009-08-28 16:14:23 +00:00
|
|
|
GST_OBJECT_GET_LOCK (elem), timeval)
|
2005-03-08 17:42:29 +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));
|
|
|
|
|
2005-11-10 11:17:26 +00:00
|
|
|
/**
|
|
|
|
* GstElement:
|
|
|
|
* @state_lock: Used to serialize execution of gst_element_set_state()
|
|
|
|
* @state_cond: Used to signal completion of a state change
|
2006-06-06 09:47:40 +00:00
|
|
|
* @state_cookie: Used to detect concurrent execution of
|
|
|
|
* gst_element_set_state() and gst_element_get_state()
|
2005-11-10 11:17:26 +00:00
|
|
|
* @current_state: the current state of an element
|
2006-06-06 09:47:40 +00:00
|
|
|
* @next_state: the next state of an element, can be #GST_STATE_VOID_PENDING if
|
|
|
|
* the element is in the correct state.
|
|
|
|
* @pending_state: the final state the element should go to, can be
|
|
|
|
* #GST_STATE_VOID_PENDING if the element is in the correct state
|
2005-11-10 11:17:26 +00:00
|
|
|
* @last_return: the last return value of an element state change
|
2006-06-06 09:47:40 +00:00
|
|
|
* @bus: the bus of the element. This bus is provided to the element by the
|
|
|
|
* parent element or the application. A #GstPipeline has a bus of its own.
|
2009-09-09 23:29:10 +00:00
|
|
|
* @clock: the clock of the element. This clock is usually provided to the
|
2006-06-06 09:47:40 +00:00
|
|
|
* element by the toplevel #GstPipeline.
|
|
|
|
* @base_time: the time of the clock right before the element is set to
|
|
|
|
* PLAYING. Subtracting @base_time from the current clock time in the PLAYING
|
2009-05-21 15:32:00 +00:00
|
|
|
* state will yield the running_time against the clock.
|
2005-11-10 11:17:26 +00:00
|
|
|
* @numpads: number of pads of the element, includes both source and sink pads.
|
|
|
|
* @pads: list of pads
|
|
|
|
* @numsrcpads: number of source pads of the element.
|
|
|
|
* @srcpads: list of source pads
|
|
|
|
* @numsinkpads: number of sink pads of the element.
|
|
|
|
* @sinkpads: list of sink pads
|
|
|
|
* @pads_cookie: updated whenever the a pad is added or removed
|
|
|
|
*
|
|
|
|
* GStreamer element abstract base class.
|
|
|
|
*/
|
2005-03-09 16:10:59 +00:00
|
|
|
struct _GstElement
|
2005-03-08 17:42:29 +00:00
|
|
|
{
|
2009-08-28 16:14:23 +00:00
|
|
|
GstObject object;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
check/: Small state change torture test.
Original commit message from CVS:
* check/Makefile.am:
* check/pipelines/stress.c: (GST_START_TEST),
(simple_launch_lines_suite), (main):
Small state change torture test.
* docs/design/part-states.txt:
* gst/base/gstbasesink.c: (gst_base_sink_commit_state),
(gst_base_sink_handle_object), (gst_base_sink_event), (do_playing),
(gst_base_sink_change_state):
Never take state lock from streaming thread, clean up ugly
hacks. Unfortunatly core does not yet support nice ways to
async commit state.
* gst/gstbin.c: (gst_bin_remove_func), (gst_bin_recalc_state),
(bin_bus_handler):
Start state recalc if a STATE_DIRTY message is posted, but only
on the toplevel bin.
* gst/gstelement.c: (gst_element_sync_state_with_parent),
(gst_element_get_state_func), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state),
(gst_element_set_state_func), (gst_element_change_state):
* gst/gstelement.h:
State variables are now protected with the LOCK, the state
lock is only used to serialize _set_state().
2005-10-18 17:06:29 +00:00
|
|
|
/*< public >*/ /* with LOCK */
|
2005-10-10 14:33:13 +00:00
|
|
|
GStaticRecMutex *state_lock;
|
2005-11-10 11:17:26 +00:00
|
|
|
|
|
|
|
/* element state */
|
2005-03-08 17:42:29 +00:00
|
|
|
GCond *state_cond;
|
2009-08-28 16:14:23 +00:00
|
|
|
guint32 state_cookie;
|
check/: Check fixes, use API as stated in design docs, remove hacks.
Original commit message from CVS:
* check/Makefile.am:
* check/generic/states.c: (GST_START_TEST):
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (gst_pipeline_suite):
* check/states/sinks.c: (GST_START_TEST):
* check/states/sinks2.c: (GST_START_TEST), (gst_object_suite),
(main):
Check fixes, use API as stated in design docs, remove hacks.
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_change_state):
Catch stopping our task while we're shutting down.
* gst/gstbin.c: (gst_bin_init), (gst_bin_add_func),
(gst_bin_remove_func), (gst_bin_get_state_func),
(gst_bin_recalc_state), (gst_bin_change_state_func),
(bin_bus_handler):
* gst/gstbin.h:
* gst/gstelement.c: (gst_element_init),
(gst_element_get_state_func), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state),
(gst_element_set_state), (gst_element_change_state),
(gst_element_change_state_func):
* gst/gstelement.h:
New state change algorithm (see #318116)
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_set_property),
(gst_pipeline_get_property), (do_pipeline_seek),
(gst_pipeline_change_state), (gst_pipeline_provide_clock_func):
* gst/gstpipeline.h:
Remove crude state change hacks.
* gst/gstutils.h:
Remove crude hacks.
* tools/gst-launch.c: (main):
Fixes for state change. Needs some more work to fully use the
new stuff.
2005-10-10 16:38:26 +00:00
|
|
|
GstState current_state;
|
|
|
|
GstState next_state;
|
|
|
|
GstState pending_state;
|
|
|
|
GstStateChangeReturn last_return;
|
|
|
|
|
2009-08-28 16:14:23 +00:00
|
|
|
GstBus *bus;
|
2002-12-19 21:31:03 +00:00
|
|
|
|
|
|
|
/* allocated clock */
|
2009-08-28 16:14:23 +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
|
|
|
|
2005-03-08 17:42:29 +00:00
|
|
|
/* element pads, these lists can only be iterated while holding
|
2005-03-07 18:27:42 +00:00
|
|
|
* the LOCK or checking the cookie after each LOCK. */
|
2005-03-08 17:42:29 +00:00
|
|
|
guint16 numpads;
|
|
|
|
GList *pads;
|
|
|
|
guint16 numsrcpads;
|
|
|
|
GList *srcpads;
|
|
|
|
guint16 numsinkpads;
|
|
|
|
GList *sinkpads;
|
|
|
|
guint32 pads_cookie;
|
|
|
|
|
|
|
|
/*< private >*/
|
docs/gst/gstreamer-sections.txt: Add new element field and method.
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
Add new element field and method.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(bin_remove_messages), (gst_bin_add_func), (gst_bin_remove_func),
(gst_bin_recalc_state), (gst_bin_get_state_func),
(gst_bin_element_set_state), (gst_bin_change_state_func),
(gst_bin_continue_func), (bin_bus_handler),
(bin_push_state_continue), (bin_handle_async_start),
(bin_handle_async_done), (gst_bin_handle_message_func):
Make async state changes a bit smarter by using new ASYNC_START and
ASYNC_DONE messages. This reduces the number of times we run the state
recalculation thread.
Don't change state of element with a pending ASYNC_START message.
Deprecate STATE_DIRTY messages.
* gst/gstelement.c: (gst_element_init), (gst_element_send_event),
(gst_element_get_state_func), (gst_element_continue_state),
(gst_element_lost_state), (gst_element_set_state_func),
(gst_element_change_state):
* gst/gstelement.h:
Keep the state that was last set by the app in a new element field.
Don't allow state changes when handling an element event.
Post ASYNC_START and ASYNC_DONE messages.
Change lost_state so that we go to PAUSED and wait for the parent to set
us to PLAYING again (so latency calculation can be performed)
Export gst_element_change_state() method so that subclasses can use it.
API: gst_element_change_state()
API: GST_STATE_TARGET
* gst/gstpipeline.c: (gst_pipeline_class_init),
(reset_stream_time), (gst_pipeline_change_state),
(gst_pipeline_handle_message), (gst_pipeline_set_new_stream_time):
Using the new ASYNC_START message we can reset the base_time when
needed. This can then be used to implement base_time redistribution in
flushing seeks so that we can remove the explicit seek handling.
Perform latency query and configuration when going to PLAYING.
* libs/gst/base/gstbasesink.c: (gst_base_sink_commit_state),
(gst_base_sink_query), (gst_base_sink_change_state):
Post new ASYNC_START/ASYNC_DONE messages.
* tests/check/generic/sinks.c: (GST_START_TEST):
Fix test because the bin will not set the async element to PLAYING right
away.
* tests/check/gst/gstbin.c: (pop_async_done), (GST_START_TEST):
Make the message check a little stronger.
Handle ASYNC messages.
* tests/check/pipelines/cleanup.c: (GST_START_TEST):
* tests/check/pipelines/simple-launch-lines.c: (GST_START_TEST):
Expect ASYNC_DONE messages.
2007-03-19 10:47:56 +00:00
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
/* state set by application */
|
|
|
|
GstState target_state;
|
2009-05-26 09:53:05 +00:00
|
|
|
/* running time of the last PAUSED state */
|
|
|
|
GstClockTime start_time;
|
docs/gst/gstreamer-sections.txt: Add new element field and method.
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
Add new element field and method.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(bin_remove_messages), (gst_bin_add_func), (gst_bin_remove_func),
(gst_bin_recalc_state), (gst_bin_get_state_func),
(gst_bin_element_set_state), (gst_bin_change_state_func),
(gst_bin_continue_func), (bin_bus_handler),
(bin_push_state_continue), (bin_handle_async_start),
(bin_handle_async_done), (gst_bin_handle_message_func):
Make async state changes a bit smarter by using new ASYNC_START and
ASYNC_DONE messages. This reduces the number of times we run the state
recalculation thread.
Don't change state of element with a pending ASYNC_START message.
Deprecate STATE_DIRTY messages.
* gst/gstelement.c: (gst_element_init), (gst_element_send_event),
(gst_element_get_state_func), (gst_element_continue_state),
(gst_element_lost_state), (gst_element_set_state_func),
(gst_element_change_state):
* gst/gstelement.h:
Keep the state that was last set by the app in a new element field.
Don't allow state changes when handling an element event.
Post ASYNC_START and ASYNC_DONE messages.
Change lost_state so that we go to PAUSED and wait for the parent to set
us to PLAYING again (so latency calculation can be performed)
Export gst_element_change_state() method so that subclasses can use it.
API: gst_element_change_state()
API: GST_STATE_TARGET
* gst/gstpipeline.c: (gst_pipeline_class_init),
(reset_stream_time), (gst_pipeline_change_state),
(gst_pipeline_handle_message), (gst_pipeline_set_new_stream_time):
Using the new ASYNC_START message we can reset the base_time when
needed. This can then be used to implement base_time redistribution in
flushing seeks so that we can remove the explicit seek handling.
Perform latency query and configuration when going to PLAYING.
* libs/gst/base/gstbasesink.c: (gst_base_sink_commit_state),
(gst_base_sink_query), (gst_base_sink_change_state):
Post new ASYNC_START/ASYNC_DONE messages.
* tests/check/generic/sinks.c: (GST_START_TEST):
Fix test because the bin will not set the async element to PLAYING right
away.
* tests/check/gst/gstbin.c: (pop_async_done), (GST_START_TEST):
Make the message check a little stronger.
Handle ASYNC messages.
* tests/check/pipelines/cleanup.c: (GST_START_TEST):
* tests/check/pipelines/simple-launch-lines.c: (GST_START_TEST):
Expect ASYNC_DONE messages.
2007-03-19 10:47:56 +00:00
|
|
|
} ABI;
|
|
|
|
/* adding + 0 to mark ABI change to be undone later */
|
|
|
|
gpointer _gst_reserved[GST_PADDING + 0];
|
|
|
|
} abidata;
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2005-11-10 11:17:26 +00:00
|
|
|
/**
|
|
|
|
* GstElementClass:
|
|
|
|
* @parent_class: the parent class structure
|
|
|
|
* @details: #GstElementDetails for elements of this class
|
|
|
|
* @elementfactory: the #GstElementFactory that creates these elements
|
|
|
|
* @padtemplates: a #GList of #GstPadTemplate
|
2006-06-06 09:47:40 +00:00
|
|
|
* @numpadtemplates: the number of padtemplates
|
2005-11-10 11:17:26 +00:00
|
|
|
* @pad_templ_cookie: changed whenever the padtemplates change
|
|
|
|
* @request_new_pad: called when a new pad is requested
|
|
|
|
* @release_pad: called when a request pad is to be released
|
|
|
|
* @get_state: get the state of the element
|
|
|
|
* @set_state: set a new state on the element
|
|
|
|
* @change_state: called by @set_state to perform an incremental state change
|
|
|
|
* @set_bus: set a #GstBus on the element
|
|
|
|
* @provide_clock: gets the #GstClock provided by the element
|
|
|
|
* @set_clock: set the #GstClock on the element
|
|
|
|
* @get_index: set a #GstIndex on the element
|
|
|
|
* @set_index: get the #GstIndex of an element
|
|
|
|
* @send_event: send a #GstEvent to the element
|
|
|
|
* @get_query_types: get the supported #GstQueryType of this element
|
|
|
|
* @query: perform a #GstQuery on the element
|
|
|
|
*
|
|
|
|
* GStreamer element class. Override the vmethods to implement the element
|
|
|
|
* functionality.
|
|
|
|
*/
|
2005-03-07 18:27:42 +00:00
|
|
|
struct _GstElementClass
|
|
|
|
{
|
2005-03-08 17:42:29 +00:00
|
|
|
GstObjectClass parent_class;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-03-08 17:42:29 +00:00
|
|
|
/*< public >*/
|
2003-10-31 19:32:47 +00:00
|
|
|
/* the element details */
|
2009-08-28 16:14:23 +00:00
|
|
|
GstElementDetails details;
|
2003-11-02 16:46:12 +00:00
|
|
|
|
|
|
|
/* factory that the element was created from */
|
2009-08-28 16:14:23 +00:00
|
|
|
GstElementFactory *elementfactory;
|
2003-11-02 16:46:12 +00:00
|
|
|
|
2001-07-11 12:33:17 +00:00
|
|
|
/* templates for our pads */
|
2005-03-08 17:42:29 +00:00
|
|
|
GList *padtemplates;
|
|
|
|
gint numpadtemplates;
|
|
|
|
guint32 pad_templ_cookie;
|
2005-03-07 18:27:42 +00:00
|
|
|
|
2005-06-27 08:16:51 +00:00
|
|
|
/*< private >*/
|
2000-01-30 09:03:00 +00:00
|
|
|
/* signal callbacks */
|
2009-08-28 16:14:23 +00:00
|
|
|
void (*pad_added) (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
|
|
|
|
2005-06-27 08:16:51 +00:00
|
|
|
/*< public >*/
|
|
|
|
/* virtual methods for subclasses */
|
2002-12-30 17:42:11 +00:00
|
|
|
|
|
|
|
/* request/release pads */
|
2009-08-28 16:14:23 +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
|
|
|
|
2005-03-08 17:42:29 +00:00
|
|
|
/* state changes */
|
2009-08-28 16:14:23 +00:00
|
|
|
GstStateChangeReturn (*get_state) (GstElement * element, GstState * state,
|
|
|
|
GstState * pending, GstClockTime timeout);
|
|
|
|
GstStateChangeReturn (*set_state) (GstElement *element, GstState state);
|
|
|
|
GstStateChangeReturn (*change_state) (GstElement *element, GstStateChange transition);
|
2005-03-08 17:42:29 +00:00
|
|
|
|
2005-07-18 12:49:53 +00:00
|
|
|
/* bus */
|
2009-08-28 16:14:23 +00:00
|
|
|
void (*set_bus) (GstElement * element, GstBus * bus);
|
2005-03-08 17:42:29 +00:00
|
|
|
|
2002-11-27 20:47:39 +00:00
|
|
|
/* set/get clocks */
|
2009-08-28 16:14:23 +00:00
|
|
|
GstClock* (*provide_clock) (GstElement *element);
|
|
|
|
gboolean (*set_clock) (GstElement *element, GstClock *clock);
|
2002-12-30 17:42:11 +00:00
|
|
|
|
2002-12-12 22:14:36 +00:00
|
|
|
/* index */
|
2009-08-28 16:14:23 +00:00
|
|
|
GstIndex* (*get_index) (GstElement *element);
|
|
|
|
void (*set_index) (GstElement *element, GstIndex *index);
|
2002-12-19 21:31:03 +00:00
|
|
|
|
2005-05-09 10:53:13 +00:00
|
|
|
/* query functions */
|
2009-08-28 16:14:23 +00:00
|
|
|
gboolean (*send_event) (GstElement *element, GstEvent *event);
|
2005-05-09 10:53:13 +00:00
|
|
|
|
2009-08-28 16:14:23 +00:00
|
|
|
const GstQueryType* (*get_query_types) (GstElement *element);
|
|
|
|
gboolean (*query) (GstElement *element, GstQuery *query);
|
2005-03-09 16:10:59 +00:00
|
|
|
|
2005-03-08 17:42:29 +00:00
|
|
|
/*< private >*/
|
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
Docs updates, clean up some headers.
Original commit message from CVS:
* docs/design/part-MT-refcounting.txt:
* docs/design/part-conventions.txt:
* docs/design/part-gstobject.txt:
* docs/design/part-relations.txt:
* docs/design/part-standards.txt:
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
(gst_bin_remove_func), (gst_bin_remove), (gst_bin_iterate_recurse),
(gst_bin_get_by_name), (gst_bin_get_by_interface),
(gst_bin_iterate_all_by_interface):
* gst/gstbuffer.h:
* gst/gstclock.h:
* gst/gstelement.c: (gst_element_class_init),
(gst_element_change_state), (gst_element_set_loop_function):
* gst/gstelement.h:
* gst/gstiterator.c:
* gst/gstobject.c: (gst_object_class_init), (gst_object_ref),
(gst_object_unref), (gst_object_sink), (gst_object_dispose),
(gst_object_dispatch_properties_changed), (gst_object_set_name),
(gst_object_set_parent), (gst_object_unparent),
(gst_object_check_uniqueness):
* gst/gstobject.h:
Docs updates, clean up some headers.
Free iterators in GstBin.
GstObject is now looking good.
2005-03-08 14:38:06 +00:00
|
|
|
/* element class pad templates */
|
2009-08-28 16:14:23 +00:00
|
|
|
void gst_element_class_add_pad_template (GstElementClass *klass, GstPadTemplate *templ);
|
|
|
|
GstPadTemplate* gst_element_class_get_pad_template (GstElementClass *element_class, const gchar *name);
|
|
|
|
GList* gst_element_class_get_pad_template_list (GstElementClass *element_class);
|
|
|
|
void gst_element_class_set_details (GstElementClass *klass, const GstElementDetails *details);
|
|
|
|
void gst_element_class_set_details_simple (GstElementClass *klass,
|
|
|
|
const gchar *longname,
|
|
|
|
const gchar *classification,
|
|
|
|
const gchar *description,
|
|
|
|
const gchar *author);
|
2002-05-26 03:23:25 +00:00
|
|
|
|
2005-03-08 17:42:29 +00:00
|
|
|
/* element instance */
|
2009-08-28 16:14:23 +00:00
|
|
|
GType gst_element_get_type (void);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-03-08 17:42:29 +00:00
|
|
|
/* basic name and parentage stuff from GstObject */
|
2005-09-23 14:31:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_element_get_name:
|
|
|
|
* @elem: a #GstElement to set the name of.
|
|
|
|
*
|
|
|
|
* Gets the name of the element.
|
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#define gst_element_get_name(elem) gst_object_get_name(GST_OBJECT_CAST(elem))
|
2005-09-23 14:31:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_element_set_name:
|
|
|
|
* @elem: a #GstElement to set the name of.
|
2005-09-27 20:40:35 +00:00
|
|
|
* @name: the new name
|
2005-09-23 14:31:21 +00:00
|
|
|
*
|
|
|
|
* Sets the name of the element, getting rid of the old name if there was one.
|
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#define gst_element_set_name(elem,name) gst_object_set_name(GST_OBJECT_CAST(elem),name)
|
2005-09-23 14:31:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_element_get_parent:
|
|
|
|
* @elem: a #GstElement to get the parent of.
|
|
|
|
*
|
|
|
|
* Gets the parent of an element.
|
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#define gst_element_get_parent(elem) gst_object_get_parent(GST_OBJECT_CAST(elem))
|
2005-09-23 14:31:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_element_set_parent:
|
|
|
|
* @elem: a #GstElement to set the parent of.
|
2005-09-23 16:35:43 +00:00
|
|
|
* @parent: the new parent #GstObject of the element.
|
2005-09-23 14:31:21 +00:00
|
|
|
*
|
|
|
|
* Sets the parent of an element.
|
|
|
|
*/
|
2009-08-28 16:14:23 +00:00
|
|
|
#define gst_element_set_parent(elem,parent) gst_object_set_parent(GST_OBJECT_CAST(elem),parent)
|
2002-12-07 22:18:17 +00:00
|
|
|
|
2002-11-27 20:47:39 +00:00
|
|
|
/* clocking */
|
2009-08-28 16:14:23 +00:00
|
|
|
gboolean gst_element_requires_clock (GstElement *element);
|
|
|
|
gboolean gst_element_provides_clock (GstElement *element);
|
|
|
|
GstClock* gst_element_provide_clock (GstElement *element);
|
|
|
|
GstClock* gst_element_get_clock (GstElement *element);
|
|
|
|
gboolean gst_element_set_clock (GstElement *element, GstClock *clock);
|
|
|
|
void gst_element_set_base_time (GstElement *element, GstClockTime time);
|
|
|
|
GstClockTime gst_element_get_base_time (GstElement *element);
|
|
|
|
void gst_element_set_start_time (GstElement *element, GstClockTime time);
|
|
|
|
GstClockTime gst_element_get_start_time (GstElement *element);
|
2005-03-08 17:42:29 +00:00
|
|
|
|
|
|
|
/* indexes */
|
2009-08-28 16:14:23 +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
|
|
|
|
2005-07-18 12:49:53 +00:00
|
|
|
/* bus */
|
2009-08-28 16:14:23 +00:00
|
|
|
void gst_element_set_bus (GstElement * element, GstBus * bus);
|
|
|
|
GstBus * gst_element_get_bus (GstElement * element);
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2005-03-08 17:42:29 +00:00
|
|
|
/* pad management */
|
2009-08-28 16:14:23 +00:00
|
|
|
gboolean gst_element_add_pad (GstElement *element, GstPad *pad);
|
|
|
|
gboolean gst_element_remove_pad (GstElement *element, GstPad *pad);
|
|
|
|
void gst_element_no_more_pads (GstElement *element);
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2008-05-29 07:19:47 +00:00
|
|
|
#ifndef GST_DISABLE_DEPRECATED
|
2009-08-28 16:14:23 +00:00
|
|
|
GstPad* gst_element_get_pad (GstElement *element, const gchar *name);
|
2008-05-29 07:19:47 +00:00
|
|
|
#endif /* GST_DISABLE_DEPRECATED */
|
2009-08-28 16:14:23 +00:00
|
|
|
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
|
|
|
|
2009-08-28 16:14:23 +00:00
|
|
|
GstIterator * gst_element_iterate_pads (GstElement * element);
|
|
|
|
GstIterator * gst_element_iterate_src_pads (GstElement * element);
|
|
|
|
GstIterator * gst_element_iterate_sink_pads (GstElement * element);
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2005-03-08 17:42:29 +00:00
|
|
|
/* event/query/format stuff */
|
2009-08-28 16:14:23 +00:00
|
|
|
gboolean gst_element_send_event (GstElement *element, GstEvent *event);
|
|
|
|
gboolean gst_element_seek (GstElement *element, gdouble rate,
|
|
|
|
GstFormat format, GstSeekFlags flags,
|
|
|
|
GstSeekType cur_type, gint64 cur,
|
|
|
|
GstSeekType stop_type, gint64 stop);
|
2004-03-15 14:43:35 +00:00
|
|
|
G_CONST_RETURN GstQueryType*
|
2009-08-28 16:14:23 +00:00
|
|
|
gst_element_get_query_types (GstElement *element);
|
|
|
|
gboolean gst_element_query (GstElement *element, GstQuery *query);
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
/* messages */
|
2009-08-28 16:14:23 +00:00
|
|
|
gboolean gst_element_post_message (GstElement * element, GstMessage * message);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2005-03-08 17:42:29 +00:00
|
|
|
/* error handling */
|
2006-10-08 13:27:17 +00:00
|
|
|
/* gcc versions < 3.3 warn about NULL being passed as format to printf */
|
|
|
|
#if (defined(GST_USING_PRINTF_EXTENSION) || !defined(__GNUC__) || (__GNUC__ < 3) || (__GNUC__ == 3 && __GNUC_MINOR__ < 3))
|
2009-08-28 16:14:23 +00:00
|
|
|
gchar * _gst_element_error_printf (const gchar *format, ...);
|
2006-10-05 12:31:07 +00:00
|
|
|
#else
|
2009-08-28 16:14:23 +00:00
|
|
|
gchar * _gst_element_error_printf (const gchar *format, ...) G_GNUC_PRINTF (1, 2);
|
2006-10-05 12:31:07 +00:00
|
|
|
#endif
|
2009-08-28 16:14:23 +00:00
|
|
|
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);
|
2005-03-08 17:42:29 +00:00
|
|
|
|
|
|
|
/* state management */
|
2009-08-28 16:14:23 +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);
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2009-08-28 16:14:23 +00:00
|
|
|
GstStateChangeReturn gst_element_get_state (GstElement * element,
|
|
|
|
GstState * state,
|
|
|
|
GstState * pending,
|
|
|
|
GstClockTime timeout);
|
|
|
|
GstStateChangeReturn gst_element_set_state (GstElement *element, GstState state);
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2009-08-28 16:14:23 +00:00
|
|
|
void gst_element_abort_state (GstElement * element);
|
docs/gst/gstreamer-sections.txt: Add new element field and method.
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
Add new element field and method.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(bin_remove_messages), (gst_bin_add_func), (gst_bin_remove_func),
(gst_bin_recalc_state), (gst_bin_get_state_func),
(gst_bin_element_set_state), (gst_bin_change_state_func),
(gst_bin_continue_func), (bin_bus_handler),
(bin_push_state_continue), (bin_handle_async_start),
(bin_handle_async_done), (gst_bin_handle_message_func):
Make async state changes a bit smarter by using new ASYNC_START and
ASYNC_DONE messages. This reduces the number of times we run the state
recalculation thread.
Don't change state of element with a pending ASYNC_START message.
Deprecate STATE_DIRTY messages.
* gst/gstelement.c: (gst_element_init), (gst_element_send_event),
(gst_element_get_state_func), (gst_element_continue_state),
(gst_element_lost_state), (gst_element_set_state_func),
(gst_element_change_state):
* gst/gstelement.h:
Keep the state that was last set by the app in a new element field.
Don't allow state changes when handling an element event.
Post ASYNC_START and ASYNC_DONE messages.
Change lost_state so that we go to PAUSED and wait for the parent to set
us to PLAYING again (so latency calculation can be performed)
Export gst_element_change_state() method so that subclasses can use it.
API: gst_element_change_state()
API: GST_STATE_TARGET
* gst/gstpipeline.c: (gst_pipeline_class_init),
(reset_stream_time), (gst_pipeline_change_state),
(gst_pipeline_handle_message), (gst_pipeline_set_new_stream_time):
Using the new ASYNC_START message we can reset the base_time when
needed. This can then be used to implement base_time redistribution in
flushing seeks so that we can remove the explicit seek handling.
Perform latency query and configuration when going to PLAYING.
* libs/gst/base/gstbasesink.c: (gst_base_sink_commit_state),
(gst_base_sink_query), (gst_base_sink_change_state):
Post new ASYNC_START/ASYNC_DONE messages.
* tests/check/generic/sinks.c: (GST_START_TEST):
Fix test because the bin will not set the async element to PLAYING right
away.
* tests/check/gst/gstbin.c: (pop_async_done), (GST_START_TEST):
Make the message check a little stronger.
Handle ASYNC messages.
* tests/check/pipelines/cleanup.c: (GST_START_TEST):
* tests/check/pipelines/simple-launch-lines.c: (GST_START_TEST):
Expect ASYNC_DONE messages.
2007-03-19 10:47:56 +00:00
|
|
|
GstStateChangeReturn gst_element_change_state (GstElement * element,
|
2009-08-28 16:14:23 +00:00
|
|
|
GstStateChange transition);
|
|
|
|
GstStateChangeReturn gst_element_continue_state (GstElement * element,
|
2005-11-19 17:50:52 +00:00
|
|
|
GstStateChangeReturn ret);
|
2009-08-28 16:14:23 +00:00
|
|
|
void gst_element_lost_state (GstElement * element);
|
|
|
|
void gst_element_lost_state_full (GstElement * element, gboolean new_base_time);
|
2005-03-09 16:10:59 +00:00
|
|
|
|
2005-03-08 17:42:29 +00:00
|
|
|
/* factory management */
|
2009-08-28 16:14:23 +00:00
|
|
|
GstElementFactory* gst_element_get_factory (GstElement *element);
|
2002-03-06 16:14:34 +00:00
|
|
|
|
2002-05-26 03:23:25 +00:00
|
|
|
G_END_DECLS
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2001-01-23 20:03:07 +00:00
|
|
|
#endif /* __GST_ELEMENT_H__ */
|