2005-03-09 16:10:59 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2005 Wim Taymans <wim@fluendo.com>
|
2005-07-09 15:18:53 +00:00
|
|
|
* Copyright (C) 2005 Thomas Vander Stichele <thomas at apestaart dot org>
|
2005-03-09 16:10:59 +00:00
|
|
|
*
|
|
|
|
* gstbin.c: Unit test for GstBin
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2005-08-20 12:14:28 +00:00
|
|
|
#include <gst/check/gstcheck.h>
|
2005-03-09 16:10:59 +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
|
|
|
static void
|
|
|
|
pop_async_done (GstBus * bus)
|
|
|
|
{
|
|
|
|
GstMessage *message;
|
|
|
|
|
|
|
|
GST_DEBUG ("popping async-done message");
|
|
|
|
message = gst_bus_poll (bus, GST_MESSAGE_ASYNC_DONE, -1);
|
|
|
|
|
|
|
|
fail_unless (message && GST_MESSAGE_TYPE (message)
|
|
|
|
== GST_MESSAGE_ASYNC_DONE, "did not get GST_MESSAGE_ASYNC_DONE");
|
|
|
|
|
|
|
|
gst_message_unref (message);
|
|
|
|
GST_DEBUG ("popped message");
|
|
|
|
}
|
|
|
|
|
2005-07-09 22:54:28 +00:00
|
|
|
static void
|
|
|
|
pop_messages (GstBus * bus, int count)
|
|
|
|
{
|
|
|
|
GstMessage *message;
|
|
|
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
GST_DEBUG ("popping %d messages", count);
|
|
|
|
for (i = 0; i < count; ++i) {
|
GstBusHandler -> GstBusFunc, return value has the same meaning as any other GSource (FALSE == remove source).
Original commit message from CVS:
* check/gst/gstbin.c: (pop_messages), (GST_START_TEST):
* check/gst/gstbus.c: (message_func_eos), (message_func_app),
(send_messages), (GST_START_TEST), (gstbus_suite):
* check/gst/gstpipeline.c: (GST_START_TEST):
* check/pipelines/cleanup.c: (run_pipeline):
* check/pipelines/simple_launch_lines.c: (run_pipeline),
(GST_START_TEST):
* gst/gstbus.c: (gst_bus_have_pending), (gst_bus_source_prepare),
(gst_bus_source_check), (gst_bus_source_dispatch),
(gst_bus_create_watch), (gst_bus_add_watch_full),
(gst_bus_add_watch), (poll_func), (poll_timeout), (gst_bus_poll):
* gst/gstbus.h:
* tools/gst-launch.c: (event_loop):
* tools/gst-md5sum.c: (event_loop):
GstBusHandler -> GstBusFunc, return value has the same meaning as
any other GSource (FALSE == remove source).
_add_watch() and _add_watch_full() now take a MessageType mask to
only handle specific types of messages.
_poll() returns the GstMessage instead of the message type to avoid
race conditions.
_have_pending() takes a MessageType mask now too.
Added testsuite for multiple bus watches.
Fix testsuites and applications for new bus API.
2005-09-19 11:18:03 +00:00
|
|
|
message = gst_bus_poll (bus, GST_MESSAGE_STATE_CHANGED, -1);
|
|
|
|
|
|
|
|
fail_unless (message && GST_MESSAGE_TYPE (message)
|
2005-07-09 22:54:28 +00:00
|
|
|
== GST_MESSAGE_STATE_CHANGED, "did not get GST_MESSAGE_STATE_CHANGED");
|
|
|
|
|
|
|
|
gst_message_unref (message);
|
|
|
|
}
|
|
|
|
GST_DEBUG ("popped %d messages", count);
|
|
|
|
}
|
|
|
|
|
2005-07-09 16:36:18 +00:00
|
|
|
GST_START_TEST (test_interface)
|
2005-03-09 16:10:59 +00:00
|
|
|
{
|
|
|
|
GstBin *bin, *bin2;
|
|
|
|
GstElement *filesrc;
|
|
|
|
GstIterator *it;
|
2011-03-17 10:52:42 +00:00
|
|
|
GValue item = { 0, };
|
2005-03-09 16:10:59 +00:00
|
|
|
|
|
|
|
bin = GST_BIN (gst_bin_new (NULL));
|
|
|
|
fail_unless (bin != NULL, "Could not create bin");
|
|
|
|
|
|
|
|
filesrc = gst_element_factory_make ("filesrc", NULL);
|
|
|
|
fail_unless (filesrc != NULL, "Could not create filesrc");
|
|
|
|
fail_unless (GST_IS_URI_HANDLER (filesrc), "Filesrc not a URI handler");
|
|
|
|
gst_bin_add (bin, filesrc);
|
|
|
|
|
|
|
|
fail_unless (gst_bin_get_by_interface (bin, GST_TYPE_URI_HANDLER) == filesrc);
|
2006-01-28 00:59:37 +00:00
|
|
|
gst_object_unref (filesrc);
|
|
|
|
|
2005-03-09 16:10:59 +00:00
|
|
|
it = gst_bin_iterate_all_by_interface (bin, GST_TYPE_URI_HANDLER);
|
|
|
|
fail_unless (it != NULL);
|
|
|
|
fail_unless (gst_iterator_next (it, &item) == GST_ITERATOR_OK);
|
2011-03-17 10:52:42 +00:00
|
|
|
fail_unless (g_value_get_object (&item) == (gpointer) filesrc);
|
|
|
|
g_value_reset (&item);
|
2005-03-09 16:10:59 +00:00
|
|
|
fail_unless (gst_iterator_next (it, &item) == GST_ITERATOR_DONE);
|
|
|
|
gst_iterator_free (it);
|
|
|
|
|
|
|
|
gst_bin_add_many (bin,
|
|
|
|
gst_element_factory_make ("identity", NULL),
|
|
|
|
gst_element_factory_make ("identity", NULL),
|
|
|
|
gst_element_factory_make ("identity", NULL), NULL);
|
|
|
|
it = gst_bin_iterate_all_by_interface (bin, GST_TYPE_URI_HANDLER);
|
|
|
|
fail_unless (it != NULL);
|
|
|
|
fail_unless (gst_iterator_next (it, &item) == GST_ITERATOR_OK);
|
2011-03-17 10:52:42 +00:00
|
|
|
fail_unless (g_value_get_object (&item) == (gpointer) filesrc);
|
|
|
|
g_value_reset (&item);
|
2005-03-09 16:10:59 +00:00
|
|
|
fail_unless (gst_iterator_next (it, &item) == GST_ITERATOR_DONE);
|
|
|
|
gst_iterator_free (it);
|
|
|
|
|
|
|
|
bin2 = bin;
|
|
|
|
bin = GST_BIN (gst_bin_new (NULL));
|
|
|
|
fail_unless (bin != NULL);
|
|
|
|
gst_bin_add_many (bin,
|
|
|
|
gst_element_factory_make ("identity", NULL),
|
|
|
|
gst_element_factory_make ("identity", NULL),
|
|
|
|
GST_ELEMENT (bin2), gst_element_factory_make ("identity", NULL), NULL);
|
|
|
|
it = gst_bin_iterate_all_by_interface (bin, GST_TYPE_URI_HANDLER);
|
|
|
|
fail_unless (gst_iterator_next (it, &item) == GST_ITERATOR_OK);
|
2011-03-17 10:52:42 +00:00
|
|
|
fail_unless (g_value_get_object (&item) == (gpointer) filesrc);
|
|
|
|
g_value_reset (&item);
|
2005-03-09 16:10:59 +00:00
|
|
|
fail_unless (gst_iterator_next (it, &item) == GST_ITERATOR_DONE);
|
|
|
|
gst_iterator_free (it);
|
|
|
|
|
|
|
|
gst_bin_add (bin, gst_element_factory_make ("filesrc", NULL));
|
|
|
|
gst_bin_add (bin2, gst_element_factory_make ("filesrc", NULL));
|
|
|
|
it = gst_bin_iterate_all_by_interface (bin, GST_TYPE_URI_HANDLER);
|
|
|
|
fail_unless (gst_iterator_next (it, &item) == GST_ITERATOR_OK);
|
2011-03-17 10:52:42 +00:00
|
|
|
g_value_reset (&item);
|
2005-03-09 16:10:59 +00:00
|
|
|
fail_unless (gst_iterator_next (it, &item) == GST_ITERATOR_OK);
|
2011-03-17 10:52:42 +00:00
|
|
|
g_value_reset (&item);
|
2005-03-09 16:10:59 +00:00
|
|
|
fail_unless (gst_iterator_next (it, &item) == GST_ITERATOR_OK);
|
2011-03-17 10:52:42 +00:00
|
|
|
g_value_reset (&item);
|
2005-03-09 16:10:59 +00:00
|
|
|
fail_unless (gst_iterator_next (it, &item) == GST_ITERATOR_DONE);
|
2011-03-17 10:52:42 +00:00
|
|
|
g_value_unset (&item);
|
2005-03-09 16:10:59 +00:00
|
|
|
gst_iterator_free (it);
|
|
|
|
|
2005-06-28 09:59:01 +00:00
|
|
|
gst_object_unref (bin);
|
2005-05-16 21:17:14 +00:00
|
|
|
}
|
2005-07-09 15:18:53 +00:00
|
|
|
|
2005-07-09 16:36:18 +00:00
|
|
|
GST_END_TEST;
|
2005-07-09 15:18:53 +00:00
|
|
|
|
2005-07-09 16:36:18 +00:00
|
|
|
GST_START_TEST (test_message_state_changed)
|
2005-07-09 15:18:53 +00:00
|
|
|
{
|
|
|
|
GstBin *bin;
|
|
|
|
GstBus *bus;
|
|
|
|
GstMessage *message;
|
2005-10-10 10:50:12 +00:00
|
|
|
GstStateChangeReturn ret;
|
2005-07-09 15:18:53 +00:00
|
|
|
|
|
|
|
bin = GST_BIN (gst_bin_new (NULL));
|
|
|
|
fail_unless (bin != NULL, "Could not create bin");
|
|
|
|
ASSERT_OBJECT_REFCOUNT (bin, "bin", 1);
|
|
|
|
|
check/gst/gstbin.c: Add bus to bin.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Add bus to bin.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(add_to_queue), (clear_queue), (reset_degree), (update_degree),
(find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
A bin does not have a bus, it gets the bus from the parent.
* gst/gstelement.c: (gst_element_requires_clock),
(gst_element_provides_clock), (gst_element_is_indexable),
(gst_element_is_locked_state), (gst_element_change_state),
(gst_element_set_bus_func):
Small cleanups.
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_provide_clock_func):
The pipeline provides a bus.
2005-09-29 09:39:36 +00:00
|
|
|
bus = g_object_new (gst_bus_get_type (), NULL);
|
|
|
|
gst_element_set_bus (GST_ELEMENT_CAST (bin), bus);
|
2005-07-09 15:18:53 +00:00
|
|
|
|
|
|
|
/* change state, spawning a message, causing an incref on the bin */
|
2005-10-10 10:50:12 +00:00
|
|
|
ret = gst_element_set_state (GST_ELEMENT (bin), GST_STATE_READY);
|
|
|
|
fail_unless (ret == GST_STATE_CHANGE_SUCCESS);
|
2005-07-09 15:18:53 +00:00
|
|
|
|
|
|
|
ASSERT_OBJECT_REFCOUNT (bin, "bin", 2);
|
|
|
|
|
|
|
|
/* get and unref the message, causing a decref on the bin */
|
GstBusHandler -> GstBusFunc, return value has the same meaning as any other GSource (FALSE == remove source).
Original commit message from CVS:
* check/gst/gstbin.c: (pop_messages), (GST_START_TEST):
* check/gst/gstbus.c: (message_func_eos), (message_func_app),
(send_messages), (GST_START_TEST), (gstbus_suite):
* check/gst/gstpipeline.c: (GST_START_TEST):
* check/pipelines/cleanup.c: (run_pipeline):
* check/pipelines/simple_launch_lines.c: (run_pipeline),
(GST_START_TEST):
* gst/gstbus.c: (gst_bus_have_pending), (gst_bus_source_prepare),
(gst_bus_source_check), (gst_bus_source_dispatch),
(gst_bus_create_watch), (gst_bus_add_watch_full),
(gst_bus_add_watch), (poll_func), (poll_timeout), (gst_bus_poll):
* gst/gstbus.h:
* tools/gst-launch.c: (event_loop):
* tools/gst-md5sum.c: (event_loop):
GstBusHandler -> GstBusFunc, return value has the same meaning as
any other GSource (FALSE == remove source).
_add_watch() and _add_watch_full() now take a MessageType mask to
only handle specific types of messages.
_poll() returns the GstMessage instead of the message type to avoid
race conditions.
_have_pending() takes a MessageType mask now too.
Added testsuite for multiple bus watches.
Fix testsuites and applications for new bus API.
2005-09-19 11:18:03 +00:00
|
|
|
message = gst_bus_poll (bus, GST_MESSAGE_STATE_CHANGED, -1);
|
|
|
|
|
|
|
|
fail_unless (message && GST_MESSAGE_TYPE (message)
|
|
|
|
== GST_MESSAGE_STATE_CHANGED, "did not get GST_MESSAGE_STATE_CHANGED");
|
2005-07-09 15:18:53 +00:00
|
|
|
|
|
|
|
gst_message_unref (message);
|
|
|
|
|
|
|
|
ASSERT_OBJECT_REFCOUNT (bin, "bin", 1);
|
|
|
|
|
|
|
|
/* clean up */
|
2005-10-10 10:50:12 +00:00
|
|
|
ret = gst_element_set_state (GST_ELEMENT (bin), GST_STATE_NULL);
|
|
|
|
fail_unless (ret == GST_STATE_CHANGE_SUCCESS);
|
2005-09-29 18:37:48 +00:00
|
|
|
|
check/gst/gstbin.c: Add bus to bin.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Add bus to bin.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(add_to_queue), (clear_queue), (reset_degree), (update_degree),
(find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
A bin does not have a bus, it gets the bus from the parent.
* gst/gstelement.c: (gst_element_requires_clock),
(gst_element_provides_clock), (gst_element_is_indexable),
(gst_element_is_locked_state), (gst_element_change_state),
(gst_element_set_bus_func):
Small cleanups.
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_provide_clock_func):
The pipeline provides a bus.
2005-09-29 09:39:36 +00:00
|
|
|
gst_object_unref (bus);
|
2005-07-09 15:18:53 +00:00
|
|
|
gst_object_unref (bin);
|
|
|
|
}
|
|
|
|
|
2005-07-09 16:36:18 +00:00
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
GST_START_TEST (test_message_state_changed_child)
|
|
|
|
{
|
|
|
|
GstBin *bin;
|
|
|
|
GstElement *src;
|
|
|
|
GstBus *bus;
|
|
|
|
GstMessage *message;
|
2005-10-10 10:50:12 +00:00
|
|
|
GstStateChangeReturn ret;
|
2005-07-09 16:36:18 +00:00
|
|
|
|
|
|
|
bin = GST_BIN (gst_bin_new (NULL));
|
|
|
|
fail_unless (bin != NULL, "Could not create bin");
|
|
|
|
ASSERT_OBJECT_REFCOUNT (bin, "bin", 1);
|
|
|
|
|
check/gst/gstbin.c: Add bus to bin.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Add bus to bin.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(add_to_queue), (clear_queue), (reset_degree), (update_degree),
(find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
A bin does not have a bus, it gets the bus from the parent.
* gst/gstelement.c: (gst_element_requires_clock),
(gst_element_provides_clock), (gst_element_is_indexable),
(gst_element_is_locked_state), (gst_element_change_state),
(gst_element_set_bus_func):
Small cleanups.
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_provide_clock_func):
The pipeline provides a bus.
2005-09-29 09:39:36 +00:00
|
|
|
bus = g_object_new (gst_bus_get_type (), NULL);
|
|
|
|
gst_element_set_bus (GST_ELEMENT_CAST (bin), bus);
|
|
|
|
|
2005-07-09 16:36:18 +00:00
|
|
|
src = gst_element_factory_make ("fakesrc", NULL);
|
|
|
|
fail_if (src == NULL, "Could not create fakesrc");
|
|
|
|
gst_bin_add (bin, src);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (bin, "bin", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
|
|
|
|
2005-07-09 22:54:28 +00:00
|
|
|
/* change state, spawning two messages:
|
|
|
|
* - first for fakesrc, forwarded to bin's bus, causing incref on fakesrc
|
|
|
|
* - second for bin, causing an incref on the bin */
|
2005-07-09 16:36:18 +00:00
|
|
|
GST_DEBUG ("setting bin to READY");
|
2005-10-10 10:50:12 +00:00
|
|
|
ret = gst_element_set_state (GST_ELEMENT (bin), GST_STATE_READY);
|
|
|
|
fail_unless (ret == GST_STATE_CHANGE_SUCCESS);
|
2005-07-09 16:36:18 +00:00
|
|
|
|
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 2);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (bin, "bin", 2);
|
|
|
|
|
|
|
|
/* get and unref the message, causing a decref on the src */
|
GstBusHandler -> GstBusFunc, return value has the same meaning as any other GSource (FALSE == remove source).
Original commit message from CVS:
* check/gst/gstbin.c: (pop_messages), (GST_START_TEST):
* check/gst/gstbus.c: (message_func_eos), (message_func_app),
(send_messages), (GST_START_TEST), (gstbus_suite):
* check/gst/gstpipeline.c: (GST_START_TEST):
* check/pipelines/cleanup.c: (run_pipeline):
* check/pipelines/simple_launch_lines.c: (run_pipeline),
(GST_START_TEST):
* gst/gstbus.c: (gst_bus_have_pending), (gst_bus_source_prepare),
(gst_bus_source_check), (gst_bus_source_dispatch),
(gst_bus_create_watch), (gst_bus_add_watch_full),
(gst_bus_add_watch), (poll_func), (poll_timeout), (gst_bus_poll):
* gst/gstbus.h:
* tools/gst-launch.c: (event_loop):
* tools/gst-md5sum.c: (event_loop):
GstBusHandler -> GstBusFunc, return value has the same meaning as
any other GSource (FALSE == remove source).
_add_watch() and _add_watch_full() now take a MessageType mask to
only handle specific types of messages.
_poll() returns the GstMessage instead of the message type to avoid
race conditions.
_have_pending() takes a MessageType mask now too.
Added testsuite for multiple bus watches.
Fix testsuites and applications for new bus API.
2005-09-19 11:18:03 +00:00
|
|
|
message = gst_bus_poll (bus, GST_MESSAGE_STATE_CHANGED, -1);
|
|
|
|
fail_unless (message && GST_MESSAGE_TYPE (message)
|
2005-07-09 16:36:18 +00:00
|
|
|
== GST_MESSAGE_STATE_CHANGED, "did not get GST_MESSAGE_STATE_CHANGED");
|
|
|
|
|
Revert unpopular change for GST_MESSAGE_SRC to GObject.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* gst/gstbin.c: (bin_bus_handler):
* gst/gstmessage.c: (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_custom):
* gst/gstmessage.h:
* tools/gst-launch.c: (event_loop):
* tools/gst-md5sum.c: (event_loop):
Revert unpopular change for GST_MESSAGE_SRC to GObject.
2005-08-25 10:51:14 +00:00
|
|
|
fail_unless (message->src == GST_OBJECT (src));
|
2005-07-09 16:36:18 +00:00
|
|
|
gst_message_unref (message);
|
|
|
|
|
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (bin, "bin", 2);
|
|
|
|
|
|
|
|
/* get and unref message 2, causing a decref on the bin */
|
GstBusHandler -> GstBusFunc, return value has the same meaning as any other GSource (FALSE == remove source).
Original commit message from CVS:
* check/gst/gstbin.c: (pop_messages), (GST_START_TEST):
* check/gst/gstbus.c: (message_func_eos), (message_func_app),
(send_messages), (GST_START_TEST), (gstbus_suite):
* check/gst/gstpipeline.c: (GST_START_TEST):
* check/pipelines/cleanup.c: (run_pipeline):
* check/pipelines/simple_launch_lines.c: (run_pipeline),
(GST_START_TEST):
* gst/gstbus.c: (gst_bus_have_pending), (gst_bus_source_prepare),
(gst_bus_source_check), (gst_bus_source_dispatch),
(gst_bus_create_watch), (gst_bus_add_watch_full),
(gst_bus_add_watch), (poll_func), (poll_timeout), (gst_bus_poll):
* gst/gstbus.h:
* tools/gst-launch.c: (event_loop):
* tools/gst-md5sum.c: (event_loop):
GstBusHandler -> GstBusFunc, return value has the same meaning as
any other GSource (FALSE == remove source).
_add_watch() and _add_watch_full() now take a MessageType mask to
only handle specific types of messages.
_poll() returns the GstMessage instead of the message type to avoid
race conditions.
_have_pending() takes a MessageType mask now too.
Added testsuite for multiple bus watches.
Fix testsuites and applications for new bus API.
2005-09-19 11:18:03 +00:00
|
|
|
message = gst_bus_poll (bus, GST_MESSAGE_STATE_CHANGED, -1);
|
|
|
|
fail_unless (message && GST_MESSAGE_TYPE (message)
|
2005-07-09 16:36:18 +00:00
|
|
|
== GST_MESSAGE_STATE_CHANGED, "did not get GST_MESSAGE_STATE_CHANGED");
|
|
|
|
|
Revert unpopular change for GST_MESSAGE_SRC to GObject.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* gst/gstbin.c: (bin_bus_handler):
* gst/gstmessage.c: (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_custom):
* gst/gstmessage.h:
* tools/gst-launch.c: (event_loop):
* tools/gst-md5sum.c: (event_loop):
Revert unpopular change for GST_MESSAGE_SRC to GObject.
2005-08-25 10:51:14 +00:00
|
|
|
fail_unless (message->src == GST_OBJECT (bin));
|
2005-07-09 16:36:18 +00:00
|
|
|
gst_message_unref (message);
|
|
|
|
|
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (bin, "bin", 1);
|
|
|
|
|
|
|
|
/* clean up */
|
2005-10-10 10:50:12 +00:00
|
|
|
ret = gst_element_set_state (GST_ELEMENT (bin), GST_STATE_NULL);
|
|
|
|
fail_unless (ret == GST_STATE_CHANGE_SUCCESS);
|
check/gst/gstbin.c: Add bus to bin.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Add bus to bin.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(add_to_queue), (clear_queue), (reset_degree), (update_degree),
(find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
A bin does not have a bus, it gets the bus from the parent.
* gst/gstelement.c: (gst_element_requires_clock),
(gst_element_provides_clock), (gst_element_is_indexable),
(gst_element_is_locked_state), (gst_element_change_state),
(gst_element_set_bus_func):
Small cleanups.
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_provide_clock_func):
The pipeline provides a bus.
2005-09-29 09:39:36 +00:00
|
|
|
gst_object_unref (bus);
|
2005-07-09 16:36:18 +00:00
|
|
|
gst_object_unref (bin);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2005-07-09 22:54:28 +00:00
|
|
|
GST_START_TEST (test_message_state_changed_children)
|
|
|
|
{
|
|
|
|
GstPipeline *pipeline;
|
|
|
|
GstElement *src, *sink;
|
|
|
|
GstBus *bus;
|
2005-10-10 10:50:12 +00:00
|
|
|
GstStateChangeReturn ret;
|
|
|
|
GstState current, pending;
|
2005-07-09 22:54:28 +00:00
|
|
|
|
|
|
|
pipeline = GST_PIPELINE (gst_pipeline_new (NULL));
|
|
|
|
fail_unless (pipeline != NULL, "Could not create pipeline");
|
|
|
|
ASSERT_OBJECT_REFCOUNT (pipeline, "pipeline", 1);
|
|
|
|
|
|
|
|
src = gst_element_factory_make ("fakesrc", NULL);
|
|
|
|
fail_if (src == NULL, "Could not create fakesrc");
|
2005-07-16 13:50:37 +00:00
|
|
|
/* need to silence the element as the deep_notify refcounts the
|
|
|
|
* parents while running */
|
|
|
|
g_object_set (G_OBJECT (src), "silent", TRUE, NULL);
|
2005-07-09 22:54:28 +00:00
|
|
|
gst_bin_add (GST_BIN (pipeline), src);
|
|
|
|
|
|
|
|
sink = gst_element_factory_make ("fakesink", NULL);
|
2005-07-16 13:50:37 +00:00
|
|
|
/* need to silence the element as the deep_notify refcounts the
|
|
|
|
* parents while running */
|
|
|
|
g_object_set (G_OBJECT (sink), "silent", TRUE, NULL);
|
2005-07-09 22:54:28 +00:00
|
|
|
fail_if (sink == NULL, "Could not create fakesink");
|
|
|
|
gst_bin_add (GST_BIN (pipeline), sink);
|
|
|
|
|
|
|
|
fail_unless (gst_element_link (src, sink), "could not link src and sink");
|
|
|
|
|
|
|
|
ASSERT_OBJECT_REFCOUNT (pipeline, "pipeline", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
2005-08-21 15:01:18 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (sink, "sink", 1);
|
2005-07-09 22:54:28 +00:00
|
|
|
|
check/gst/gstbin.c: Add bus to bin.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Add bus to bin.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(add_to_queue), (clear_queue), (reset_degree), (update_degree),
(find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
A bin does not have a bus, it gets the bus from the parent.
* gst/gstelement.c: (gst_element_requires_clock),
(gst_element_provides_clock), (gst_element_is_indexable),
(gst_element_is_locked_state), (gst_element_change_state),
(gst_element_set_bus_func):
Small cleanups.
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_provide_clock_func):
The pipeline provides a bus.
2005-09-29 09:39:36 +00:00
|
|
|
bus = gst_pipeline_get_bus (pipeline);
|
2005-07-09 22:54:28 +00:00
|
|
|
|
2005-08-21 15:01:18 +00:00
|
|
|
/* change state to READY, spawning three messages */
|
|
|
|
GST_DEBUG ("setting pipeline to READY");
|
2005-10-10 10:50:12 +00:00
|
|
|
ret = gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_READY);
|
|
|
|
fail_unless (ret == GST_STATE_CHANGE_SUCCESS);
|
2005-08-21 15:01:18 +00:00
|
|
|
|
|
|
|
/* each object is referenced by a message */
|
check/gst/gstbin.c: Add bus to bin.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Add bus to bin.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(add_to_queue), (clear_queue), (reset_degree), (update_degree),
(find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
A bin does not have a bus, it gets the bus from the parent.
* gst/gstelement.c: (gst_element_requires_clock),
(gst_element_provides_clock), (gst_element_is_indexable),
(gst_element_is_locked_state), (gst_element_change_state),
(gst_element_set_bus_func):
Small cleanups.
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_provide_clock_func):
The pipeline provides a bus.
2005-09-29 09:39:36 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (bus, "bus", 2);
|
2005-08-21 15:01:18 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 2);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sink, "sink", 2);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (pipeline, "pipeline", 2);
|
|
|
|
|
|
|
|
pop_messages (bus, 3);
|
2005-11-10 18:15:24 +00:00
|
|
|
fail_if (gst_bus_have_pending (bus), "unexpected pending messages");
|
2005-08-21 15:01:18 +00:00
|
|
|
|
check/gst/gstbin.c: Add bus to bin.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Add bus to bin.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(add_to_queue), (clear_queue), (reset_degree), (update_degree),
(find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
A bin does not have a bus, it gets the bus from the parent.
* gst/gstelement.c: (gst_element_requires_clock),
(gst_element_provides_clock), (gst_element_is_indexable),
(gst_element_is_locked_state), (gst_element_change_state),
(gst_element_set_bus_func):
Small cleanups.
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_provide_clock_func):
The pipeline provides a bus.
2005-09-29 09:39:36 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (bus, "bus", 2);
|
2005-08-21 15:01:18 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sink, "sink", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (pipeline, "pipeline", 1);
|
|
|
|
|
|
|
|
/* change state to PAUSED, spawning three messages */
|
|
|
|
GST_DEBUG ("setting pipeline to PAUSED");
|
2005-10-10 10:50:12 +00:00
|
|
|
ret = gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_PAUSED);
|
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
|
|
|
fail_unless (ret == GST_STATE_CHANGE_ASYNC);
|
2005-10-10 10:50:12 +00:00
|
|
|
ret =
|
Use GstClockTime in _get_state() instead of GTimeVal.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstelement.c: (GST_START_TEST):
* check/gst/gstevent.c: (GST_START_TEST), (test_event):
* check/gst/gstghostpad.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST):
* check/pipelines/simple_launch_lines.c: (run_pipeline):
* check/states/sinks.c: (GST_START_TEST):
* gst/elements/gsttypefindelement.c: (stop_typefinding):
* gst/gstbin.c: (gst_bin_provide_clock_func), (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/gstelement.c: (gst_element_get_state_func),
(gst_element_get_state), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_set_state),
(gst_element_change_state), (gst_element_change_state_func):
* gst/gstelement.h:
* gst/gstpipeline.c: (gst_pipeline_class_init), (do_pipeline_seek),
(gst_pipeline_provide_clock_func):
* gst/gstutils.c: (gst_element_link_pads_filtered):
* tools/gst-launch.c: (main):
* tools/gst-typefind.c: (main):
Use GstClockTime in _get_state() instead of GTimeVal.
Remove old code in gstutils.c
2005-10-12 12:18:48 +00:00
|
|
|
gst_element_get_state (GST_ELEMENT (pipeline), ¤t, &pending,
|
|
|
|
GST_CLOCK_TIME_NONE);
|
2005-10-10 10:50:12 +00:00
|
|
|
fail_unless (ret == GST_STATE_CHANGE_SUCCESS);
|
|
|
|
fail_unless (current == GST_STATE_PAUSED);
|
|
|
|
fail_unless (pending == GST_STATE_VOID_PENDING);
|
2005-08-21 15:01:18 +00:00
|
|
|
|
2005-10-19 11:43:42 +00:00
|
|
|
/* wait for async thread to settle down */
|
2008-08-04 15:49:13 +00:00
|
|
|
GST_DEBUG ("waiting for refcount");
|
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
|
|
|
while (GST_OBJECT_REFCOUNT_VALUE (pipeline) > 3)
|
2005-10-19 11:43:42 +00:00
|
|
|
THREAD_SWITCH ();
|
2008-08-04 15:49:13 +00:00
|
|
|
GST_DEBUG ("refcount <= 3 now");
|
2005-10-19 11:43:42 +00:00
|
|
|
|
2005-08-21 15:01:18 +00:00
|
|
|
/* each object is referenced by a message;
|
2005-10-27 13:47:33 +00:00
|
|
|
* base_src is blocked in the push and has an extra refcount.
|
2005-08-21 15:01:18 +00:00
|
|
|
* base_sink_chain has taken a refcount on the sink, and is blocked on
|
2009-04-21 13:25:12 +00:00
|
|
|
* preroll
|
2009-04-23 15:48:08 +00:00
|
|
|
* The stream-status messages holds 2 more refs to the element */
|
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 4);
|
2007-05-24 11:50:47 +00:00
|
|
|
/* refcount can be 4 if the bin is still processing the async_done message of
|
|
|
|
* the sink. */
|
2007-12-15 14:42:25 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT_BETWEEN (sink, "sink", 2, 3);
|
2006-12-09 20:23:10 +00:00
|
|
|
/* 2 or 3 is valid, because the pipeline might still be posting
|
|
|
|
* its state_change message */
|
|
|
|
ASSERT_OBJECT_REFCOUNT_BETWEEN (pipeline, "pipeline", 2, 3);
|
2005-08-21 15:01:18 +00:00
|
|
|
|
|
|
|
pop_messages (bus, 3);
|
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
|
|
|
pop_async_done (bus);
|
2005-08-21 15:01:18 +00:00
|
|
|
fail_if ((gst_bus_pop (bus)) != NULL);
|
|
|
|
|
check/gst/gstbin.c: Add bus to bin.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Add bus to bin.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(add_to_queue), (clear_queue), (reset_degree), (update_degree),
(find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
A bin does not have a bus, it gets the bus from the parent.
* gst/gstelement.c: (gst_element_requires_clock),
(gst_element_provides_clock), (gst_element_is_indexable),
(gst_element_is_locked_state), (gst_element_change_state),
(gst_element_set_bus_func):
Small cleanups.
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_provide_clock_func):
The pipeline provides a bus.
2005-09-29 09:39:36 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (bus, "bus", 2);
|
2007-12-15 14:42:25 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sink, "sink", 1);
|
2005-08-21 15:01:18 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (pipeline, "pipeline", 1);
|
|
|
|
|
|
|
|
/* change state to PLAYING, spawning three messages */
|
2005-07-09 22:54:28 +00:00
|
|
|
GST_DEBUG ("setting pipeline to PLAYING");
|
2005-10-10 10:50:12 +00:00
|
|
|
ret = gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_PLAYING);
|
|
|
|
fail_unless (ret == GST_STATE_CHANGE_SUCCESS);
|
|
|
|
ret =
|
Use GstClockTime in _get_state() instead of GTimeVal.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstelement.c: (GST_START_TEST):
* check/gst/gstevent.c: (GST_START_TEST), (test_event):
* check/gst/gstghostpad.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST):
* check/pipelines/simple_launch_lines.c: (run_pipeline):
* check/states/sinks.c: (GST_START_TEST):
* gst/elements/gsttypefindelement.c: (stop_typefinding):
* gst/gstbin.c: (gst_bin_provide_clock_func), (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/gstelement.c: (gst_element_get_state_func),
(gst_element_get_state), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_set_state),
(gst_element_change_state), (gst_element_change_state_func):
* gst/gstelement.h:
* gst/gstpipeline.c: (gst_pipeline_class_init), (do_pipeline_seek),
(gst_pipeline_provide_clock_func):
* gst/gstutils.c: (gst_element_link_pads_filtered):
* tools/gst-launch.c: (main):
* tools/gst-typefind.c: (main):
Use GstClockTime in _get_state() instead of GTimeVal.
Remove old code in gstutils.c
2005-10-12 12:18:48 +00:00
|
|
|
gst_element_get_state (GST_ELEMENT (pipeline), ¤t, &pending,
|
|
|
|
GST_CLOCK_TIME_NONE);
|
2005-10-10 10:50:12 +00:00
|
|
|
fail_unless (ret == GST_STATE_CHANGE_SUCCESS);
|
|
|
|
fail_unless (current == GST_STATE_PLAYING);
|
|
|
|
fail_unless (pending == GST_STATE_VOID_PENDING);
|
2005-07-09 22:54:28 +00:00
|
|
|
|
2005-08-22 09:25:51 +00:00
|
|
|
/* each object is referenced by one message
|
2005-10-27 13:47:33 +00:00
|
|
|
* src might have an extra reference if it's still pushing
|
2005-10-08 13:10:34 +00:00
|
|
|
* sink might have an extra reference if it's still blocked on preroll
|
|
|
|
* pipeline posted a new-clock message too. */
|
2005-10-27 13:47:33 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT_BETWEEN (src, "src", 2, 3);
|
2005-08-22 09:25:51 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT_BETWEEN (sink, "sink", 2, 3);
|
2005-10-08 13:10:34 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (pipeline, "pipeline", 3);
|
2005-08-21 15:01:18 +00:00
|
|
|
|
|
|
|
pop_messages (bus, 3);
|
|
|
|
fail_if ((gst_bus_pop (bus)) != NULL);
|
2005-07-09 22:54:28 +00:00
|
|
|
|
check/gst/gstbin.c: Add bus to bin.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Add bus to bin.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(add_to_queue), (clear_queue), (reset_degree), (update_degree),
(find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
A bin does not have a bus, it gets the bus from the parent.
* gst/gstelement.c: (gst_element_requires_clock),
(gst_element_provides_clock), (gst_element_is_indexable),
(gst_element_is_locked_state), (gst_element_change_state),
(gst_element_set_bus_func):
Small cleanups.
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_provide_clock_func):
The pipeline provides a bus.
2005-09-29 09:39:36 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (bus, "bus", 2);
|
2005-10-27 13:47:33 +00:00
|
|
|
/* src might have an extra reference if it's still pushing */
|
|
|
|
ASSERT_OBJECT_REFCOUNT_BETWEEN (src, "src", 1, 2);
|
2005-08-22 09:25:51 +00:00
|
|
|
/* sink might have an extra reference if it's still blocked on preroll */
|
|
|
|
ASSERT_OBJECT_REFCOUNT_BETWEEN (sink, "sink", 1, 2);
|
2005-07-09 22:54:28 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (pipeline, "pipeline", 1);
|
|
|
|
|
|
|
|
/* go back to READY, spawning six messages */
|
|
|
|
GST_DEBUG ("setting pipeline to READY");
|
2005-10-10 10:50:12 +00:00
|
|
|
ret = gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_READY);
|
|
|
|
fail_unless (ret == GST_STATE_CHANGE_SUCCESS);
|
2005-07-09 22:54:28 +00:00
|
|
|
|
2009-04-21 13:25:12 +00:00
|
|
|
/* each object is referenced by two messages, the source also has the
|
|
|
|
* stream-status message referencing it */
|
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 4);
|
2005-07-09 22:54:28 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (sink, "sink", 3);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (pipeline, "pipeline", 3);
|
|
|
|
|
|
|
|
pop_messages (bus, 6);
|
2005-08-21 15:01:18 +00:00
|
|
|
fail_if ((gst_bus_pop (bus)) != NULL);
|
2005-07-09 22:54:28 +00:00
|
|
|
|
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sink, "sink", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (pipeline, "pipeline", 1);
|
|
|
|
|
|
|
|
/* setting pipeline to NULL flushes the bus automatically */
|
2005-10-10 10:50:12 +00:00
|
|
|
ret = gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_NULL);
|
|
|
|
fail_unless (ret == GST_STATE_CHANGE_SUCCESS);
|
2005-07-09 22:54:28 +00:00
|
|
|
|
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sink, "sink", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (pipeline, "pipeline", 1);
|
|
|
|
|
|
|
|
/* clean up */
|
check/gst/gstbin.c: Add bus to bin.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Add bus to bin.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(add_to_queue), (clear_queue), (reset_degree), (update_degree),
(find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
A bin does not have a bus, it gets the bus from the parent.
* gst/gstelement.c: (gst_element_requires_clock),
(gst_element_provides_clock), (gst_element_is_indexable),
(gst_element_is_locked_state), (gst_element_change_state),
(gst_element_set_bus_func):
Small cleanups.
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_provide_clock_func):
The pipeline provides a bus.
2005-09-29 09:39:36 +00:00
|
|
|
gst_object_unref (bus);
|
2005-07-09 22:54:28 +00:00
|
|
|
gst_object_unref (pipeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
2005-07-09 15:18:53 +00:00
|
|
|
|
2005-08-17 16:33:27 +00:00
|
|
|
GST_START_TEST (test_watch_for_state_change)
|
|
|
|
{
|
|
|
|
GstElement *src, *sink, *bin;
|
|
|
|
GstBus *bus;
|
2005-10-10 10:50:12 +00:00
|
|
|
GstStateChangeReturn ret;
|
2005-08-17 16:33:27 +00:00
|
|
|
|
|
|
|
bin = gst_element_factory_make ("bin", NULL);
|
|
|
|
fail_unless (bin != NULL, "Could not create bin");
|
|
|
|
|
check/gst/gstbin.c: Add bus to bin.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Add bus to bin.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(add_to_queue), (clear_queue), (reset_degree), (update_degree),
(find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
A bin does not have a bus, it gets the bus from the parent.
* gst/gstelement.c: (gst_element_requires_clock),
(gst_element_provides_clock), (gst_element_is_indexable),
(gst_element_is_locked_state), (gst_element_change_state),
(gst_element_set_bus_func):
Small cleanups.
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_provide_clock_func):
The pipeline provides a bus.
2005-09-29 09:39:36 +00:00
|
|
|
bus = g_object_new (gst_bus_get_type (), NULL);
|
|
|
|
gst_element_set_bus (GST_ELEMENT_CAST (bin), bus);
|
|
|
|
|
2005-08-17 16:33:27 +00:00
|
|
|
src = gst_element_factory_make ("fakesrc", NULL);
|
|
|
|
fail_if (src == NULL, "Could not create fakesrc");
|
|
|
|
sink = gst_element_factory_make ("fakesink", NULL);
|
|
|
|
fail_if (sink == NULL, "Could not create fakesink");
|
|
|
|
|
|
|
|
gst_bin_add (GST_BIN (bin), sink);
|
|
|
|
gst_bin_add (GST_BIN (bin), src);
|
|
|
|
|
|
|
|
fail_unless (gst_element_link (src, sink), "could not link src and sink");
|
|
|
|
|
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
|
|
|
/* change state, spawning two times three messages */
|
2005-10-10 10:50:12 +00:00
|
|
|
ret = gst_element_set_state (GST_ELEMENT (bin), GST_STATE_PAUSED);
|
|
|
|
fail_unless (ret == GST_STATE_CHANGE_ASYNC);
|
Use GstClockTime in _get_state() instead of GTimeVal.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstelement.c: (GST_START_TEST):
* check/gst/gstevent.c: (GST_START_TEST), (test_event):
* check/gst/gstghostpad.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST):
* check/pipelines/simple_launch_lines.c: (run_pipeline):
* check/states/sinks.c: (GST_START_TEST):
* gst/elements/gsttypefindelement.c: (stop_typefinding):
* gst/gstbin.c: (gst_bin_provide_clock_func), (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/gstelement.c: (gst_element_get_state_func),
(gst_element_get_state), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_set_state),
(gst_element_change_state), (gst_element_change_state_func):
* gst/gstelement.h:
* gst/gstpipeline.c: (gst_pipeline_class_init), (do_pipeline_seek),
(gst_pipeline_provide_clock_func):
* gst/gstutils.c: (gst_element_link_pads_filtered):
* tools/gst-launch.c: (main):
* tools/gst-typefind.c: (main):
Use GstClockTime in _get_state() instead of GTimeVal.
Remove old code in gstutils.c
2005-10-12 12:18:48 +00:00
|
|
|
ret =
|
|
|
|
gst_element_get_state (GST_ELEMENT (bin), NULL, NULL,
|
|
|
|
GST_CLOCK_TIME_NONE);
|
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
|
|
|
fail_unless (ret == GST_STATE_CHANGE_SUCCESS);
|
2005-08-17 16:33:27 +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
|
|
|
pop_messages (bus, 6);
|
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
|
|
|
pop_async_done (bus);
|
2005-08-17 16:33:27 +00:00
|
|
|
|
check/gst/gstbin.c: Change for new bus API.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Change for new bus API.
* check/gst/gstbus.c: (message_func_eos), (message_func_app),
(send_messages), (GST_START_TEST), (gstbus_suite):
Change for new bus signal API.
* gst/gstbus.c: (gst_bus_class_init), (gst_bus_have_pending),
(gst_bus_source_prepare), (gst_bus_source_check),
(gst_bus_create_watch), (gst_bus_add_watch_full),
(gst_bus_add_watch), (gst_bus_poll), (gst_bus_async_signal_func),
(gst_bus_sync_signal_handler), (gst_bus_add_signal_watch):
* gst/gstbus.h:
Remove support for multiple GSources operating on different
message types as it is too complex and unneeded when using
signals.
Added support for receiving signals from the bus.
2005-09-29 13:07:37 +00:00
|
|
|
fail_unless (gst_bus_have_pending (bus) == FALSE,
|
2005-08-17 16:33:27 +00:00
|
|
|
"Unexpected messages on bus");
|
|
|
|
|
2005-10-10 10:50:12 +00:00
|
|
|
ret = gst_element_set_state (GST_ELEMENT (bin), GST_STATE_PLAYING);
|
|
|
|
fail_unless (ret == GST_STATE_CHANGE_SUCCESS);
|
2005-08-17 16:33:27 +00:00
|
|
|
|
|
|
|
pop_messages (bus, 3);
|
|
|
|
|
|
|
|
/* this one might return either SUCCESS or ASYNC, likely SUCCESS */
|
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
|
|
|
ret = gst_element_set_state (GST_ELEMENT (bin), GST_STATE_PAUSED);
|
Use GstClockTime in _get_state() instead of GTimeVal.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstelement.c: (GST_START_TEST):
* check/gst/gstevent.c: (GST_START_TEST), (test_event):
* check/gst/gstghostpad.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST):
* check/pipelines/simple_launch_lines.c: (run_pipeline):
* check/states/sinks.c: (GST_START_TEST):
* gst/elements/gsttypefindelement.c: (stop_typefinding):
* gst/gstbin.c: (gst_bin_provide_clock_func), (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/gstelement.c: (gst_element_get_state_func),
(gst_element_get_state), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_set_state),
(gst_element_change_state), (gst_element_change_state_func):
* gst/gstelement.h:
* gst/gstpipeline.c: (gst_pipeline_class_init), (do_pipeline_seek),
(gst_pipeline_provide_clock_func):
* gst/gstutils.c: (gst_element_link_pads_filtered):
* tools/gst-launch.c: (main):
* tools/gst-typefind.c: (main):
Use GstClockTime in _get_state() instead of GTimeVal.
Remove old code in gstutils.c
2005-10-12 12:18:48 +00:00
|
|
|
gst_element_get_state (GST_ELEMENT (bin), NULL, NULL, GST_CLOCK_TIME_NONE);
|
2005-08-17 16:33:27 +00:00
|
|
|
|
|
|
|
pop_messages (bus, 3);
|
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
|
|
|
if (ret == GST_STATE_CHANGE_ASYNC)
|
|
|
|
pop_async_done (bus);
|
2005-08-17 16:33:27 +00:00
|
|
|
|
check/gst/gstbin.c: Change for new bus API.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Change for new bus API.
* check/gst/gstbus.c: (message_func_eos), (message_func_app),
(send_messages), (GST_START_TEST), (gstbus_suite):
Change for new bus signal API.
* gst/gstbus.c: (gst_bus_class_init), (gst_bus_have_pending),
(gst_bus_source_prepare), (gst_bus_source_check),
(gst_bus_create_watch), (gst_bus_add_watch_full),
(gst_bus_add_watch), (gst_bus_poll), (gst_bus_async_signal_func),
(gst_bus_sync_signal_handler), (gst_bus_add_signal_watch):
* gst/gstbus.h:
Remove support for multiple GSources operating on different
message types as it is too complex and unneeded when using
signals.
Added support for receiving signals from the bus.
2005-09-29 13:07:37 +00:00
|
|
|
fail_unless (gst_bus_have_pending (bus) == FALSE,
|
2005-08-17 16:33:27 +00:00
|
|
|
"Unexpected messages on bus");
|
|
|
|
|
|
|
|
/* setting bin to NULL flushes the bus automatically */
|
2005-10-10 10:50:12 +00:00
|
|
|
ret = gst_element_set_state (GST_ELEMENT (bin), GST_STATE_NULL);
|
|
|
|
fail_unless (ret == GST_STATE_CHANGE_SUCCESS);
|
2005-08-17 16:33:27 +00:00
|
|
|
|
|
|
|
/* clean up */
|
check/gst/gstbin.c: Add bus to bin.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Add bus to bin.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(add_to_queue), (clear_queue), (reset_degree), (update_degree),
(find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
A bin does not have a bus, it gets the bus from the parent.
* gst/gstelement.c: (gst_element_requires_clock),
(gst_element_provides_clock), (gst_element_is_indexable),
(gst_element_is_locked_state), (gst_element_change_state),
(gst_element_set_bus_func):
Small cleanups.
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_provide_clock_func):
The pipeline provides a bus.
2005-09-29 09:39:36 +00:00
|
|
|
gst_object_unref (bus);
|
2005-08-17 16:33:27 +00:00
|
|
|
gst_object_unref (bin);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2010-05-25 17:17:44 +00:00
|
|
|
GST_START_TEST (test_state_change_error_message)
|
|
|
|
{
|
|
|
|
GstElement *src, *sink, *bin;
|
|
|
|
GstBus *bus;
|
|
|
|
GstStateChangeReturn ret;
|
|
|
|
|
|
|
|
bin = gst_element_factory_make ("bin", NULL);
|
|
|
|
fail_unless (bin != NULL, "Could not create bin");
|
|
|
|
|
|
|
|
bus = g_object_new (gst_bus_get_type (), NULL);
|
|
|
|
gst_element_set_bus (GST_ELEMENT_CAST (bin), bus);
|
|
|
|
|
|
|
|
src = gst_element_factory_make ("fakesrc", NULL);
|
|
|
|
fail_if (src == NULL, "Could not create fakesrc");
|
|
|
|
sink = gst_element_factory_make ("fakesink", NULL);
|
|
|
|
fail_if (sink == NULL, "Could not create fakesink");
|
|
|
|
|
|
|
|
/* add but don't link elements */
|
|
|
|
gst_bin_add (GST_BIN (bin), sink);
|
|
|
|
gst_bin_add (GST_BIN (bin), src);
|
|
|
|
|
|
|
|
/* change state, this should succeed */
|
|
|
|
ret = gst_element_set_state (GST_ELEMENT (bin), GST_STATE_PAUSED);
|
|
|
|
fail_unless (ret == GST_STATE_CHANGE_ASYNC);
|
|
|
|
|
|
|
|
/* now wait, the streaming thread will error because the source is not
|
|
|
|
* linked. */
|
|
|
|
ret = gst_element_get_state (GST_ELEMENT (bin), NULL, NULL,
|
|
|
|
GST_CLOCK_TIME_NONE);
|
|
|
|
fail_unless (ret == GST_STATE_CHANGE_FAILURE);
|
|
|
|
|
|
|
|
gst_bus_set_flushing (bus, TRUE);
|
|
|
|
|
|
|
|
/* setting bin to NULL flushes the bus automatically */
|
|
|
|
ret = gst_element_set_state (GST_ELEMENT (bin), GST_STATE_NULL);
|
|
|
|
fail_unless (ret == GST_STATE_CHANGE_SUCCESS);
|
|
|
|
|
|
|
|
/* clean up */
|
|
|
|
gst_object_unref (bus);
|
|
|
|
gst_object_unref (bin);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
|
2005-07-28 15:38:46 +00:00
|
|
|
/* adding an element with linked pads to a bin unlinks the
|
|
|
|
* pads */
|
|
|
|
GST_START_TEST (test_add_linked)
|
|
|
|
{
|
|
|
|
GstElement *src, *sink;
|
|
|
|
GstPad *srcpad, *sinkpad;
|
|
|
|
GstElement *pipeline;
|
|
|
|
|
|
|
|
pipeline = gst_pipeline_new (NULL);
|
|
|
|
fail_unless (pipeline != NULL, "Could not create pipeline");
|
|
|
|
|
|
|
|
src = gst_element_factory_make ("fakesrc", NULL);
|
|
|
|
fail_if (src == NULL, "Could not create fakesrc");
|
|
|
|
sink = gst_element_factory_make ("fakesink", NULL);
|
2005-09-23 17:17:42 +00:00
|
|
|
fail_if (sink == NULL, "Could not create fakesink");
|
2005-07-28 15:38:46 +00:00
|
|
|
|
2008-05-21 15:57:52 +00:00
|
|
|
srcpad = gst_element_get_static_pad (src, "src");
|
2005-07-28 15:38:46 +00:00
|
|
|
fail_unless (srcpad != NULL);
|
2008-05-21 15:57:52 +00:00
|
|
|
sinkpad = gst_element_get_static_pad (sink, "sink");
|
2005-07-28 15:38:46 +00:00
|
|
|
fail_unless (sinkpad != NULL);
|
|
|
|
|
|
|
|
fail_unless (gst_pad_link (srcpad, sinkpad) == GST_PAD_LINK_OK);
|
|
|
|
|
|
|
|
/* pads are linked now */
|
|
|
|
fail_unless (gst_pad_is_linked (srcpad));
|
|
|
|
fail_unless (gst_pad_is_linked (sinkpad));
|
|
|
|
|
|
|
|
/* adding element to bin voids hierarchy so pads are unlinked */
|
|
|
|
gst_bin_add (GST_BIN (pipeline), src);
|
|
|
|
|
|
|
|
/* check if pads really are unlinked */
|
|
|
|
fail_unless (!gst_pad_is_linked (srcpad));
|
|
|
|
fail_unless (!gst_pad_is_linked (sinkpad));
|
|
|
|
|
|
|
|
/* cannot link pads in wrong hierarchy */
|
|
|
|
fail_unless (gst_pad_link (srcpad, sinkpad) == GST_PAD_LINK_WRONG_HIERARCHY);
|
|
|
|
|
|
|
|
/* adding other element to bin as well */
|
|
|
|
gst_bin_add (GST_BIN (pipeline), sink);
|
|
|
|
|
|
|
|
/* now we can link again */
|
|
|
|
fail_unless (gst_pad_link (srcpad, sinkpad) == GST_PAD_LINK_OK);
|
|
|
|
|
|
|
|
/* check if pads really are linked */
|
|
|
|
fail_unless (gst_pad_is_linked (srcpad));
|
|
|
|
fail_unless (gst_pad_is_linked (sinkpad));
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
|
|
|
|
gst_object_unref (srcpad);
|
|
|
|
gst_object_unref (sinkpad);
|
|
|
|
gst_object_unref (pipeline);
|
2005-07-28 15:38:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2006-07-02 22:17:31 +00:00
|
|
|
/* adding ourself should fail */
|
|
|
|
GST_START_TEST (test_add_self)
|
|
|
|
{
|
|
|
|
GstElement *bin;
|
|
|
|
|
|
|
|
bin = gst_bin_new (NULL);
|
|
|
|
fail_unless (bin != NULL, "Could not create bin");
|
|
|
|
|
|
|
|
ASSERT_WARNING (gst_bin_add (GST_BIN (bin), bin));
|
2006-07-03 11:10:43 +00:00
|
|
|
|
|
|
|
gst_object_unref (bin);
|
2006-07-02 22:17:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
|
2005-09-23 17:17:42 +00:00
|
|
|
/* g_print ("%10s: %4d => %4d\n", GST_OBJECT_NAME (msg->src), old, new); */
|
|
|
|
|
|
|
|
#define ASSERT_STATE_CHANGE_MSG(bus,element,old_state,new_state,num) \
|
|
|
|
{ \
|
|
|
|
GstMessage *msg; \
|
2005-10-08 08:58:45 +00:00
|
|
|
GstState old = 0, new = 0, pending = 0; \
|
2005-09-23 17:17:42 +00:00
|
|
|
msg = gst_bus_poll (bus, GST_MESSAGE_STATE_CHANGED, GST_SECOND); \
|
|
|
|
fail_if (msg == NULL, "No state change message within 1 second (#" \
|
|
|
|
G_STRINGIFY (num) ")"); \
|
Seriously, this is better than a previous commit as we only need to notify the fact that an element changed state in ...
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstmessage.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (message_received):
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_recalc_func),
(bin_bus_handler):
* gst/gstelement.c: (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state):
* gst/gstmessage.c: (gst_message_new_state_changed),
(gst_message_new_state_dirty), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_parse_state_changed),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration):
* gst/gstmessage.h:
* tools/gst-launch.c: (event_loop):
Seriously, this is better than a previous commit as we only need
to notify the fact that an element changed state in a streaming
thread, marking the state of the parents dirty, hence the
STATE_DIRTY message instead of abusing a boolean in a STATE_CHANGE
message.
2005-10-18 16:25:38 +00:00
|
|
|
gst_message_parse_state_changed (msg, &old, &new, &pending); \
|
2005-09-23 17:17:42 +00:00
|
|
|
fail_if (msg->src != GST_OBJECT (element), G_STRINGIFY(element) \
|
|
|
|
" should have changed state next (#" G_STRINGIFY (num) ")"); \
|
|
|
|
fail_if (old != old_state || new != new_state, "state change is not " \
|
|
|
|
G_STRINGIFY (old_state) " => " G_STRINGIFY (new_state)); \
|
|
|
|
gst_message_unref (msg); \
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_START_TEST (test_children_state_change_order_flagged_sink)
|
|
|
|
{
|
|
|
|
GstElement *src, *identity, *sink, *pipeline;
|
|
|
|
GstStateChangeReturn ret;
|
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, pending;
|
2005-09-23 17:17:42 +00:00
|
|
|
GstBus *bus;
|
|
|
|
|
|
|
|
pipeline = gst_pipeline_new (NULL);
|
|
|
|
fail_unless (pipeline != NULL, "Could not create pipeline");
|
|
|
|
|
check/gst/gstbin.c: Add bus to bin.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Add bus to bin.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(add_to_queue), (clear_queue), (reset_degree), (update_degree),
(find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
A bin does not have a bus, it gets the bus from the parent.
* gst/gstelement.c: (gst_element_requires_clock),
(gst_element_provides_clock), (gst_element_is_indexable),
(gst_element_is_locked_state), (gst_element_change_state),
(gst_element_set_bus_func):
Small cleanups.
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_provide_clock_func):
The pipeline provides a bus.
2005-09-29 09:39:36 +00:00
|
|
|
bus = gst_element_get_bus (pipeline);
|
2005-09-23 17:17:42 +00:00
|
|
|
fail_unless (bus != NULL, "Pipeline has no bus?!");
|
|
|
|
|
|
|
|
src = gst_element_factory_make ("fakesrc", NULL);
|
|
|
|
fail_if (src == NULL, "Could not create fakesrc");
|
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
|
|
|
g_object_set (src, "num-buffers", 5, NULL);
|
2005-09-23 17:17:42 +00:00
|
|
|
|
|
|
|
identity = gst_element_factory_make ("identity", NULL);
|
|
|
|
fail_if (identity == NULL, "Could not create identity");
|
|
|
|
|
|
|
|
sink = gst_element_factory_make ("fakesink", NULL);
|
|
|
|
fail_if (sink == NULL, "Could not create fakesink");
|
|
|
|
|
|
|
|
gst_bin_add_many (GST_BIN (pipeline), src, identity, sink, NULL);
|
|
|
|
|
|
|
|
fail_unless (gst_element_link (src, identity) == TRUE);
|
|
|
|
fail_unless (gst_element_link (identity, sink) == TRUE);
|
|
|
|
|
|
|
|
/* (1) Test state change with fakesink being a regular sink */
|
|
|
|
ret = gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
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
|
|
|
fail_if (ret != GST_STATE_CHANGE_ASYNC,
|
|
|
|
"State change to PLAYING did not return ASYNC");
|
Use GstClockTime in _get_state() instead of GTimeVal.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstelement.c: (GST_START_TEST):
* check/gst/gstevent.c: (GST_START_TEST), (test_event):
* check/gst/gstghostpad.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST):
* check/pipelines/simple_launch_lines.c: (run_pipeline):
* check/states/sinks.c: (GST_START_TEST):
* gst/elements/gsttypefindelement.c: (stop_typefinding):
* gst/gstbin.c: (gst_bin_provide_clock_func), (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/gstelement.c: (gst_element_get_state_func),
(gst_element_get_state), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_set_state),
(gst_element_change_state), (gst_element_change_state_func):
* gst/gstelement.h:
* gst/gstpipeline.c: (gst_pipeline_class_init), (do_pipeline_seek),
(gst_pipeline_provide_clock_func):
* gst/gstutils.c: (gst_element_link_pads_filtered):
* tools/gst-launch.c: (main):
* tools/gst-typefind.c: (main):
Use GstClockTime in _get_state() instead of GTimeVal.
Remove old code in gstutils.c
2005-10-12 12:18:48 +00:00
|
|
|
ret =
|
|
|
|
gst_element_get_state (pipeline, ¤t, &pending, GST_CLOCK_TIME_NONE);
|
2005-09-23 17:17:42 +00:00
|
|
|
fail_if (ret != GST_STATE_CHANGE_SUCCESS, "State change to PLAYING failed");
|
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
|
|
|
fail_if (current != GST_STATE_PLAYING, "State change to PLAYING failed");
|
|
|
|
fail_if (pending != GST_STATE_VOID_PENDING, "State change to PLAYING failed");
|
2005-09-23 17:17:42 +00:00
|
|
|
|
|
|
|
/* NULL => READY */
|
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, sink, GST_STATE_NULL, GST_STATE_READY, 101);
|
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, identity, GST_STATE_NULL, GST_STATE_READY, 102);
|
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, src, GST_STATE_NULL, GST_STATE_READY, 103);
|
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, pipeline, GST_STATE_NULL, GST_STATE_READY, 104);
|
|
|
|
|
|
|
|
/* READY => PAUSED */
|
2005-10-15 15:53:59 +00:00
|
|
|
/* because of pre-rolling, sink will return ASYNC on state
|
2005-09-23 17:17:42 +00:00
|
|
|
* change and change state later when it has a buffer */
|
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_DEBUG ("popping READY -> PAUSED messages");
|
2005-09-23 17:17:42 +00:00
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, identity, GST_STATE_READY, GST_STATE_PAUSED,
|
|
|
|
105);
|
2005-09-24 14:35:07 +00:00
|
|
|
#if 0
|
|
|
|
/* From here on, all bets are off. Usually the source changes state next,
|
2005-10-15 15:53:59 +00:00
|
|
|
* but it might just as well be that the first buffer produced by the
|
2005-09-24 14:35:07 +00:00
|
|
|
* source reaches the sink before the source has finished its state change,
|
|
|
|
* in which case the sink will commit its new state before the source ... */
|
2005-09-23 17:17:42 +00:00
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, src, GST_STATE_READY, GST_STATE_PAUSED, 106);
|
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, sink, GST_STATE_READY, GST_STATE_PAUSED, 107);
|
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
|
|
|
#else
|
|
|
|
|
|
|
|
pop_messages (bus, 2); /* pop remaining ready => paused messages off the bus */
|
2005-09-23 17:17:42 +00:00
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, pipeline, GST_STATE_READY, GST_STATE_PAUSED,
|
|
|
|
108);
|
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
|
|
|
pop_async_done (bus);
|
|
|
|
#endif
|
2005-09-23 17:17:42 +00:00
|
|
|
/* PAUSED => PLAYING */
|
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_DEBUG ("popping PAUSED -> PLAYING messages");
|
2005-09-23 17:17:42 +00:00
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, sink, GST_STATE_PAUSED, GST_STATE_PLAYING, 109);
|
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, identity, GST_STATE_PAUSED, GST_STATE_PLAYING,
|
|
|
|
110);
|
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, src, GST_STATE_PAUSED, GST_STATE_PLAYING, 111);
|
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, pipeline, GST_STATE_PAUSED, GST_STATE_PLAYING,
|
|
|
|
112);
|
|
|
|
|
|
|
|
/* don't set to NULL that will set the bus flushing and kill our messages */
|
|
|
|
ret = gst_element_set_state (pipeline, GST_STATE_READY);
|
|
|
|
fail_if (ret != GST_STATE_CHANGE_SUCCESS, "State change to READY failed");
|
Use GstClockTime in _get_state() instead of GTimeVal.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstelement.c: (GST_START_TEST):
* check/gst/gstevent.c: (GST_START_TEST), (test_event):
* check/gst/gstghostpad.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST):
* check/pipelines/simple_launch_lines.c: (run_pipeline):
* check/states/sinks.c: (GST_START_TEST):
* gst/elements/gsttypefindelement.c: (stop_typefinding):
* gst/gstbin.c: (gst_bin_provide_clock_func), (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/gstelement.c: (gst_element_get_state_func),
(gst_element_get_state), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_set_state),
(gst_element_change_state), (gst_element_change_state_func):
* gst/gstelement.h:
* gst/gstpipeline.c: (gst_pipeline_class_init), (do_pipeline_seek),
(gst_pipeline_provide_clock_func):
* gst/gstutils.c: (gst_element_link_pads_filtered):
* tools/gst-launch.c: (main):
* tools/gst-typefind.c: (main):
Use GstClockTime in _get_state() instead of GTimeVal.
Remove old code in gstutils.c
2005-10-12 12:18:48 +00:00
|
|
|
ret = gst_element_get_state (pipeline, NULL, NULL, GST_CLOCK_TIME_NONE);
|
2005-10-10 10:50:12 +00:00
|
|
|
fail_if (ret != GST_STATE_CHANGE_SUCCESS, "State change to READY failed");
|
2005-09-23 17:17:42 +00:00
|
|
|
|
|
|
|
/* TODO: do we need to check downwards state change order as well? */
|
|
|
|
pop_messages (bus, 4); /* pop playing => paused messages off the bus */
|
|
|
|
pop_messages (bus, 4); /* pop paused => ready messages off the bus */
|
|
|
|
|
2006-01-30 15:57:43 +00:00
|
|
|
while (GST_OBJECT_REFCOUNT_VALUE (pipeline) > 1)
|
|
|
|
THREAD_SWITCH ();
|
|
|
|
|
2005-09-23 17:17:42 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sink, "sink", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (pipeline, "pipeline", 1);
|
|
|
|
|
|
|
|
ret = gst_element_set_state (pipeline, GST_STATE_NULL);
|
|
|
|
fail_if (ret != GST_STATE_CHANGE_SUCCESS, "State change to NULL failed");
|
|
|
|
|
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sink, "sink", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (pipeline, "pipeline", 1);
|
|
|
|
|
check/gst/gstbin.c: Add bus to bin.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Add bus to bin.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(add_to_queue), (clear_queue), (reset_degree), (update_degree),
(find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
A bin does not have a bus, it gets the bus from the parent.
* gst/gstelement.c: (gst_element_requires_clock),
(gst_element_provides_clock), (gst_element_is_indexable),
(gst_element_is_locked_state), (gst_element_change_state),
(gst_element_set_bus_func):
Small cleanups.
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_provide_clock_func):
The pipeline provides a bus.
2005-09-29 09:39:36 +00:00
|
|
|
gst_object_unref (bus);
|
2005-09-23 17:17:42 +00:00
|
|
|
gst_object_unref (pipeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
|
|
|
|
GST_START_TEST (test_children_state_change_order_semi_sink)
|
|
|
|
{
|
|
|
|
GstElement *src, *identity, *sink, *pipeline;
|
|
|
|
GstStateChangeReturn ret;
|
2005-10-10 10:50:12 +00:00
|
|
|
GstState current, pending;
|
2005-09-23 17:17:42 +00:00
|
|
|
GstBus *bus;
|
|
|
|
|
|
|
|
/* (2) Now again, but check other code path where we don't have
|
|
|
|
* a proper sink correctly flagged as such, but a 'semi-sink' */
|
|
|
|
pipeline = gst_pipeline_new (NULL);
|
|
|
|
fail_unless (pipeline != NULL, "Could not create pipeline");
|
|
|
|
|
check/gst/gstbin.c: Add bus to bin.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Add bus to bin.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(add_to_queue), (clear_queue), (reset_degree), (update_degree),
(find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
A bin does not have a bus, it gets the bus from the parent.
* gst/gstelement.c: (gst_element_requires_clock),
(gst_element_provides_clock), (gst_element_is_indexable),
(gst_element_is_locked_state), (gst_element_change_state),
(gst_element_set_bus_func):
Small cleanups.
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_provide_clock_func):
The pipeline provides a bus.
2005-09-29 09:39:36 +00:00
|
|
|
bus = gst_element_get_bus (pipeline);
|
2005-09-23 17:17:42 +00:00
|
|
|
fail_unless (bus != NULL, "Pipeline has no bus?!");
|
|
|
|
|
|
|
|
src = gst_element_factory_make ("fakesrc", NULL);
|
|
|
|
fail_if (src == NULL, "Could not create fakesrc");
|
|
|
|
|
|
|
|
identity = gst_element_factory_make ("identity", NULL);
|
|
|
|
fail_if (identity == NULL, "Could not create identity");
|
|
|
|
|
|
|
|
sink = gst_element_factory_make ("fakesink", NULL);
|
|
|
|
fail_if (sink == NULL, "Could not create fakesink");
|
|
|
|
|
|
|
|
gst_bin_add_many (GST_BIN (pipeline), src, identity, sink, NULL);
|
|
|
|
|
|
|
|
fail_unless (gst_element_link (src, identity) == TRUE);
|
|
|
|
fail_unless (gst_element_link (identity, sink) == TRUE);
|
|
|
|
|
2005-09-26 18:22:07 +00:00
|
|
|
/* this is not very nice but should work just fine in this case. */
|
2011-11-28 15:54:55 +00:00
|
|
|
GST_OBJECT_FLAG_UNSET (sink, GST_ELEMENT_FLAG_SINK); /* <======== */
|
2005-09-23 17:17:42 +00:00
|
|
|
|
|
|
|
ret = gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
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
|
|
|
fail_if (ret != GST_STATE_CHANGE_ASYNC, "State change to PLAYING not ASYNC");
|
Use GstClockTime in _get_state() instead of GTimeVal.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstelement.c: (GST_START_TEST):
* check/gst/gstevent.c: (GST_START_TEST), (test_event):
* check/gst/gstghostpad.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST):
* check/pipelines/simple_launch_lines.c: (run_pipeline):
* check/states/sinks.c: (GST_START_TEST):
* gst/elements/gsttypefindelement.c: (stop_typefinding):
* gst/gstbin.c: (gst_bin_provide_clock_func), (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/gstelement.c: (gst_element_get_state_func),
(gst_element_get_state), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_set_state),
(gst_element_change_state), (gst_element_change_state_func):
* gst/gstelement.h:
* gst/gstpipeline.c: (gst_pipeline_class_init), (do_pipeline_seek),
(gst_pipeline_provide_clock_func):
* gst/gstutils.c: (gst_element_link_pads_filtered):
* tools/gst-launch.c: (main):
* tools/gst-typefind.c: (main):
Use GstClockTime in _get_state() instead of GTimeVal.
Remove old code in gstutils.c
2005-10-12 12:18:48 +00:00
|
|
|
ret =
|
|
|
|
gst_element_get_state (pipeline, ¤t, &pending, GST_CLOCK_TIME_NONE);
|
2005-10-10 10:50:12 +00:00
|
|
|
fail_if (ret != GST_STATE_CHANGE_SUCCESS, "State change to PLAYING failed");
|
|
|
|
fail_if (current != GST_STATE_PLAYING, "State change to PLAYING failed");
|
|
|
|
fail_if (pending != GST_STATE_VOID_PENDING, "State change to PLAYING failed");
|
2005-09-23 17:17:42 +00:00
|
|
|
|
|
|
|
/* NULL => READY */
|
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, sink, GST_STATE_NULL, GST_STATE_READY, 201);
|
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, identity, GST_STATE_NULL, GST_STATE_READY, 202);
|
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, src, GST_STATE_NULL, GST_STATE_READY, 203);
|
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, pipeline, GST_STATE_NULL, GST_STATE_READY, 204);
|
|
|
|
|
|
|
|
/* READY => PAUSED */
|
2005-10-15 15:53:59 +00:00
|
|
|
/* because of pre-rolling, sink will return ASYNC on state
|
2005-09-23 17:17:42 +00:00
|
|
|
* change and change state later when it has a buffer */
|
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_DEBUG ("popping READY -> PAUSED messages");
|
2005-09-23 17:17:42 +00:00
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, identity, GST_STATE_READY, GST_STATE_PAUSED,
|
|
|
|
205);
|
2005-09-24 14:35:07 +00:00
|
|
|
#if 0
|
|
|
|
/* From here on, all bets are off. Usually the source changes state next,
|
2005-10-15 15:53:59 +00:00
|
|
|
* but it might just as well be that the first buffer produced by the
|
2005-09-24 14:35:07 +00:00
|
|
|
* source reaches the sink before the source has finished its state change,
|
|
|
|
* in which case the sink will commit its new state before the source ... */
|
2005-09-23 17:17:42 +00:00
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, src, GST_STATE_READY, GST_STATE_PAUSED, 206);
|
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, sink, GST_STATE_READY, GST_STATE_PAUSED, 207);
|
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
|
|
|
#else
|
|
|
|
pop_messages (bus, 2); /* pop remaining ready => paused messages off the bus */
|
2005-09-23 17:17:42 +00:00
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, pipeline, GST_STATE_READY, GST_STATE_PAUSED,
|
|
|
|
208);
|
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
|
|
|
pop_async_done (bus);
|
2005-09-23 17:17:42 +00:00
|
|
|
|
|
|
|
/* PAUSED => PLAYING */
|
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_DEBUG ("popping PAUSED -> PLAYING messages");
|
2005-09-23 17:17:42 +00:00
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, sink, GST_STATE_PAUSED, GST_STATE_PLAYING, 209);
|
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, identity, GST_STATE_PAUSED, GST_STATE_PLAYING,
|
|
|
|
210);
|
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, src, GST_STATE_PAUSED, GST_STATE_PLAYING, 211);
|
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, pipeline, GST_STATE_PAUSED, GST_STATE_PLAYING,
|
|
|
|
212);
|
2005-09-24 14:35:07 +00:00
|
|
|
#endif
|
2005-09-23 17:17:42 +00:00
|
|
|
|
|
|
|
/* don't set to NULL that will set the bus flushing and kill our messages */
|
|
|
|
ret = gst_element_set_state (pipeline, GST_STATE_READY);
|
|
|
|
fail_if (ret != GST_STATE_CHANGE_SUCCESS, "State change to READY failed");
|
|
|
|
|
|
|
|
/* TODO: do we need to check downwards state change order as well? */
|
|
|
|
pop_messages (bus, 4); /* pop playing => paused messages off the bus */
|
|
|
|
pop_messages (bus, 4); /* pop paused => ready messages off the bus */
|
|
|
|
|
2007-02-28 16:46:07 +00:00
|
|
|
GST_DEBUG ("waiting for pipeline to reach refcount 1");
|
2005-10-19 11:43:42 +00:00
|
|
|
while (GST_OBJECT_REFCOUNT_VALUE (pipeline) > 1)
|
|
|
|
THREAD_SWITCH ();
|
|
|
|
|
2007-02-28 16:46:07 +00:00
|
|
|
GST_DEBUG ("checking refcount");
|
2005-09-23 17:17:42 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sink, "sink", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (pipeline, "pipeline", 1);
|
|
|
|
|
|
|
|
ret = gst_element_set_state (pipeline, GST_STATE_NULL);
|
|
|
|
fail_if (ret != GST_STATE_CHANGE_SUCCESS, "State change to NULL failed");
|
|
|
|
|
2007-02-28 16:46:07 +00:00
|
|
|
GST_DEBUG ("checking refcount");
|
2005-09-23 17:17:42 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sink, "sink", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (pipeline, "pipeline", 1);
|
|
|
|
|
2007-02-28 16:46:07 +00:00
|
|
|
GST_DEBUG ("cleanup");
|
check/gst/gstbin.c: Add bus to bin.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Add bus to bin.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(add_to_queue), (clear_queue), (reset_degree), (update_degree),
(find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
A bin does not have a bus, it gets the bus from the parent.
* gst/gstelement.c: (gst_element_requires_clock),
(gst_element_provides_clock), (gst_element_is_indexable),
(gst_element_is_locked_state), (gst_element_change_state),
(gst_element_set_bus_func):
Small cleanups.
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_provide_clock_func):
The pipeline provides a bus.
2005-09-29 09:39:36 +00:00
|
|
|
gst_object_unref (bus);
|
2005-09-23 17:17:42 +00:00
|
|
|
gst_object_unref (pipeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2005-09-26 18:22:07 +00:00
|
|
|
GST_START_TEST (test_children_state_change_order_two_sink)
|
|
|
|
{
|
|
|
|
GstElement *src, *tee, *identity, *sink1, *sink2, *pipeline;
|
|
|
|
GstStateChangeReturn ret;
|
|
|
|
GstBus *bus;
|
|
|
|
|
|
|
|
pipeline = gst_pipeline_new (NULL);
|
|
|
|
fail_unless (pipeline != NULL, "Could not create pipeline");
|
|
|
|
|
check/gst/gstbin.c: Add bus to bin.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Add bus to bin.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(add_to_queue), (clear_queue), (reset_degree), (update_degree),
(find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
A bin does not have a bus, it gets the bus from the parent.
* gst/gstelement.c: (gst_element_requires_clock),
(gst_element_provides_clock), (gst_element_is_indexable),
(gst_element_is_locked_state), (gst_element_change_state),
(gst_element_set_bus_func):
Small cleanups.
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_provide_clock_func):
The pipeline provides a bus.
2005-09-29 09:39:36 +00:00
|
|
|
bus = gst_element_get_bus (pipeline);
|
2005-09-26 18:22:07 +00:00
|
|
|
fail_unless (bus != NULL, "Pipeline has no bus?!");
|
|
|
|
|
|
|
|
src = gst_element_factory_make ("fakesrc", NULL);
|
|
|
|
fail_if (src == NULL, "Could not create fakesrc");
|
|
|
|
|
|
|
|
tee = gst_element_factory_make ("tee", NULL);
|
|
|
|
fail_if (tee == NULL, "Could not create tee");
|
|
|
|
|
|
|
|
identity = gst_element_factory_make ("identity", NULL);
|
|
|
|
fail_if (identity == NULL, "Could not create identity");
|
|
|
|
|
|
|
|
sink1 = gst_element_factory_make ("fakesink", NULL);
|
|
|
|
fail_if (sink1 == NULL, "Could not create fakesink1");
|
|
|
|
|
|
|
|
sink2 = gst_element_factory_make ("fakesink", NULL);
|
|
|
|
fail_if (sink2 == NULL, "Could not create fakesink2");
|
|
|
|
|
|
|
|
gst_bin_add_many (GST_BIN (pipeline), src, tee, identity, sink1, sink2, NULL);
|
|
|
|
|
|
|
|
fail_unless (gst_element_link (src, tee) == TRUE);
|
|
|
|
fail_unless (gst_element_link (tee, identity) == TRUE);
|
|
|
|
fail_unless (gst_element_link (identity, sink1) == TRUE);
|
|
|
|
fail_unless (gst_element_link (tee, sink2) == TRUE);
|
|
|
|
|
|
|
|
ret = gst_element_set_state (pipeline, GST_STATE_READY);
|
|
|
|
fail_if (ret != GST_STATE_CHANGE_SUCCESS, "State change to READY failed");
|
|
|
|
|
|
|
|
/* NULL => READY */
|
|
|
|
{
|
|
|
|
GstMessage *msg;
|
2005-10-08 08:58:45 +00:00
|
|
|
GstState old = 0, new = 0, pending = 0;
|
2005-09-26 18:22:07 +00:00
|
|
|
GstObject *first, *second;
|
|
|
|
|
|
|
|
msg = gst_bus_poll (bus, GST_MESSAGE_STATE_CHANGED, GST_SECOND);
|
|
|
|
fail_if (msg == NULL, "No state change message within 1 second (#201)");
|
|
|
|
|
Seriously, this is better than a previous commit as we only need to notify the fact that an element changed state in ...
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstmessage.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (message_received):
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_recalc_func),
(bin_bus_handler):
* gst/gstelement.c: (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state):
* gst/gstmessage.c: (gst_message_new_state_changed),
(gst_message_new_state_dirty), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_parse_state_changed),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration):
* gst/gstmessage.h:
* tools/gst-launch.c: (event_loop):
Seriously, this is better than a previous commit as we only need
to notify the fact that an element changed state in a streaming
thread, marking the state of the parents dirty, hence the
STATE_DIRTY message instead of abusing a boolean in a STATE_CHANGE
message.
2005-10-18 16:25:38 +00:00
|
|
|
gst_message_parse_state_changed (msg, &old, &new, &pending);
|
2005-09-26 18:22:07 +00:00
|
|
|
first = gst_object_ref (msg->src);
|
|
|
|
|
|
|
|
fail_if (first != GST_OBJECT (sink1) && first != GST_OBJECT (sink2),
|
|
|
|
"sink1 or sink2 should have changed state next #(202)");
|
|
|
|
gst_message_unref (msg);
|
|
|
|
|
|
|
|
msg = gst_bus_poll (bus, GST_MESSAGE_STATE_CHANGED, GST_SECOND);
|
|
|
|
fail_if (msg == NULL, "No state change message within 1 second (#201)");
|
|
|
|
|
Seriously, this is better than a previous commit as we only need to notify the fact that an element changed state in ...
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstmessage.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (message_received):
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_recalc_func),
(bin_bus_handler):
* gst/gstelement.c: (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state):
* gst/gstmessage.c: (gst_message_new_state_changed),
(gst_message_new_state_dirty), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_parse_state_changed),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration):
* gst/gstmessage.h:
* tools/gst-launch.c: (event_loop):
Seriously, this is better than a previous commit as we only need
to notify the fact that an element changed state in a streaming
thread, marking the state of the parents dirty, hence the
STATE_DIRTY message instead of abusing a boolean in a STATE_CHANGE
message.
2005-10-18 16:25:38 +00:00
|
|
|
gst_message_parse_state_changed (msg, &old, &new, &pending);
|
2005-09-26 18:22:07 +00:00
|
|
|
second = gst_object_ref (msg->src);
|
|
|
|
|
|
|
|
fail_if (second != GST_OBJECT (sink1) && second != GST_OBJECT (sink2),
|
|
|
|
"sink1 or sink2 should have changed state next #(202)");
|
|
|
|
gst_message_unref (msg);
|
|
|
|
|
|
|
|
fail_if (second == first, "got state change from same object");
|
|
|
|
|
|
|
|
gst_object_unref (first);
|
|
|
|
gst_object_unref (second);
|
|
|
|
}
|
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, identity, GST_STATE_NULL, GST_STATE_READY, 203);
|
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, tee, GST_STATE_NULL, GST_STATE_READY, 204);
|
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, src, GST_STATE_NULL, GST_STATE_READY, 205);
|
|
|
|
ASSERT_STATE_CHANGE_MSG (bus, pipeline, GST_STATE_NULL, GST_STATE_READY, 206);
|
|
|
|
|
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (tee, "tee", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (identity, "identity", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sink1, "sink1", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sink2, "sink2", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (pipeline, "pipeline", 1);
|
|
|
|
|
|
|
|
ret = gst_element_set_state (pipeline, GST_STATE_NULL);
|
|
|
|
fail_if (ret != GST_STATE_CHANGE_SUCCESS, "State change to NULL failed");
|
|
|
|
|
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (tee, "tee", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (identity, "identity", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sink1, "sink1", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sink2, "sink2", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (pipeline, "pipeline", 1);
|
|
|
|
|
check/gst/gstbin.c: Add bus to bin.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Add bus to bin.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(add_to_queue), (clear_queue), (reset_degree), (update_degree),
(find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
A bin does not have a bus, it gets the bus from the parent.
* gst/gstelement.c: (gst_element_requires_clock),
(gst_element_provides_clock), (gst_element_is_indexable),
(gst_element_is_locked_state), (gst_element_change_state),
(gst_element_set_bus_func):
Small cleanups.
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_provide_clock_func):
The pipeline provides a bus.
2005-09-29 09:39:36 +00:00
|
|
|
gst_object_unref (bus);
|
2005-09-26 18:22:07 +00:00
|
|
|
gst_object_unref (pipeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2007-08-16 10:27:16 +00:00
|
|
|
GST_START_TEST (test_iterate_sorted)
|
|
|
|
{
|
|
|
|
GstElement *src, *tee, *identity, *sink1, *sink2, *pipeline, *bin;
|
|
|
|
GstIterator *it;
|
2011-03-17 10:52:42 +00:00
|
|
|
GValue elem = { 0, };
|
2007-08-16 10:27:16 +00:00
|
|
|
|
|
|
|
pipeline = gst_pipeline_new (NULL);
|
|
|
|
fail_unless (pipeline != NULL, "Could not create pipeline");
|
|
|
|
|
|
|
|
bin = gst_bin_new (NULL);
|
|
|
|
fail_unless (bin != NULL, "Could not create bin");
|
|
|
|
|
|
|
|
src = gst_element_factory_make ("fakesrc", NULL);
|
|
|
|
fail_if (src == NULL, "Could not create fakesrc");
|
|
|
|
|
|
|
|
tee = gst_element_factory_make ("tee", NULL);
|
|
|
|
fail_if (tee == NULL, "Could not create tee");
|
|
|
|
|
|
|
|
sink1 = gst_element_factory_make ("fakesink", NULL);
|
|
|
|
fail_if (sink1 == NULL, "Could not create fakesink1");
|
|
|
|
|
|
|
|
gst_bin_add_many (GST_BIN (bin), src, tee, sink1, NULL);
|
|
|
|
|
|
|
|
fail_unless (gst_element_link (src, tee) == TRUE);
|
|
|
|
fail_unless (gst_element_link (tee, sink1) == TRUE);
|
|
|
|
|
|
|
|
identity = gst_element_factory_make ("identity", NULL);
|
|
|
|
fail_if (identity == NULL, "Could not create identity");
|
|
|
|
|
|
|
|
sink2 = gst_element_factory_make ("fakesink", NULL);
|
|
|
|
fail_if (sink2 == NULL, "Could not create fakesink2");
|
|
|
|
|
|
|
|
gst_bin_add_many (GST_BIN (pipeline), bin, identity, sink2, NULL);
|
|
|
|
|
|
|
|
fail_unless (gst_element_link (tee, identity) == TRUE);
|
|
|
|
fail_unless (gst_element_link (identity, sink2) == TRUE);
|
|
|
|
|
|
|
|
it = gst_bin_iterate_sorted (GST_BIN (pipeline));
|
|
|
|
fail_unless (gst_iterator_next (it, &elem) == GST_ITERATOR_OK);
|
2011-03-17 10:52:42 +00:00
|
|
|
fail_unless (g_value_get_object (&elem) == (gpointer) sink2);
|
|
|
|
g_value_reset (&elem);
|
2007-08-24 14:55:46 +00:00
|
|
|
|
2007-08-16 10:27:16 +00:00
|
|
|
fail_unless (gst_iterator_next (it, &elem) == GST_ITERATOR_OK);
|
2011-03-17 10:52:42 +00:00
|
|
|
fail_unless (g_value_get_object (&elem) == (gpointer) identity);
|
|
|
|
g_value_reset (&elem);
|
2007-08-24 14:55:46 +00:00
|
|
|
|
2007-08-16 10:27:16 +00:00
|
|
|
fail_unless (gst_iterator_next (it, &elem) == GST_ITERATOR_OK);
|
2011-03-17 10:52:42 +00:00
|
|
|
fail_unless (g_value_get_object (&elem) == (gpointer) bin);
|
|
|
|
g_value_reset (&elem);
|
2007-08-24 14:55:46 +00:00
|
|
|
|
2011-03-17 10:52:42 +00:00
|
|
|
g_value_unset (&elem);
|
2007-08-24 14:55:46 +00:00
|
|
|
gst_iterator_free (it);
|
2007-08-16 10:27:16 +00:00
|
|
|
|
2011-03-17 10:52:42 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (pipeline, "pipeline", 1);
|
2007-08-16 10:27:16 +00:00
|
|
|
gst_object_unref (pipeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
gst/gstbin.c: Keep track of pads that are being linked/unlinked and resync the state changes.
Original commit message from CVS:
Base on Patch by: Olivier Crete <tester at tester dot ca>
* gst/gstbin.c: (gst_bin_init), (gst_bin_add_func),
(gst_bin_remove_func), (update_degree),
(gst_bin_sort_iterator_new), (gst_bin_handle_message_func):
Keep track of pads that are being linked/unlinked and resync the state
changes.
* gst/gstpad.c: (gst_pad_get_direction),
(gst_pad_set_chain_function), (gst_pad_set_getrange_function),
(gst_pad_set_checkgetrange_function), (gst_pad_unlink),
(gst_pad_link_prepare), (gst_pad_link),
(gst_pad_event_default_dispatch), (gst_pad_chain), (gst_pad_push),
(gst_pad_check_pull_range), (gst_pad_get_range),
(gst_pad_pull_range):
Some code cleanups, use macros to check pad direction.
Don't need to take the lock on the pad direction.
Post structure change when pads are linked/unlinked.
Change some checks into _return_if_fail().
* tests/check/gst/gstbin.c:
(test_link_structure_change_state_changed_sync_cb),
(GST_START_TEST), (gst_bin_suite):
Add testcase for pad link/unlinke resync during a state change.
Fixes #510354.
2008-10-06 16:15:02 +00:00
|
|
|
static void
|
|
|
|
test_link_structure_change_state_changed_sync_cb (GstBus * bus,
|
|
|
|
GstMessage * message, gpointer data)
|
|
|
|
{
|
|
|
|
GstPipeline *pipeline = GST_PIPELINE (data);
|
|
|
|
GstElement *src, *identity, *sink;
|
|
|
|
GstState old, snew, pending;
|
|
|
|
|
|
|
|
sink = gst_bin_get_by_name (GST_BIN (pipeline), "sink");
|
|
|
|
fail_unless (sink != NULL, "Could not get sink");
|
|
|
|
|
|
|
|
gst_message_parse_state_changed (message, &old, &snew, &pending);
|
|
|
|
if (message->src != GST_OBJECT (sink) || snew != GST_STATE_READY) {
|
|
|
|
gst_object_unref (sink);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
src = gst_bin_get_by_name (GST_BIN (pipeline), "src");
|
|
|
|
fail_unless (src != NULL, "Could not get src");
|
|
|
|
|
|
|
|
identity = gst_bin_get_by_name (GST_BIN (pipeline), "identity");
|
|
|
|
fail_unless (identity != NULL, "Could not get identity");
|
|
|
|
|
|
|
|
/* link src to identity, the pipeline should detect the new link and
|
|
|
|
* resync the state change */
|
|
|
|
fail_unless (gst_element_link (src, identity) == TRUE);
|
|
|
|
|
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (identity);
|
|
|
|
gst_object_unref (sink);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_START_TEST (test_link_structure_change)
|
|
|
|
{
|
|
|
|
GstElement *src, *identity, *sink, *pipeline;
|
|
|
|
GstBus *bus;
|
|
|
|
GstState state;
|
|
|
|
|
|
|
|
pipeline = gst_pipeline_new (NULL);
|
|
|
|
fail_unless (pipeline != NULL, "Could not create pipeline");
|
|
|
|
|
|
|
|
bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
|
|
|
|
fail_unless (bus != NULL, "Could not get bus");
|
|
|
|
|
|
|
|
/* use the sync signal handler to link elements while the pipeline is still
|
|
|
|
* doing the state change */
|
|
|
|
gst_bus_set_sync_handler (bus, gst_bus_sync_signal_handler, pipeline);
|
|
|
|
g_object_connect (bus, "signal::sync-message::state-changed",
|
|
|
|
G_CALLBACK (test_link_structure_change_state_changed_sync_cb), pipeline,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
src = gst_element_factory_make ("fakesrc", "src");
|
|
|
|
fail_if (src == NULL, "Could not create fakesrc");
|
|
|
|
|
|
|
|
identity = gst_element_factory_make ("identity", "identity");
|
|
|
|
fail_if (identity == NULL, "Could not create identity");
|
|
|
|
|
|
|
|
sink = gst_element_factory_make ("fakesink", "sink");
|
|
|
|
fail_if (sink == NULL, "Could not create fakesink1");
|
|
|
|
|
|
|
|
gst_bin_add_many (GST_BIN (pipeline), src, identity, sink, NULL);
|
|
|
|
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_READY);
|
|
|
|
gst_element_get_state (pipeline, NULL, NULL, GST_CLOCK_TIME_NONE);
|
|
|
|
|
|
|
|
/* the state change will be done on src only if the pipeline correctly resyncs
|
2011-04-24 10:44:19 +00:00
|
|
|
* after that fakesrc has been linked to identity */
|
gst/gstbin.c: Keep track of pads that are being linked/unlinked and resync the state changes.
Original commit message from CVS:
Base on Patch by: Olivier Crete <tester at tester dot ca>
* gst/gstbin.c: (gst_bin_init), (gst_bin_add_func),
(gst_bin_remove_func), (update_degree),
(gst_bin_sort_iterator_new), (gst_bin_handle_message_func):
Keep track of pads that are being linked/unlinked and resync the state
changes.
* gst/gstpad.c: (gst_pad_get_direction),
(gst_pad_set_chain_function), (gst_pad_set_getrange_function),
(gst_pad_set_checkgetrange_function), (gst_pad_unlink),
(gst_pad_link_prepare), (gst_pad_link),
(gst_pad_event_default_dispatch), (gst_pad_chain), (gst_pad_push),
(gst_pad_check_pull_range), (gst_pad_get_range),
(gst_pad_pull_range):
Some code cleanups, use macros to check pad direction.
Don't need to take the lock on the pad direction.
Post structure change when pads are linked/unlinked.
Change some checks into _return_if_fail().
* tests/check/gst/gstbin.c:
(test_link_structure_change_state_changed_sync_cb),
(GST_START_TEST), (gst_bin_suite):
Add testcase for pad link/unlinke resync during a state change.
Fixes #510354.
2008-10-06 16:15:02 +00:00
|
|
|
gst_element_get_state (src, &state, NULL, 0);
|
|
|
|
fail_unless_equals_int (state, GST_STATE_READY);
|
|
|
|
|
2011-04-24 10:44:19 +00:00
|
|
|
/* clean up */
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst/gstbin.c: Keep track of pads that are being linked/unlinked and resync the state changes.
Original commit message from CVS:
Base on Patch by: Olivier Crete <tester at tester dot ca>
* gst/gstbin.c: (gst_bin_init), (gst_bin_add_func),
(gst_bin_remove_func), (update_degree),
(gst_bin_sort_iterator_new), (gst_bin_handle_message_func):
Keep track of pads that are being linked/unlinked and resync the state
changes.
* gst/gstpad.c: (gst_pad_get_direction),
(gst_pad_set_chain_function), (gst_pad_set_getrange_function),
(gst_pad_set_checkgetrange_function), (gst_pad_unlink),
(gst_pad_link_prepare), (gst_pad_link),
(gst_pad_event_default_dispatch), (gst_pad_chain), (gst_pad_push),
(gst_pad_check_pull_range), (gst_pad_get_range),
(gst_pad_pull_range):
Some code cleanups, use macros to check pad direction.
Don't need to take the lock on the pad direction.
Post structure change when pads are linked/unlinked.
Change some checks into _return_if_fail().
* tests/check/gst/gstbin.c:
(test_link_structure_change_state_changed_sync_cb),
(GST_START_TEST), (gst_bin_suite):
Add testcase for pad link/unlinke resync during a state change.
Fixes #510354.
2008-10-06 16:15:02 +00:00
|
|
|
gst_object_unref (bus);
|
|
|
|
gst_object_unref (pipeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2010-04-14 15:56:17 +00:00
|
|
|
static GstBusSyncReply
|
|
|
|
sync_handler_remove_sink (GstBus * bus, GstMessage * message, gpointer data)
|
|
|
|
{
|
|
|
|
if (GST_MESSAGE_TYPE (message) == GST_MESSAGE_ERROR) {
|
|
|
|
GstElement *child;
|
|
|
|
|
|
|
|
child = gst_bin_get_by_name (GST_BIN (data), "fakesink");
|
|
|
|
fail_unless (child != NULL, "Could not find fakesink");
|
|
|
|
|
|
|
|
gst_bin_remove (GST_BIN (data), child);
|
|
|
|
gst_object_unref (child);
|
|
|
|
}
|
|
|
|
return GST_BUS_PASS;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_START_TEST (test_state_failure_remove)
|
|
|
|
{
|
|
|
|
GstElement *src, *sink, *pipeline;
|
|
|
|
GstBus *bus;
|
|
|
|
GstStateChangeReturn ret;
|
|
|
|
|
|
|
|
pipeline = gst_pipeline_new (NULL);
|
|
|
|
fail_unless (pipeline != NULL, "Could not create pipeline");
|
|
|
|
|
|
|
|
src = gst_element_factory_make ("fakesrc", "fakesrc");
|
|
|
|
fail_unless (src != NULL, "Could not create fakesrc");
|
|
|
|
|
|
|
|
sink = gst_element_factory_make ("fakesink", "fakesink");
|
|
|
|
fail_unless (sink != NULL, "Could not create fakesink");
|
|
|
|
|
|
|
|
g_object_set (sink, "state-error", 1, NULL);
|
|
|
|
|
|
|
|
gst_bin_add (GST_BIN (pipeline), src);
|
|
|
|
gst_bin_add (GST_BIN (pipeline), sink);
|
|
|
|
|
|
|
|
gst_element_link (src, sink);
|
|
|
|
|
|
|
|
bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
|
|
|
|
fail_unless (bus != NULL, "Could not get bus");
|
|
|
|
|
|
|
|
gst_bus_set_sync_handler (bus, sync_handler_remove_sink, pipeline);
|
|
|
|
|
|
|
|
ret = gst_element_set_state (pipeline, GST_STATE_READY);
|
|
|
|
fail_unless (ret == GST_STATE_CHANGE_SUCCESS,
|
|
|
|
"did not get state change success");
|
|
|
|
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
|
|
|
|
|
|
|
gst_object_unref (bus);
|
|
|
|
gst_object_unref (pipeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2011-04-03 15:11:50 +00:00
|
|
|
GST_START_TEST (test_many_bins)
|
|
|
|
{
|
|
|
|
GstStateChangeReturn ret;
|
|
|
|
GstElement *src, *sink, *pipeline, *last_bin = NULL;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
#define NUM_BINS 2000
|
|
|
|
|
|
|
|
pipeline = gst_pipeline_new (NULL);
|
|
|
|
fail_unless (pipeline != NULL, "Could not create pipeline");
|
|
|
|
|
|
|
|
src = gst_element_factory_make ("fakesrc", "fakesrc");
|
|
|
|
fail_unless (src != NULL, "Could not create fakesrc");
|
|
|
|
g_object_set (src, "num-buffers", 3, NULL);
|
|
|
|
|
|
|
|
sink = gst_element_factory_make ("fakesink", "fakesink");
|
|
|
|
fail_unless (sink != NULL, "Could not create fakesink");
|
|
|
|
|
|
|
|
gst_bin_add (GST_BIN (pipeline), src);
|
|
|
|
gst_bin_add (GST_BIN (pipeline), sink);
|
|
|
|
|
|
|
|
for (i = 0; i < NUM_BINS; ++i) {
|
|
|
|
GstElement *bin, *identity;
|
|
|
|
GstPad *srcpad, *sinkpad;
|
|
|
|
|
|
|
|
bin = gst_bin_new (NULL);
|
|
|
|
fail_unless (bin != NULL, "Could not create bin %d", i);
|
|
|
|
identity = gst_element_factory_make ("identity", "identity");
|
|
|
|
fail_unless (identity != NULL, "Could not create identity %d", i);
|
2011-04-06 10:38:57 +00:00
|
|
|
g_object_set (identity, "silent", TRUE, NULL);
|
2011-04-03 15:11:50 +00:00
|
|
|
gst_bin_add (GST_BIN (bin), identity);
|
|
|
|
sinkpad = gst_element_get_static_pad (identity, "sink");
|
|
|
|
srcpad = gst_element_get_static_pad (identity, "src");
|
|
|
|
gst_element_add_pad (bin, gst_ghost_pad_new ("sink", sinkpad));
|
|
|
|
gst_element_add_pad (bin, gst_ghost_pad_new ("src", srcpad));
|
|
|
|
gst_object_unref (sinkpad);
|
|
|
|
gst_object_unref (srcpad);
|
|
|
|
|
|
|
|
gst_bin_add (GST_BIN (pipeline), bin);
|
|
|
|
|
|
|
|
if (last_bin == NULL) {
|
2011-04-06 10:38:57 +00:00
|
|
|
srcpad = gst_element_get_static_pad (src, "src");
|
2011-04-03 15:11:50 +00:00
|
|
|
} else {
|
2011-04-06 10:38:57 +00:00
|
|
|
srcpad = gst_element_get_static_pad (last_bin, "src");
|
2011-04-03 15:11:50 +00:00
|
|
|
}
|
2011-04-06 10:38:57 +00:00
|
|
|
sinkpad = gst_element_get_static_pad (bin, "sink");
|
|
|
|
gst_pad_link_full (srcpad, sinkpad, GST_PAD_LINK_CHECK_NOTHING);
|
|
|
|
gst_object_unref (sinkpad);
|
|
|
|
gst_object_unref (srcpad);
|
|
|
|
|
2011-04-03 15:11:50 +00:00
|
|
|
|
|
|
|
last_bin = bin;
|
2011-04-06 10:30:18 +00:00
|
|
|
|
|
|
|
/* insert some queues to limit the number of function calls in a row */
|
|
|
|
if ((i % 100) == 0) {
|
|
|
|
GstElement *q = gst_element_factory_make ("queue", NULL);
|
|
|
|
|
|
|
|
GST_LOG ("bin #%d, inserting queue", i);
|
|
|
|
gst_bin_add (GST_BIN (pipeline), q);
|
|
|
|
fail_unless (gst_element_link (last_bin, q));
|
|
|
|
last_bin = q;
|
|
|
|
}
|
2011-04-03 15:11:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fail_unless (gst_element_link (last_bin, sink));
|
|
|
|
|
|
|
|
ret = gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
2011-04-11 11:04:34 +00:00
|
|
|
fail_unless_equals_int (ret, GST_STATE_CHANGE_ASYNC);
|
2011-04-03 15:11:50 +00:00
|
|
|
|
2011-04-11 11:04:34 +00:00
|
|
|
for (i = 0; i < 15; ++i) {
|
|
|
|
GST_INFO ("waiting for preroll ...");
|
|
|
|
ret = gst_element_get_state (pipeline, NULL, NULL, GST_SECOND);
|
|
|
|
if (ret != GST_STATE_CHANGE_ASYNC)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
fail_unless_equals_int (ret, GST_STATE_CHANGE_SUCCESS);
|
2011-04-03 15:11:50 +00:00
|
|
|
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
|
|
|
gst_object_unref (pipeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2008-02-29 13:59:24 +00:00
|
|
|
static Suite *
|
2005-06-28 09:59:01 +00:00
|
|
|
gst_bin_suite (void)
|
2005-03-09 16:10:59 +00:00
|
|
|
{
|
|
|
|
Suite *s = suite_create ("GstBin");
|
|
|
|
TCase *tc_chain = tcase_create ("bin tests");
|
|
|
|
|
2005-10-10 10:50:12 +00:00
|
|
|
tcase_set_timeout (tc_chain, 0);
|
|
|
|
|
2005-03-09 16:10:59 +00:00
|
|
|
suite_add_tcase (s, tc_chain);
|
|
|
|
tcase_add_test (tc_chain, test_interface);
|
2005-09-23 17:17:42 +00:00
|
|
|
tcase_add_test (tc_chain, test_children_state_change_order_flagged_sink);
|
|
|
|
tcase_add_test (tc_chain, test_children_state_change_order_semi_sink);
|
2005-09-26 18:22:07 +00:00
|
|
|
tcase_add_test (tc_chain, test_children_state_change_order_two_sink);
|
2005-07-09 15:18:53 +00:00
|
|
|
tcase_add_test (tc_chain, test_message_state_changed);
|
2005-07-09 16:36:18 +00:00
|
|
|
tcase_add_test (tc_chain, test_message_state_changed_child);
|
2005-07-09 22:54:28 +00:00
|
|
|
tcase_add_test (tc_chain, test_message_state_changed_children);
|
2005-08-17 16:33:27 +00:00
|
|
|
tcase_add_test (tc_chain, test_watch_for_state_change);
|
2010-05-25 17:17:44 +00:00
|
|
|
tcase_add_test (tc_chain, test_state_change_error_message);
|
2005-07-28 15:38:46 +00:00
|
|
|
tcase_add_test (tc_chain, test_add_linked);
|
2006-07-02 22:17:31 +00:00
|
|
|
tcase_add_test (tc_chain, test_add_self);
|
2007-08-16 10:27:16 +00:00
|
|
|
tcase_add_test (tc_chain, test_iterate_sorted);
|
gst/gstbin.c: Keep track of pads that are being linked/unlinked and resync the state changes.
Original commit message from CVS:
Base on Patch by: Olivier Crete <tester at tester dot ca>
* gst/gstbin.c: (gst_bin_init), (gst_bin_add_func),
(gst_bin_remove_func), (update_degree),
(gst_bin_sort_iterator_new), (gst_bin_handle_message_func):
Keep track of pads that are being linked/unlinked and resync the state
changes.
* gst/gstpad.c: (gst_pad_get_direction),
(gst_pad_set_chain_function), (gst_pad_set_getrange_function),
(gst_pad_set_checkgetrange_function), (gst_pad_unlink),
(gst_pad_link_prepare), (gst_pad_link),
(gst_pad_event_default_dispatch), (gst_pad_chain), (gst_pad_push),
(gst_pad_check_pull_range), (gst_pad_get_range),
(gst_pad_pull_range):
Some code cleanups, use macros to check pad direction.
Don't need to take the lock on the pad direction.
Post structure change when pads are linked/unlinked.
Change some checks into _return_if_fail().
* tests/check/gst/gstbin.c:
(test_link_structure_change_state_changed_sync_cb),
(GST_START_TEST), (gst_bin_suite):
Add testcase for pad link/unlinke resync during a state change.
Fixes #510354.
2008-10-06 16:15:02 +00:00
|
|
|
tcase_add_test (tc_chain, test_link_structure_change);
|
2010-04-14 15:56:17 +00:00
|
|
|
tcase_add_test (tc_chain, test_state_failure_remove);
|
2011-04-11 12:04:32 +00:00
|
|
|
|
|
|
|
/* fails on OSX build bot for some reason, and is a bit silly anyway */
|
|
|
|
if (0)
|
|
|
|
tcase_add_test (tc_chain, test_many_bins);
|
2005-03-09 16:10:59 +00:00
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2006-07-01 20:56:56 +00:00
|
|
|
GST_CHECK_MAIN (gst_bin);
|