check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <2005> Thomas Vander Stichele <thomas at apestaart dot org>
|
|
|
|
*
|
|
|
|
* gstpad.c: Unit test for GstPad
|
|
|
|
*
|
|
|
|
* 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>
|
2011-11-24 16:47:09 +00:00
|
|
|
#include <glib/gthread.h>
|
check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
|
2005-07-09 16:36:18 +00:00
|
|
|
GST_START_TEST (test_link)
|
check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
{
|
|
|
|
GstPad *src, *sink;
|
2005-06-19 00:52:31 +00:00
|
|
|
GstPadTemplate *srct;
|
check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
|
|
|
|
GstPadLinkReturn ret;
|
|
|
|
gchar *name;
|
|
|
|
|
|
|
|
src = gst_pad_new ("source", GST_PAD_SRC);
|
|
|
|
fail_if (src == NULL);
|
2005-07-12 09:41:00 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "source pad", 1);
|
check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
|
|
|
|
name = gst_pad_get_name (src);
|
|
|
|
fail_unless (strcmp (name, "source") == 0);
|
2005-07-12 09:41:00 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "source pad", 1);
|
|
|
|
g_free (name);
|
check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
|
|
|
|
sink = gst_pad_new ("sink", GST_PAD_SINK);
|
|
|
|
fail_if (sink == NULL);
|
|
|
|
|
2005-06-19 00:52:31 +00:00
|
|
|
/* linking without templates or caps should fail */
|
check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
ret = gst_pad_link (src, sink);
|
2005-07-12 09:41:00 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "source pad", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sink, "sink pad", 1);
|
check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
fail_unless (ret == GST_PAD_LINK_NOFORMAT);
|
|
|
|
|
|
|
|
ASSERT_CRITICAL (gst_pad_get_pad_template (NULL));
|
|
|
|
|
|
|
|
srct = gst_pad_get_pad_template (src);
|
|
|
|
fail_unless (srct == NULL);
|
2005-07-12 09:41:00 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "source pad", 1);
|
|
|
|
|
|
|
|
/* clean up */
|
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "source pad", 1);
|
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (sink);
|
check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
}
|
|
|
|
|
2005-07-09 16:36:18 +00:00
|
|
|
GST_END_TEST;
|
2005-07-06 11:31:57 +00:00
|
|
|
|
check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
/* threaded link/unlink */
|
|
|
|
/* use globals */
|
2008-02-29 13:59:24 +00:00
|
|
|
static GstPad *src, *sink;
|
check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
|
2008-02-29 13:59:24 +00:00
|
|
|
static void
|
check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
thread_link_unlink (gpointer data)
|
|
|
|
{
|
|
|
|
THREAD_START ();
|
|
|
|
|
|
|
|
while (THREAD_TEST_RUNNING ()) {
|
|
|
|
gst_pad_link (src, sink);
|
|
|
|
gst_pad_unlink (src, sink);
|
|
|
|
THREAD_SWITCH ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-09 16:36:18 +00:00
|
|
|
GST_START_TEST (test_link_unlink_threaded)
|
check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
{
|
|
|
|
GstCaps *caps;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
src = gst_pad_new ("source", GST_PAD_SRC);
|
|
|
|
fail_if (src == NULL);
|
|
|
|
sink = gst_pad_new ("sink", GST_PAD_SINK);
|
|
|
|
fail_if (sink == NULL);
|
|
|
|
|
2005-07-04 09:22:51 +00:00
|
|
|
caps = gst_caps_from_string ("foo/bar");
|
2011-11-21 16:46:45 +00:00
|
|
|
gst_pad_set_active (src, TRUE);
|
check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
gst_pad_set_caps (src, caps);
|
2011-05-08 10:46:17 +00:00
|
|
|
gst_pad_set_active (sink, TRUE);
|
check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
gst_pad_set_caps (sink, caps);
|
2011-05-30 11:40:04 +00:00
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
|
check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
|
|
|
|
MAIN_START_THREADS (5, thread_link_unlink, NULL);
|
|
|
|
for (i = 0; i < 1000; ++i) {
|
|
|
|
gst_pad_is_linked (src);
|
|
|
|
gst_pad_is_linked (sink);
|
|
|
|
THREAD_SWITCH ();
|
|
|
|
}
|
|
|
|
MAIN_STOP_THREADS ();
|
2006-07-21 10:38:53 +00:00
|
|
|
|
2011-05-30 11:40:04 +00:00
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
|
2006-07-21 10:38:53 +00:00
|
|
|
gst_caps_unref (caps);
|
|
|
|
|
2011-05-30 11:40:04 +00:00
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 2);
|
2006-07-21 10:38:53 +00:00
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (sink);
|
check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
}
|
2005-06-19 00:52:31 +00:00
|
|
|
|
2005-07-09 16:36:18 +00:00
|
|
|
GST_END_TEST;
|
2005-07-06 11:31:57 +00:00
|
|
|
|
2005-07-09 16:36:18 +00:00
|
|
|
GST_START_TEST (test_refcount)
|
2005-06-19 00:52:31 +00:00
|
|
|
{
|
|
|
|
GstPad *src, *sink;
|
|
|
|
GstCaps *caps;
|
|
|
|
GstPadLinkReturn plr;
|
|
|
|
|
|
|
|
sink = gst_pad_new ("sink", GST_PAD_SINK);
|
|
|
|
fail_if (sink == NULL);
|
|
|
|
|
|
|
|
src = gst_pad_new ("src", GST_PAD_SRC);
|
|
|
|
fail_if (src == NULL);
|
|
|
|
|
2005-07-04 09:22:51 +00:00
|
|
|
caps = gst_caps_from_string ("foo/bar");
|
2005-06-19 00:52:31 +00:00
|
|
|
/* one for me */
|
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
|
|
|
|
2011-05-30 11:40:04 +00:00
|
|
|
/* can't set caps on flushing sinkpad */
|
2011-11-10 09:58:42 +00:00
|
|
|
fail_if (gst_pad_set_caps (src, caps) == TRUE);
|
2011-05-08 10:46:17 +00:00
|
|
|
fail_if (gst_pad_set_caps (sink, caps) == TRUE);
|
2011-05-30 11:40:04 +00:00
|
|
|
/* one for me and one for each set_caps */
|
2011-11-10 09:58:42 +00:00
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
|
|
|
|
|
|
|
gst_pad_set_active (src, TRUE);
|
|
|
|
fail_unless (gst_pad_set_caps (src, caps) == TRUE);
|
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 2);
|
2011-05-08 10:46:17 +00:00
|
|
|
|
|
|
|
gst_pad_set_active (sink, TRUE);
|
|
|
|
fail_unless (gst_pad_set_caps (sink, caps) == TRUE);
|
2011-05-30 11:40:04 +00:00
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
|
2005-06-19 00:52:31 +00:00
|
|
|
|
|
|
|
plr = gst_pad_link (src, sink);
|
|
|
|
fail_unless (GST_PAD_LINK_SUCCESSFUL (plr));
|
2011-05-20 09:36:25 +00:00
|
|
|
/* src caps added to pending caps on sink */
|
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
|
2005-06-19 00:52:31 +00:00
|
|
|
|
|
|
|
gst_pad_unlink (src, sink);
|
2011-05-20 09:36:25 +00:00
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
|
2005-06-19 00:52:31 +00:00
|
|
|
|
|
|
|
/* cleanup */
|
2005-06-28 09:59:01 +00:00
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (sink);
|
2005-06-19 00:52:31 +00:00
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
|
|
|
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
}
|
|
|
|
|
2005-07-09 16:36:18 +00:00
|
|
|
GST_END_TEST;
|
2005-07-06 11:31:57 +00:00
|
|
|
|
2005-07-09 16:36:18 +00:00
|
|
|
GST_START_TEST (test_get_allowed_caps)
|
2005-06-19 00:52:31 +00:00
|
|
|
{
|
|
|
|
GstPad *src, *sink;
|
|
|
|
GstCaps *caps, *gotcaps;
|
|
|
|
GstBuffer *buffer;
|
|
|
|
GstPadLinkReturn plr;
|
|
|
|
|
|
|
|
ASSERT_CRITICAL (gst_pad_get_allowed_caps (NULL));
|
|
|
|
|
|
|
|
buffer = gst_buffer_new ();
|
|
|
|
ASSERT_CRITICAL (gst_pad_get_allowed_caps ((GstPad *) buffer));
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
|
|
|
|
src = gst_pad_new ("src", GST_PAD_SRC);
|
|
|
|
fail_if (src == NULL);
|
|
|
|
caps = gst_pad_get_allowed_caps (src);
|
|
|
|
fail_unless (caps == NULL);
|
|
|
|
|
2005-07-04 09:22:51 +00:00
|
|
|
caps = gst_caps_from_string ("foo/bar");
|
2005-06-19 00:52:31 +00:00
|
|
|
|
2007-01-11 10:48:59 +00:00
|
|
|
sink = gst_pad_new ("sink", GST_PAD_SINK);
|
2011-11-21 16:46:45 +00:00
|
|
|
gst_pad_set_active (src, TRUE);
|
2011-11-24 08:31:02 +00:00
|
|
|
/* source pad is active and will accept the caps event */
|
2011-05-30 11:40:04 +00:00
|
|
|
fail_unless (gst_pad_set_caps (src, caps) == TRUE);
|
2011-11-24 08:31:02 +00:00
|
|
|
/* sink pad is not active and will refuse the caps event */
|
2011-05-08 10:46:17 +00:00
|
|
|
fail_if (gst_pad_set_caps (sink, caps) == TRUE);
|
2011-11-21 16:46:45 +00:00
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 2);
|
2011-05-08 10:46:17 +00:00
|
|
|
|
|
|
|
gst_pad_set_active (sink, TRUE);
|
2011-11-24 08:31:02 +00:00
|
|
|
/* sink pad is now active and will accept the caps event */
|
2011-05-08 10:46:17 +00:00
|
|
|
fail_unless (gst_pad_set_caps (sink, caps) == TRUE);
|
2005-06-19 00:52:31 +00:00
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
|
|
|
|
|
|
|
|
plr = gst_pad_link (src, sink);
|
|
|
|
fail_unless (GST_PAD_LINK_SUCCESSFUL (plr));
|
|
|
|
|
|
|
|
gotcaps = gst_pad_get_allowed_caps (src);
|
|
|
|
fail_if (gotcaps == NULL);
|
|
|
|
fail_unless (gst_caps_is_equal (gotcaps, caps));
|
|
|
|
|
|
|
|
ASSERT_CAPS_REFCOUNT (gotcaps, "gotcaps", 1);
|
|
|
|
gst_caps_unref (gotcaps);
|
|
|
|
|
|
|
|
gst_pad_unlink (src, sink);
|
|
|
|
|
|
|
|
/* cleanup */
|
2011-05-20 09:36:25 +00:00
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
|
2005-06-19 00:52:31 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sink, "sink", 1);
|
|
|
|
|
2005-06-28 09:59:01 +00:00
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (sink);
|
2005-06-19 00:52:31 +00:00
|
|
|
|
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
}
|
|
|
|
|
2005-07-09 16:36:18 +00:00
|
|
|
GST_END_TEST;
|
2005-07-06 11:31:57 +00:00
|
|
|
|
2011-11-09 11:21:17 +00:00
|
|
|
static GstCaps *event_caps = NULL;
|
|
|
|
|
|
|
|
static gboolean
|
2011-11-17 11:40:45 +00:00
|
|
|
sticky_event (GstPad * pad, GstObject * parent, GstEvent * event)
|
2011-11-09 11:21:17 +00:00
|
|
|
{
|
|
|
|
GstCaps *caps;
|
|
|
|
|
|
|
|
fail_unless (GST_EVENT_TYPE (event) == GST_EVENT_CAPS);
|
|
|
|
|
|
|
|
/* Ensure we get here just once: */
|
|
|
|
fail_unless (event_caps == NULL);
|
|
|
|
|
|
|
|
/* The event must arrive before any buffer: */
|
|
|
|
fail_unless_equals_int (g_list_length (buffers), 0);
|
|
|
|
|
|
|
|
gst_event_parse_caps (event, &caps);
|
|
|
|
event_caps = gst_caps_ref (caps);
|
|
|
|
|
|
|
|
gst_event_unref (event);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-11-24 08:31:02 +00:00
|
|
|
/* Tests whether caps get properly forwarded when pads
|
|
|
|
are initially unlinked */
|
2011-11-09 11:21:17 +00:00
|
|
|
GST_START_TEST (test_sticky_caps_unlinked)
|
|
|
|
{
|
|
|
|
GstCaps *caps;
|
|
|
|
GstPadTemplate *src_template, *sink_template;
|
|
|
|
GstPad *src, *sink;
|
|
|
|
GstEvent *event;
|
|
|
|
|
|
|
|
caps = gst_caps_from_string ("foo/bar, dummy=(int){1, 2}");
|
|
|
|
src_template = gst_pad_template_new ("src", GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS, caps);
|
|
|
|
sink_template = gst_pad_template_new ("sink", GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS, caps);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
|
|
|
|
src = gst_pad_new_from_template (src_template, "src");
|
|
|
|
fail_if (src == NULL);
|
|
|
|
sink = gst_pad_new_from_template (sink_template, "sink");
|
|
|
|
fail_if (sink == NULL);
|
|
|
|
gst_pad_set_event_function (sink, sticky_event);
|
|
|
|
gst_pad_set_chain_function (sink, gst_check_chain_func);
|
|
|
|
|
|
|
|
gst_object_unref (src_template);
|
|
|
|
gst_object_unref (sink_template);
|
|
|
|
|
|
|
|
caps = gst_caps_from_string ("foo/bar, dummy=(int)1");
|
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
|
|
|
|
|
|
|
event = gst_event_new_caps (caps);
|
2011-11-21 16:46:45 +00:00
|
|
|
gst_pad_set_active (src, TRUE);
|
2011-11-09 11:21:17 +00:00
|
|
|
fail_unless (gst_pad_push_event (src, event) == TRUE);
|
|
|
|
fail_unless (event_caps == NULL);
|
|
|
|
|
|
|
|
/* Linking and activating will not forward the sticky event yet... */
|
|
|
|
fail_unless (GST_PAD_LINK_SUCCESSFUL (gst_pad_link (src, sink)));
|
|
|
|
gst_pad_set_active (sink, TRUE);
|
|
|
|
fail_unless (event_caps == NULL);
|
|
|
|
|
|
|
|
/* ...but the first buffer will: */
|
|
|
|
fail_unless (gst_pad_push (src, gst_buffer_new ()) == GST_FLOW_OK);
|
|
|
|
fail_unless (event_caps == caps);
|
|
|
|
fail_unless_equals_int (g_list_length (buffers), 1);
|
|
|
|
|
|
|
|
gst_caps_replace (&caps, NULL);
|
|
|
|
gst_caps_replace (&event_caps, NULL);
|
|
|
|
|
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sink, "sink", 1);
|
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (sink);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2011-11-24 08:31:14 +00:00
|
|
|
/* Same as test_sticky_caps_unlinked except that the source pad
|
|
|
|
* has a template of ANY and we will attempt to push
|
|
|
|
* incompatible caps */
|
|
|
|
GST_START_TEST (test_sticky_caps_unlinked_incompatible)
|
|
|
|
{
|
|
|
|
GstCaps *caps, *failcaps;
|
|
|
|
GstPadTemplate *src_template, *sink_template;
|
|
|
|
GstPad *src, *sink;
|
|
|
|
GstEvent *event;
|
|
|
|
|
|
|
|
/* Source pad has ANY caps
|
|
|
|
* Sink pad has foobar caps
|
|
|
|
* We will push the pony express caps (which should fail)
|
|
|
|
*/
|
|
|
|
caps = gst_caps_from_string ("foo/bar, dummy=(int){1, 2}");
|
|
|
|
src_template = gst_pad_template_new ("src", GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS, gst_caps_new_any ());
|
|
|
|
sink_template = gst_pad_template_new ("sink", GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS, caps);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
|
|
|
|
src = gst_pad_new_from_template (src_template, "src");
|
|
|
|
fail_if (src == NULL);
|
|
|
|
sink = gst_pad_new_from_template (sink_template, "sink");
|
|
|
|
fail_if (sink == NULL);
|
|
|
|
gst_pad_set_event_function (sink, sticky_event);
|
|
|
|
gst_pad_set_chain_function (sink, gst_check_chain_func);
|
|
|
|
|
|
|
|
gst_object_unref (src_template);
|
|
|
|
gst_object_unref (sink_template);
|
|
|
|
|
|
|
|
failcaps = gst_caps_from_string ("pony/express, failure=(boolean)true");
|
|
|
|
ASSERT_CAPS_REFCOUNT (failcaps, "caps", 1);
|
|
|
|
|
|
|
|
event = gst_event_new_caps (failcaps);
|
|
|
|
gst_pad_set_active (src, TRUE);
|
|
|
|
/* The pad isn't linked yet, and anything matches the source pad template
|
|
|
|
* (which is ANY) */
|
|
|
|
fail_unless (gst_pad_push_event (src, event) == TRUE);
|
|
|
|
fail_unless (event_caps == NULL);
|
|
|
|
|
|
|
|
/* Linking and activating will not forward the sticky event yet... */
|
|
|
|
fail_unless (GST_PAD_LINK_SUCCESSFUL (gst_pad_link (src, sink)));
|
|
|
|
gst_pad_set_active (sink, TRUE);
|
|
|
|
fail_unless (event_caps == NULL);
|
|
|
|
|
|
|
|
/* ...but the first buffer will and should FAIL since the caps
|
|
|
|
* are not compatible */
|
|
|
|
fail_unless (gst_pad_push (src,
|
|
|
|
gst_buffer_new ()) == GST_FLOW_NOT_NEGOTIATED);
|
|
|
|
/* We shouldn't have received the caps event since it's incompatible */
|
|
|
|
fail_unless (event_caps == NULL);
|
|
|
|
/* We shouldn't have received any buffers since caps are incompatible */
|
|
|
|
fail_unless_equals_int (g_list_length (buffers), 0);
|
|
|
|
|
|
|
|
gst_caps_replace (&caps, NULL);
|
|
|
|
gst_caps_replace (&event_caps, NULL);
|
|
|
|
|
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sink, "sink", 1);
|
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (sink);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2011-11-09 11:21:17 +00:00
|
|
|
/* Like test_sticky_caps_unlinked, but link before caps: */
|
|
|
|
|
|
|
|
GST_START_TEST (test_sticky_caps_flushing)
|
|
|
|
{
|
|
|
|
GstCaps *caps;
|
|
|
|
GstPadTemplate *src_template, *sink_template;
|
|
|
|
GstPad *src, *sink;
|
|
|
|
GstEvent *event;
|
|
|
|
|
|
|
|
caps = gst_caps_from_string ("foo/bar, dummy=(int){1, 2}");
|
|
|
|
src_template = gst_pad_template_new ("src", GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS, caps);
|
|
|
|
sink_template = gst_pad_template_new ("sink", GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS, caps);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
|
|
|
|
src = gst_pad_new_from_template (src_template, "src");
|
|
|
|
fail_if (src == NULL);
|
|
|
|
sink = gst_pad_new_from_template (sink_template, "sink");
|
|
|
|
fail_if (sink == NULL);
|
|
|
|
gst_pad_set_event_function (sink, sticky_event);
|
|
|
|
gst_pad_set_chain_function (sink, gst_check_chain_func);
|
|
|
|
|
|
|
|
gst_object_unref (src_template);
|
|
|
|
gst_object_unref (sink_template);
|
|
|
|
|
|
|
|
fail_unless (GST_PAD_LINK_SUCCESSFUL (gst_pad_link (src, sink)));
|
|
|
|
|
|
|
|
caps = gst_caps_from_string ("foo/bar, dummy=(int)1");
|
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
|
|
|
|
|
|
|
event = gst_event_new_caps (caps);
|
2011-11-21 16:46:45 +00:00
|
|
|
gst_pad_set_active (src, TRUE);
|
2011-11-24 08:31:02 +00:00
|
|
|
/* The caps event gets accepted by the source pad (and stored) */
|
2011-11-09 11:21:17 +00:00
|
|
|
fail_unless (gst_pad_push_event (src, event) == TRUE);
|
2011-11-24 08:31:02 +00:00
|
|
|
/* But wasn't forwarded since the sink pad is flushing (not activated) */
|
2011-11-09 11:21:17 +00:00
|
|
|
fail_unless (event_caps == NULL);
|
|
|
|
|
|
|
|
/* Activating will not forward the sticky event yet... */
|
|
|
|
gst_pad_set_active (sink, TRUE);
|
|
|
|
fail_unless (event_caps == NULL);
|
|
|
|
|
|
|
|
/* ...but the first buffer will: */
|
|
|
|
fail_unless (gst_pad_push (src, gst_buffer_new ()) == GST_FLOW_OK);
|
|
|
|
fail_unless (event_caps == caps);
|
|
|
|
fail_unless_equals_int (g_list_length (buffers), 1);
|
|
|
|
|
|
|
|
gst_caps_replace (&caps, NULL);
|
|
|
|
gst_caps_replace (&event_caps, NULL);
|
|
|
|
|
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sink, "sink", 1);
|
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (sink);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2005-09-09 14:34:43 +00:00
|
|
|
static gboolean
|
|
|
|
name_is_valid (const gchar * name, GstPadPresence presence)
|
|
|
|
{
|
|
|
|
GstPadTemplate *new;
|
2011-10-11 11:54:45 +00:00
|
|
|
GstCaps *any = gst_caps_new_any ();
|
2005-09-09 14:34:43 +00:00
|
|
|
|
2008-08-30 11:55:59 +00:00
|
|
|
new = gst_pad_template_new (name, GST_PAD_SRC, presence, any);
|
2011-10-11 11:54:45 +00:00
|
|
|
gst_caps_unref (any);
|
2005-09-09 14:34:43 +00:00
|
|
|
if (new) {
|
|
|
|
gst_object_unref (GST_OBJECT (new));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_START_TEST (test_name_is_valid)
|
|
|
|
{
|
|
|
|
gboolean result = FALSE;
|
|
|
|
|
|
|
|
fail_unless (name_is_valid ("src", GST_PAD_ALWAYS));
|
|
|
|
ASSERT_WARNING (name_is_valid ("src%", GST_PAD_ALWAYS));
|
|
|
|
ASSERT_WARNING (result = name_is_valid ("src%d", GST_PAD_ALWAYS));
|
|
|
|
fail_if (result);
|
|
|
|
|
|
|
|
fail_unless (name_is_valid ("src", GST_PAD_REQUEST));
|
|
|
|
ASSERT_WARNING (name_is_valid ("src%s%s", GST_PAD_REQUEST));
|
|
|
|
ASSERT_WARNING (name_is_valid ("src%c", GST_PAD_REQUEST));
|
|
|
|
ASSERT_WARNING (name_is_valid ("src%", GST_PAD_REQUEST));
|
|
|
|
ASSERT_WARNING (name_is_valid ("src%dsrc", GST_PAD_REQUEST));
|
|
|
|
|
|
|
|
fail_unless (name_is_valid ("src", GST_PAD_SOMETIMES));
|
|
|
|
fail_unless (name_is_valid ("src%c", GST_PAD_SOMETIMES));
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2011-11-01 00:13:35 +00:00
|
|
|
static GstPadProbeReturn
|
2011-11-08 10:04:19 +00:00
|
|
|
_probe_handler (GstPad * pad, GstPadProbeInfo * info, gpointer userdata)
|
2005-10-05 16:16:58 +00:00
|
|
|
{
|
|
|
|
gint ret = GPOINTER_TO_INT (userdata);
|
|
|
|
|
|
|
|
if (ret == 1)
|
2011-11-01 00:13:35 +00:00
|
|
|
return GST_PAD_PROBE_OK;
|
2011-05-31 17:16:09 +00:00
|
|
|
|
2011-11-01 00:13:35 +00:00
|
|
|
return GST_PAD_PROBE_DROP;
|
2005-10-05 16:16:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_START_TEST (test_push_unlinked)
|
|
|
|
{
|
|
|
|
GstPad *src;
|
|
|
|
GstCaps *caps;
|
|
|
|
GstBuffer *buffer;
|
|
|
|
gulong id;
|
|
|
|
|
|
|
|
src = gst_pad_new ("src", GST_PAD_SRC);
|
|
|
|
fail_if (src == NULL);
|
|
|
|
caps = gst_pad_get_allowed_caps (src);
|
|
|
|
fail_unless (caps == NULL);
|
|
|
|
|
|
|
|
caps = gst_caps_from_string ("foo/bar");
|
|
|
|
|
2011-05-31 17:16:09 +00:00
|
|
|
/* pushing on an inactive pad will return wrong state */
|
2011-11-25 06:11:24 +00:00
|
|
|
GST_DEBUG ("push buffer inactive");
|
2011-05-31 17:16:09 +00:00
|
|
|
buffer = gst_buffer_new ();
|
|
|
|
gst_buffer_ref (buffer);
|
|
|
|
fail_unless (gst_pad_push (src, buffer) == GST_FLOW_WRONG_STATE);
|
|
|
|
ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
|
|
|
|
gst_pad_set_active (src, TRUE);
|
2011-11-25 06:11:24 +00:00
|
|
|
GST_DEBUG ("push caps event inactive");
|
2011-11-21 16:46:45 +00:00
|
|
|
gst_pad_set_caps (src, caps);
|
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 2);
|
2011-05-31 17:16:09 +00:00
|
|
|
|
2005-10-05 16:16:58 +00:00
|
|
|
/* pushing on an unlinked pad will drop the buffer */
|
2011-11-25 06:11:24 +00:00
|
|
|
GST_DEBUG ("push buffer unlinked");
|
2005-10-05 16:16:58 +00:00
|
|
|
buffer = gst_buffer_new ();
|
|
|
|
gst_buffer_ref (buffer);
|
|
|
|
fail_unless (gst_pad_push (src, buffer) == GST_FLOW_NOT_LINKED);
|
|
|
|
ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
|
2011-11-07 16:04:13 +00:00
|
|
|
/* adding a probe that returns _DROP will drop the buffer without trying
|
2005-10-05 16:16:58 +00:00
|
|
|
* to chain */
|
2011-11-25 06:11:24 +00:00
|
|
|
GST_DEBUG ("push buffer drop");
|
2011-11-01 00:13:35 +00:00
|
|
|
id = gst_pad_add_probe (src, GST_PAD_PROBE_TYPE_BUFFER,
|
2011-11-08 12:02:04 +00:00
|
|
|
_probe_handler, GINT_TO_POINTER (0), NULL);
|
2005-10-05 16:16:58 +00:00
|
|
|
buffer = gst_buffer_new ();
|
|
|
|
gst_buffer_ref (buffer);
|
|
|
|
fail_unless (gst_pad_push (src, buffer) == GST_FLOW_OK);
|
|
|
|
ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
|
|
|
|
gst_buffer_unref (buffer);
|
2011-05-31 17:16:09 +00:00
|
|
|
gst_pad_remove_probe (src, id);
|
2005-10-05 16:16:58 +00:00
|
|
|
|
2011-11-07 16:04:13 +00:00
|
|
|
/* adding a probe that returns _OK will still chain the buffer,
|
2005-10-05 16:16:58 +00:00
|
|
|
* and hence drop because pad is unlinked */
|
2011-11-25 06:11:24 +00:00
|
|
|
GST_DEBUG ("push buffer ok");
|
2011-11-01 00:13:35 +00:00
|
|
|
id = gst_pad_add_probe (src, GST_PAD_PROBE_TYPE_BUFFER,
|
2011-11-08 12:02:04 +00:00
|
|
|
_probe_handler, GINT_TO_POINTER (1), NULL);
|
2005-10-05 16:16:58 +00:00
|
|
|
buffer = gst_buffer_new ();
|
|
|
|
gst_buffer_ref (buffer);
|
|
|
|
fail_unless (gst_pad_push (src, buffer) == GST_FLOW_NOT_LINKED);
|
|
|
|
ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
|
|
|
|
gst_buffer_unref (buffer);
|
2011-05-31 17:16:09 +00:00
|
|
|
gst_pad_remove_probe (src, id);
|
2005-10-05 16:16:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* cleanup */
|
2011-05-30 11:40:04 +00:00
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 2);
|
2005-10-05 16:16:58 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
|
|
|
|
|
|
|
gst_object_unref (src);
|
|
|
|
|
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
GST_START_TEST (test_push_linked)
|
|
|
|
{
|
|
|
|
GstPad *src, *sink;
|
|
|
|
GstPadLinkReturn plr;
|
|
|
|
GstCaps *caps;
|
|
|
|
GstBuffer *buffer;
|
2007-01-08 16:23:03 +00:00
|
|
|
gulong id;
|
2005-10-05 16:16:58 +00:00
|
|
|
|
|
|
|
/* setup */
|
|
|
|
sink = gst_pad_new ("sink", GST_PAD_SINK);
|
|
|
|
fail_if (sink == NULL);
|
|
|
|
gst_pad_set_chain_function (sink, gst_check_chain_func);
|
|
|
|
|
|
|
|
src = gst_pad_new ("src", GST_PAD_SRC);
|
|
|
|
fail_if (src == NULL);
|
|
|
|
|
|
|
|
caps = gst_caps_from_string ("foo/bar");
|
|
|
|
/* one for me */
|
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
|
|
|
|
2011-11-21 16:46:45 +00:00
|
|
|
gst_pad_set_active (src, TRUE);
|
2005-10-05 16:16:58 +00:00
|
|
|
gst_pad_set_caps (src, caps);
|
2006-10-09 16:33:29 +00:00
|
|
|
gst_pad_set_active (sink, TRUE);
|
2011-05-27 15:20:56 +00:00
|
|
|
gst_pad_set_caps (sink, caps);
|
|
|
|
/* one for me and one for each set_caps */
|
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
|
|
|
|
|
|
|
|
plr = gst_pad_link (src, sink);
|
|
|
|
fail_unless (GST_PAD_LINK_SUCCESSFUL (plr));
|
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
|
|
|
|
|
2011-05-30 11:40:04 +00:00
|
|
|
buffer = gst_buffer_new ();
|
|
|
|
|
2005-10-05 16:16:58 +00:00
|
|
|
/* test */
|
|
|
|
/* pushing on a linked pad will drop the ref to the buffer */
|
|
|
|
gst_buffer_ref (buffer);
|
|
|
|
fail_unless (gst_pad_push (src, buffer) == GST_FLOW_OK);
|
|
|
|
ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 2);
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
fail_unless_equals_int (g_list_length (buffers), 1);
|
|
|
|
buffer = GST_BUFFER (buffers->data);
|
|
|
|
ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
|
2005-10-05 17:01:44 +00:00
|
|
|
gst_buffer_unref (buffer);
|
2005-10-05 16:16:58 +00:00
|
|
|
g_list_free (buffers);
|
|
|
|
buffers = NULL;
|
|
|
|
|
|
|
|
/* adding a probe that returns FALSE will drop the buffer without trying
|
|
|
|
* to chain */
|
2011-11-01 00:13:35 +00:00
|
|
|
id = gst_pad_add_probe (src, GST_PAD_PROBE_TYPE_BUFFER,
|
2011-11-08 12:02:04 +00:00
|
|
|
_probe_handler, GINT_TO_POINTER (0), NULL);
|
2005-10-05 16:16:58 +00:00
|
|
|
buffer = gst_buffer_new ();
|
|
|
|
gst_buffer_ref (buffer);
|
|
|
|
fail_unless (gst_pad_push (src, buffer) == GST_FLOW_OK);
|
|
|
|
ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
|
|
|
|
gst_buffer_unref (buffer);
|
2011-05-31 17:16:09 +00:00
|
|
|
gst_pad_remove_probe (src, id);
|
2005-10-05 16:16:58 +00:00
|
|
|
fail_unless_equals_int (g_list_length (buffers), 0);
|
|
|
|
|
|
|
|
/* adding a probe that returns TRUE will still chain the buffer */
|
2011-11-01 00:13:35 +00:00
|
|
|
id = gst_pad_add_probe (src, GST_PAD_PROBE_TYPE_BUFFER,
|
2011-11-08 12:02:04 +00:00
|
|
|
_probe_handler, GINT_TO_POINTER (1), NULL);
|
2005-10-05 16:16:58 +00:00
|
|
|
buffer = gst_buffer_new ();
|
|
|
|
gst_buffer_ref (buffer);
|
|
|
|
fail_unless (gst_pad_push (src, buffer) == GST_FLOW_OK);
|
2011-05-31 17:16:09 +00:00
|
|
|
gst_pad_remove_probe (src, id);
|
2005-10-05 16:16:58 +00:00
|
|
|
|
|
|
|
ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 2);
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
fail_unless_equals_int (g_list_length (buffers), 1);
|
|
|
|
buffer = GST_BUFFER (buffers->data);
|
|
|
|
ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
|
2005-10-05 17:01:44 +00:00
|
|
|
gst_buffer_unref (buffer);
|
2005-10-05 16:16:58 +00:00
|
|
|
g_list_free (buffers);
|
|
|
|
buffers = NULL;
|
|
|
|
|
|
|
|
/* teardown */
|
|
|
|
gst_pad_unlink (src, sink);
|
2011-05-08 10:46:17 +00:00
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 2);
|
2005-10-05 16:16:58 +00:00
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (sink);
|
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
|
|
|
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2011-11-08 11:22:21 +00:00
|
|
|
GST_START_TEST (test_push_linked_flushing)
|
|
|
|
{
|
|
|
|
GstPad *src, *sink;
|
|
|
|
GstCaps *caps;
|
|
|
|
GstPadLinkReturn plr;
|
|
|
|
GstBuffer *buffer;
|
|
|
|
gulong id;
|
|
|
|
|
|
|
|
/* setup */
|
|
|
|
src = gst_pad_new ("src", GST_PAD_SRC);
|
|
|
|
fail_if (src == NULL);
|
|
|
|
sink = gst_pad_new ("sink", GST_PAD_SINK);
|
|
|
|
fail_if (sink == NULL);
|
|
|
|
gst_pad_set_chain_function (sink, gst_check_chain_func);
|
|
|
|
|
|
|
|
caps = gst_pad_get_allowed_caps (src);
|
|
|
|
fail_unless (caps == NULL);
|
|
|
|
caps = gst_pad_get_allowed_caps (sink);
|
|
|
|
fail_unless (caps == NULL);
|
|
|
|
|
|
|
|
caps = gst_caps_from_string ("foo/bar");
|
|
|
|
/* one for me */
|
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
|
|
|
|
2011-11-21 16:46:45 +00:00
|
|
|
gst_pad_set_active (src, TRUE);
|
2011-11-08 11:22:21 +00:00
|
|
|
gst_pad_set_caps (src, caps);
|
2011-11-08 12:30:18 +00:00
|
|
|
/* need to activate to make it accept the caps */
|
|
|
|
gst_pad_set_active (sink, TRUE);
|
2011-11-08 11:22:21 +00:00
|
|
|
gst_pad_set_caps (sink, caps);
|
|
|
|
/* one for me and one for each set_caps */
|
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
|
|
|
|
|
|
|
|
plr = gst_pad_link (src, sink);
|
|
|
|
fail_unless (GST_PAD_LINK_SUCCESSFUL (plr));
|
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
|
|
|
|
|
|
|
|
/* not activating the pads here, which keeps them flushing */
|
2011-11-21 16:46:45 +00:00
|
|
|
gst_pad_set_active (src, FALSE);
|
|
|
|
gst_pad_set_active (sink, FALSE);
|
2011-11-08 11:22:21 +00:00
|
|
|
|
|
|
|
/* pushing on a flushing pad will drop the buffer */
|
|
|
|
buffer = gst_buffer_new ();
|
|
|
|
gst_buffer_ref (buffer);
|
|
|
|
fail_unless (gst_pad_push (src, buffer) == GST_FLOW_WRONG_STATE);
|
|
|
|
ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
|
|
|
|
fail_unless_equals_int (g_list_length (buffers), 0);
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
|
2011-11-08 12:30:18 +00:00
|
|
|
gst_pad_set_active (src, TRUE);
|
|
|
|
gst_pad_set_active (sink, FALSE);
|
|
|
|
|
2011-11-08 11:22:21 +00:00
|
|
|
/* adding a probe that returns FALSE will drop the buffer without trying
|
|
|
|
* to chain */
|
2011-11-08 12:02:04 +00:00
|
|
|
id = gst_pad_add_probe (src, GST_PAD_PROBE_TYPE_BUFFER, _probe_handler,
|
|
|
|
GINT_TO_POINTER (0), NULL);
|
2011-11-08 11:22:21 +00:00
|
|
|
buffer = gst_buffer_new ();
|
|
|
|
gst_buffer_ref (buffer);
|
|
|
|
fail_unless (gst_pad_push (src, buffer) == GST_FLOW_OK);
|
|
|
|
ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
|
|
|
|
fail_unless_equals_int (g_list_length (buffers), 0);
|
|
|
|
gst_buffer_unref (buffer);
|
2011-11-08 12:02:04 +00:00
|
|
|
gst_pad_remove_probe (src, id);
|
2011-11-08 11:22:21 +00:00
|
|
|
|
|
|
|
/* adding a probe that returns TRUE will still chain the buffer,
|
|
|
|
* and hence drop because pad is flushing */
|
2011-11-08 12:02:04 +00:00
|
|
|
id = gst_pad_add_probe (src, GST_PAD_PROBE_TYPE_BUFFER, _probe_handler,
|
|
|
|
GINT_TO_POINTER (1), NULL);
|
2011-11-08 11:22:21 +00:00
|
|
|
buffer = gst_buffer_new ();
|
|
|
|
gst_buffer_ref (buffer);
|
|
|
|
fail_unless (gst_pad_push (src, buffer) == GST_FLOW_WRONG_STATE);
|
|
|
|
ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
|
|
|
|
fail_unless_equals_int (g_list_length (buffers), 0);
|
|
|
|
gst_buffer_unref (buffer);
|
2011-11-08 12:02:04 +00:00
|
|
|
gst_pad_remove_probe (src, id);
|
2011-11-08 11:22:21 +00:00
|
|
|
|
|
|
|
/* cleanup */
|
2011-11-21 16:46:45 +00:00
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
2011-11-08 11:22:21 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
|
|
|
gst_pad_link (src, sink);
|
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (sink);
|
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2009-05-12 11:10:55 +00:00
|
|
|
static GstBuffer *
|
2010-03-03 10:45:38 +00:00
|
|
|
buffer_from_string (const gchar * str)
|
2009-05-12 11:10:55 +00:00
|
|
|
{
|
|
|
|
guint size;
|
|
|
|
GstBuffer *buf;
|
2011-03-21 18:15:27 +00:00
|
|
|
gpointer data;
|
2009-05-12 11:10:55 +00:00
|
|
|
|
|
|
|
size = strlen (str);
|
|
|
|
buf = gst_buffer_new_and_alloc (size);
|
2011-03-21 18:15:27 +00:00
|
|
|
|
|
|
|
data = gst_buffer_map (buf, NULL, NULL, GST_MAP_WRITE);
|
|
|
|
memcpy (data, str, size);
|
|
|
|
gst_buffer_unmap (buf, data, size);
|
2009-05-12 11:10:55 +00:00
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2011-03-21 18:15:27 +00:00
|
|
|
static gboolean
|
|
|
|
buffer_compare (GstBuffer * buf, const gchar * str, gsize size)
|
|
|
|
{
|
|
|
|
gboolean res;
|
|
|
|
gpointer data;
|
|
|
|
|
2011-03-24 12:01:00 +00:00
|
|
|
data = gst_buffer_map (buf, NULL, NULL, GST_MAP_READ);
|
2011-03-21 18:15:27 +00:00
|
|
|
res = memcmp (data, str, size) == 0;
|
2011-03-24 20:18:52 +00:00
|
|
|
GST_DEBUG ("%s <-> %s: %d", (gchar *) data, str, res);
|
2011-03-21 18:15:27 +00:00
|
|
|
gst_buffer_unmap (buf, data, size);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2009-05-12 11:10:55 +00:00
|
|
|
GST_START_TEST (test_push_buffer_list_compat)
|
|
|
|
{
|
|
|
|
GstPad *src, *sink;
|
|
|
|
GstPadLinkReturn plr;
|
|
|
|
GstCaps *caps;
|
|
|
|
GstBufferList *list;
|
|
|
|
GstBuffer *buffer;
|
|
|
|
|
|
|
|
/* setup */
|
|
|
|
sink = gst_pad_new ("sink", GST_PAD_SINK);
|
|
|
|
fail_if (sink == NULL);
|
|
|
|
gst_pad_set_chain_function (sink, gst_check_chain_func);
|
|
|
|
/* leave chainlistfunc unset */
|
|
|
|
|
|
|
|
src = gst_pad_new ("src", GST_PAD_SRC);
|
|
|
|
fail_if (src == NULL);
|
|
|
|
|
|
|
|
caps = gst_caps_from_string ("foo/bar");
|
|
|
|
|
2011-11-21 16:46:45 +00:00
|
|
|
gst_pad_set_active (src, TRUE);
|
2009-05-12 11:10:55 +00:00
|
|
|
gst_pad_set_caps (src, caps);
|
2011-05-08 10:46:17 +00:00
|
|
|
gst_pad_set_active (sink, TRUE);
|
2009-05-12 11:10:55 +00:00
|
|
|
gst_pad_set_caps (sink, caps);
|
|
|
|
|
|
|
|
plr = gst_pad_link (src, sink);
|
|
|
|
fail_unless (GST_PAD_LINK_SUCCESSFUL (plr));
|
|
|
|
|
|
|
|
list = gst_buffer_list_new ();
|
|
|
|
|
|
|
|
/* test */
|
|
|
|
/* adding to a buffer list will drop the ref to the buffer */
|
2011-03-31 15:51:02 +00:00
|
|
|
gst_buffer_list_add (list, buffer_from_string ("ListGroup"));
|
|
|
|
gst_buffer_list_add (list, buffer_from_string ("AnotherListGroup"));
|
|
|
|
|
2009-05-12 11:10:55 +00:00
|
|
|
fail_unless (gst_pad_push_list (src, list) == GST_FLOW_OK);
|
|
|
|
fail_unless_equals_int (g_list_length (buffers), 2);
|
|
|
|
buffer = GST_BUFFER (buffers->data);
|
|
|
|
ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
|
2011-03-24 20:18:52 +00:00
|
|
|
fail_unless (buffer_compare (buffer, "ListGroup", 9));
|
2009-05-12 11:10:55 +00:00
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
buffers = g_list_delete_link (buffers, buffers);
|
|
|
|
buffer = GST_BUFFER (buffers->data);
|
|
|
|
ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
|
2011-03-24 20:18:52 +00:00
|
|
|
fail_unless (buffer_compare (buffer, "AnotherListGroup", 16));
|
2009-05-12 11:10:55 +00:00
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
buffers = g_list_delete_link (buffers, buffers);
|
|
|
|
fail_unless (buffers == NULL);
|
|
|
|
|
|
|
|
/* teardown */
|
|
|
|
gst_pad_unlink (src, sink);
|
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (sink);
|
|
|
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2006-05-23 11:13:51 +00:00
|
|
|
GST_START_TEST (test_flowreturn)
|
|
|
|
{
|
|
|
|
GstFlowReturn ret;
|
|
|
|
GQuark quark;
|
|
|
|
|
|
|
|
/* test some of the macros */
|
2011-10-10 09:33:51 +00:00
|
|
|
ret = GST_FLOW_EOS;
|
|
|
|
fail_if (strcmp (gst_flow_get_name (ret), "eos"));
|
2006-05-23 11:13:51 +00:00
|
|
|
quark = gst_flow_to_quark (ret);
|
2011-10-10 09:33:51 +00:00
|
|
|
fail_if (strcmp (g_quark_to_string (quark), "eos"));
|
2006-05-23 11:13:51 +00:00
|
|
|
|
|
|
|
ret = GST_FLOW_RESEND;
|
|
|
|
fail_if (strcmp (gst_flow_get_name (ret), "resend"));
|
|
|
|
quark = gst_flow_to_quark (ret);
|
|
|
|
fail_if (strcmp (g_quark_to_string (quark), "resend"));
|
|
|
|
|
|
|
|
/* custom returns */
|
|
|
|
ret = GST_FLOW_CUSTOM_SUCCESS;
|
|
|
|
fail_if (strcmp (gst_flow_get_name (ret), "custom-success"));
|
|
|
|
quark = gst_flow_to_quark (ret);
|
|
|
|
fail_if (strcmp (g_quark_to_string (quark), "custom-success"));
|
|
|
|
|
|
|
|
ret = GST_FLOW_CUSTOM_ERROR;
|
|
|
|
fail_if (strcmp (gst_flow_get_name (ret), "custom-error"));
|
|
|
|
quark = gst_flow_to_quark (ret);
|
|
|
|
fail_if (strcmp (g_quark_to_string (quark), "custom-error"));
|
|
|
|
|
|
|
|
/* custom returns clamping */
|
|
|
|
ret = GST_FLOW_CUSTOM_SUCCESS + 2;
|
|
|
|
fail_if (strcmp (gst_flow_get_name (ret), "custom-success"));
|
|
|
|
quark = gst_flow_to_quark (ret);
|
|
|
|
fail_if (strcmp (g_quark_to_string (quark), "custom-success"));
|
|
|
|
|
|
|
|
ret = GST_FLOW_CUSTOM_ERROR - 2;
|
|
|
|
fail_if (strcmp (gst_flow_get_name (ret), "custom-error"));
|
|
|
|
quark = gst_flow_to_quark (ret);
|
|
|
|
fail_if (strcmp (g_quark_to_string (quark), "custom-error"));
|
|
|
|
|
|
|
|
/* unknown values */
|
|
|
|
ret = GST_FLOW_CUSTOM_ERROR + 2;
|
|
|
|
fail_if (strcmp (gst_flow_get_name (ret), "unknown"));
|
|
|
|
quark = gst_flow_to_quark (ret);
|
|
|
|
fail_unless (quark == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
2005-09-09 14:34:43 +00:00
|
|
|
|
2007-05-21 12:05:56 +00:00
|
|
|
GST_START_TEST (test_push_negotiation)
|
|
|
|
{
|
|
|
|
GstPad *src, *sink;
|
|
|
|
GstPadLinkReturn plr;
|
2008-08-30 11:55:59 +00:00
|
|
|
GstCaps *srccaps =
|
|
|
|
gst_caps_from_string ("audio/x-raw-int,width={16,32},depth={16,32}");
|
|
|
|
GstCaps *sinkcaps =
|
|
|
|
gst_caps_from_string ("audio/x-raw-int,width=32,depth={16,32}");
|
|
|
|
GstPadTemplate *src_template;
|
|
|
|
GstPadTemplate *sink_template;
|
2007-05-21 12:05:56 +00:00
|
|
|
GstCaps *caps;
|
|
|
|
|
|
|
|
/* setup */
|
2008-08-30 11:55:59 +00:00
|
|
|
src_template = gst_pad_template_new ("src", GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS, srccaps);
|
|
|
|
sink_template = gst_pad_template_new ("sink", GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS, sinkcaps);
|
2011-05-17 11:13:11 +00:00
|
|
|
gst_caps_unref (srccaps);
|
|
|
|
gst_caps_unref (sinkcaps);
|
2008-08-30 11:55:59 +00:00
|
|
|
|
2007-05-21 12:05:56 +00:00
|
|
|
sink = gst_pad_new_from_template (sink_template, "sink");
|
|
|
|
fail_if (sink == NULL);
|
|
|
|
gst_pad_set_chain_function (sink, gst_check_chain_func);
|
|
|
|
|
|
|
|
src = gst_pad_new_from_template (src_template, "src");
|
|
|
|
fail_if (src == NULL);
|
|
|
|
|
|
|
|
plr = gst_pad_link (src, sink);
|
|
|
|
fail_unless (GST_PAD_LINK_SUCCESSFUL (plr));
|
|
|
|
|
|
|
|
/* activate pads */
|
|
|
|
gst_pad_set_active (src, TRUE);
|
|
|
|
gst_pad_set_active (sink, TRUE);
|
|
|
|
|
|
|
|
caps = gst_caps_from_string ("audio/x-raw-int,width=16,depth=16");
|
|
|
|
|
|
|
|
/* Should fail if src pad caps are incompatible with sink pad caps */
|
|
|
|
gst_pad_set_caps (src, caps);
|
2011-05-08 10:46:17 +00:00
|
|
|
fail_unless (gst_pad_set_caps (sink, caps) == FALSE);
|
2007-05-21 12:05:56 +00:00
|
|
|
|
|
|
|
/* teardown */
|
|
|
|
gst_pad_unlink (src, sink);
|
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (sink);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
gst_object_unref (sink_template);
|
|
|
|
gst_object_unref (src_template);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2007-12-21 13:54:07 +00:00
|
|
|
/* see that an unref also unlinks the pads */
|
|
|
|
GST_START_TEST (test_src_unref_unlink)
|
|
|
|
{
|
|
|
|
GstPad *src, *sink;
|
|
|
|
GstCaps *caps;
|
|
|
|
GstPadLinkReturn plr;
|
|
|
|
|
|
|
|
sink = gst_pad_new ("sink", GST_PAD_SINK);
|
|
|
|
fail_if (sink == NULL);
|
|
|
|
|
|
|
|
src = gst_pad_new ("src", GST_PAD_SRC);
|
|
|
|
fail_if (src == NULL);
|
|
|
|
|
|
|
|
caps = gst_caps_from_string ("foo/bar");
|
|
|
|
|
2011-11-21 16:46:45 +00:00
|
|
|
gst_pad_set_active (src, TRUE);
|
2007-12-21 13:54:07 +00:00
|
|
|
gst_pad_set_caps (src, caps);
|
2011-05-08 10:46:17 +00:00
|
|
|
gst_pad_set_active (sink, TRUE);
|
2007-12-21 13:54:07 +00:00
|
|
|
gst_pad_set_caps (sink, caps);
|
|
|
|
|
|
|
|
plr = gst_pad_link (src, sink);
|
|
|
|
fail_unless (GST_PAD_LINK_SUCCESSFUL (plr));
|
|
|
|
|
|
|
|
/* unref the srcpad */
|
|
|
|
gst_object_unref (src);
|
|
|
|
|
|
|
|
/* sink should be unlinked now */
|
|
|
|
fail_if (gst_pad_is_linked (sink));
|
|
|
|
|
|
|
|
/* cleanup */
|
|
|
|
gst_object_unref (sink);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
/* see that an unref also unlinks the pads */
|
|
|
|
GST_START_TEST (test_sink_unref_unlink)
|
|
|
|
{
|
|
|
|
GstPad *src, *sink;
|
|
|
|
GstCaps *caps;
|
|
|
|
GstPadLinkReturn plr;
|
|
|
|
|
|
|
|
sink = gst_pad_new ("sink", GST_PAD_SINK);
|
|
|
|
fail_if (sink == NULL);
|
|
|
|
|
|
|
|
src = gst_pad_new ("src", GST_PAD_SRC);
|
|
|
|
fail_if (src == NULL);
|
|
|
|
|
|
|
|
caps = gst_caps_from_string ("foo/bar");
|
|
|
|
|
2011-11-21 16:46:45 +00:00
|
|
|
gst_pad_set_active (src, TRUE);
|
2007-12-21 13:54:07 +00:00
|
|
|
gst_pad_set_caps (src, caps);
|
2011-05-08 10:46:17 +00:00
|
|
|
gst_pad_set_active (sink, TRUE);
|
2007-12-21 13:54:07 +00:00
|
|
|
gst_pad_set_caps (sink, caps);
|
|
|
|
|
|
|
|
plr = gst_pad_link (src, sink);
|
|
|
|
fail_unless (GST_PAD_LINK_SUCCESSFUL (plr));
|
|
|
|
|
|
|
|
/* unref the sinkpad */
|
|
|
|
gst_object_unref (sink);
|
|
|
|
|
|
|
|
/* src should be unlinked now */
|
|
|
|
fail_if (gst_pad_is_linked (src));
|
|
|
|
|
|
|
|
/* cleanup */
|
|
|
|
gst_object_unref (src);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
2007-05-21 12:05:56 +00:00
|
|
|
|
2011-05-31 17:16:09 +00:00
|
|
|
static gulong id;
|
|
|
|
|
2011-11-01 00:13:35 +00:00
|
|
|
static GstPadProbeReturn
|
2011-11-08 10:04:19 +00:00
|
|
|
block_async_cb (GstPad * pad, GstPadProbeInfo * info, gpointer user_data)
|
2009-02-22 19:01:05 +00:00
|
|
|
{
|
|
|
|
gboolean *bool_user_data = (gboolean *) user_data;
|
|
|
|
|
2011-11-08 10:04:19 +00:00
|
|
|
fail_unless ((info->type & GST_PAD_PROBE_TYPE_BLOCK) != 0);
|
2009-02-22 19:01:05 +00:00
|
|
|
|
|
|
|
/* here we should have blocked == 0 unblocked == 0 */
|
|
|
|
fail_unless (bool_user_data[0] == FALSE);
|
|
|
|
fail_unless (bool_user_data[1] == FALSE);
|
|
|
|
|
2011-05-30 16:29:06 +00:00
|
|
|
bool_user_data[0] = TRUE;
|
2009-02-22 19:01:05 +00:00
|
|
|
|
2011-05-31 17:16:09 +00:00
|
|
|
gst_pad_remove_probe (pad, id);
|
2011-05-30 16:29:06 +00:00
|
|
|
bool_user_data[1] = TRUE;
|
2011-05-31 17:16:09 +00:00
|
|
|
|
2011-11-01 00:13:35 +00:00
|
|
|
return GST_PAD_PROBE_OK;
|
2009-02-22 19:01:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_START_TEST (test_block_async)
|
|
|
|
{
|
|
|
|
GstPad *pad;
|
|
|
|
/* we set data[0] = TRUE when the pad is blocked, data[1] = TRUE when it's
|
|
|
|
* unblocked */
|
|
|
|
gboolean data[2] = { FALSE, FALSE };
|
|
|
|
|
|
|
|
pad = gst_pad_new ("src", GST_PAD_SRC);
|
|
|
|
fail_unless (pad != NULL);
|
|
|
|
|
|
|
|
gst_pad_set_active (pad, TRUE);
|
2011-11-01 00:13:35 +00:00
|
|
|
id = gst_pad_add_probe (pad, GST_PAD_PROBE_TYPE_BLOCK, block_async_cb, &data,
|
2011-05-31 17:16:09 +00:00
|
|
|
NULL);
|
2009-02-22 19:01:05 +00:00
|
|
|
|
2011-05-30 11:40:04 +00:00
|
|
|
fail_unless (data[0] == FALSE);
|
|
|
|
fail_unless (data[1] == FALSE);
|
2009-02-22 19:01:05 +00:00
|
|
|
gst_pad_push (pad, gst_buffer_new ());
|
|
|
|
|
|
|
|
gst_object_unref (pad);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2011-11-24 16:47:09 +00:00
|
|
|
static GstPadProbeReturn
|
|
|
|
block_async_cb_return_ok (GstPad * pad, GstPadProbeInfo * info,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
return GST_PAD_PROBE_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gpointer
|
|
|
|
push_buffer_async (GstPad * pad)
|
|
|
|
{
|
|
|
|
return GINT_TO_POINTER (gst_pad_push (pad, gst_buffer_new ()));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_pad_blocking_with_type (GstPadProbeType type)
|
|
|
|
{
|
|
|
|
GstPad *pad;
|
|
|
|
GThread *thread;
|
|
|
|
GstFlowReturn ret;
|
|
|
|
|
|
|
|
pad = gst_pad_new ("src", GST_PAD_SRC);
|
|
|
|
fail_unless (pad != NULL);
|
|
|
|
|
|
|
|
gst_pad_set_active (pad, TRUE);
|
|
|
|
id = gst_pad_add_probe (pad, type, block_async_cb_return_ok, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
|
|
thread = g_thread_create ((GThreadFunc) push_buffer_async, pad, TRUE, NULL);
|
|
|
|
|
2011-11-25 06:11:24 +00:00
|
|
|
/* wait for the block */
|
|
|
|
while (!gst_pad_is_blocking (pad)) {
|
|
|
|
g_usleep (100000);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* stop with flushing */
|
2011-11-24 16:47:09 +00:00
|
|
|
gst_pad_push_event (pad, gst_event_new_flush_start ());
|
|
|
|
|
2011-11-25 06:11:24 +00:00
|
|
|
/* get return value from push */
|
2011-11-24 16:47:09 +00:00
|
|
|
ret = GPOINTER_TO_INT (g_thread_join (thread));
|
2011-11-25 06:11:24 +00:00
|
|
|
/* unflush now */
|
|
|
|
gst_pad_push_event (pad, gst_event_new_flush_stop (FALSE));
|
|
|
|
/* must be wrong state */
|
|
|
|
fail_unless (ret == GST_FLOW_WRONG_STATE);
|
2011-11-24 16:47:09 +00:00
|
|
|
|
|
|
|
gst_object_unref (pad);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_START_TEST (test_pad_blocking_with_probe_type_block)
|
|
|
|
{
|
|
|
|
test_pad_blocking_with_type (GST_PAD_PROBE_TYPE_BLOCK);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
GST_START_TEST (test_pad_blocking_with_probe_type_blocking)
|
|
|
|
{
|
|
|
|
test_pad_blocking_with_type (GST_PAD_PROBE_TYPE_BLOCKING);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2009-02-22 19:01:05 +00:00
|
|
|
#if 0
|
|
|
|
static void
|
|
|
|
block_async_second (GstPad * pad, gboolean blocked, gpointer user_data)
|
|
|
|
{
|
2011-05-26 14:15:52 +00:00
|
|
|
gst_pad_set_blocked (pad, FALSE, unblock_async_cb, NULL, NULL);
|
2009-02-22 19:01:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
block_async_first (GstPad * pad, gboolean blocked, gpointer user_data)
|
|
|
|
{
|
|
|
|
static int n_calls = 0;
|
|
|
|
gboolean *bool_user_data = (gboolean *) user_data;
|
|
|
|
|
|
|
|
if (++n_calls > 1)
|
|
|
|
/* we expect this callback to be called only once */
|
|
|
|
g_warn_if_reached ();
|
|
|
|
|
|
|
|
*bool_user_data = blocked;
|
|
|
|
|
|
|
|
/* replace block_async_first with block_async_second so next time the pad is
|
|
|
|
* blocked the latter should be called */
|
2011-05-26 14:15:52 +00:00
|
|
|
gst_pad_set_blocked (pad, TRUE, block_async_second, NULL, NULL);
|
2009-02-22 19:01:05 +00:00
|
|
|
|
|
|
|
/* unblock temporarily, in the next push block_async_second should be called
|
|
|
|
*/
|
|
|
|
gst_pad_push_event (pad, gst_event_new_flush_start ());
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_START_TEST (test_block_async_replace_callback)
|
|
|
|
{
|
|
|
|
GstPad *pad;
|
|
|
|
gboolean blocked;
|
|
|
|
|
|
|
|
pad = gst_pad_new ("src", GST_PAD_SRC);
|
|
|
|
fail_unless (pad != NULL);
|
|
|
|
gst_pad_set_active (pad, TRUE);
|
|
|
|
|
2011-05-26 14:15:52 +00:00
|
|
|
gst_pad_set_blocked (pad, TRUE, block_async_first, &blocked, NULL);
|
2009-02-22 19:01:05 +00:00
|
|
|
blocked = FALSE;
|
|
|
|
|
|
|
|
gst_pad_push (pad, gst_buffer_new ());
|
|
|
|
fail_unless (blocked == TRUE);
|
|
|
|
/* block_async_first flushes to unblock */
|
|
|
|
gst_pad_push_event (pad, gst_event_new_flush_stop ());
|
|
|
|
|
|
|
|
/* push again, this time block_async_second should be called */
|
|
|
|
gst_pad_push (pad, gst_buffer_new ());
|
|
|
|
fail_unless (blocked == TRUE);
|
|
|
|
|
|
|
|
gst_object_unref (pad);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void
|
|
|
|
block_async_full_destroy (gpointer user_data)
|
|
|
|
{
|
|
|
|
gint *state = (gint *) user_data;
|
|
|
|
|
|
|
|
fail_unless (*state < 2);
|
|
|
|
|
2009-12-23 20:20:14 +00:00
|
|
|
GST_DEBUG ("setting state to 2");
|
2009-02-22 19:01:05 +00:00
|
|
|
*state = 2;
|
|
|
|
}
|
|
|
|
|
2011-11-01 00:13:35 +00:00
|
|
|
static GstPadProbeReturn
|
2011-11-08 10:04:19 +00:00
|
|
|
block_async_full_cb (GstPad * pad, GstPadProbeInfo * info, gpointer user_data)
|
2009-02-22 19:01:05 +00:00
|
|
|
{
|
2011-05-30 16:29:06 +00:00
|
|
|
*(gint *) user_data = (gint) TRUE;
|
2009-02-22 19:01:05 +00:00
|
|
|
|
|
|
|
gst_pad_push_event (pad, gst_event_new_flush_start ());
|
2009-12-23 20:20:14 +00:00
|
|
|
GST_DEBUG ("setting state to 1");
|
2011-05-31 17:16:09 +00:00
|
|
|
|
2011-11-01 00:13:35 +00:00
|
|
|
return GST_PAD_PROBE_OK;
|
2009-02-22 19:01:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_START_TEST (test_block_async_full_destroy)
|
|
|
|
{
|
|
|
|
GstPad *pad;
|
|
|
|
/* 0 = unblocked, 1 = blocked, 2 = destroyed */
|
|
|
|
gint state = 0;
|
2011-05-31 17:16:09 +00:00
|
|
|
gulong id;
|
2009-02-22 19:01:05 +00:00
|
|
|
|
|
|
|
pad = gst_pad_new ("src", GST_PAD_SRC);
|
|
|
|
fail_unless (pad != NULL);
|
|
|
|
gst_pad_set_active (pad, TRUE);
|
|
|
|
|
2011-11-01 00:13:35 +00:00
|
|
|
id = gst_pad_add_probe (pad, GST_PAD_PROBE_TYPE_BLOCK, block_async_full_cb,
|
2009-02-22 19:01:05 +00:00
|
|
|
&state, block_async_full_destroy);
|
2011-05-30 11:40:04 +00:00
|
|
|
fail_unless (state == 0);
|
2009-02-22 19:01:05 +00:00
|
|
|
|
|
|
|
gst_pad_push (pad, gst_buffer_new ());
|
|
|
|
/* block_async_full_cb sets state to 1 and then flushes to unblock temporarily
|
|
|
|
*/
|
2011-05-30 11:40:04 +00:00
|
|
|
fail_unless (state == 1);
|
2011-06-10 09:55:08 +00:00
|
|
|
gst_pad_push_event (pad, gst_event_new_flush_stop (TRUE));
|
2009-02-22 19:01:05 +00:00
|
|
|
|
2011-05-30 16:29:06 +00:00
|
|
|
/* unblock callback is called */
|
2011-05-31 17:16:09 +00:00
|
|
|
gst_pad_remove_probe (pad, id);
|
2009-02-22 19:01:05 +00:00
|
|
|
fail_unless (state == 2);
|
|
|
|
|
|
|
|
gst_object_unref (pad);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
GST_START_TEST (test_block_async_full_destroy_dispose)
|
|
|
|
{
|
|
|
|
GstPad *pad;
|
|
|
|
/* 0 = unblocked, 1 = blocked, 2 = destroyed */
|
|
|
|
gint state = 0;
|
|
|
|
|
|
|
|
pad = gst_pad_new ("src", GST_PAD_SRC);
|
|
|
|
fail_unless (pad != NULL);
|
|
|
|
gst_pad_set_active (pad, TRUE);
|
|
|
|
|
2011-11-01 00:13:35 +00:00
|
|
|
(void) gst_pad_add_probe (pad, GST_PAD_PROBE_TYPE_BLOCK, block_async_full_cb,
|
2009-02-22 19:01:05 +00:00
|
|
|
&state, block_async_full_destroy);
|
|
|
|
|
|
|
|
gst_pad_push (pad, gst_buffer_new ());
|
|
|
|
/* block_async_full_cb sets state to 1 and then flushes to unblock temporarily
|
|
|
|
*/
|
2011-05-30 11:40:04 +00:00
|
|
|
fail_unless_equals_int (state, 1);
|
2011-06-10 09:55:08 +00:00
|
|
|
gst_pad_push_event (pad, gst_event_new_flush_stop (TRUE));
|
2009-02-22 19:01:05 +00:00
|
|
|
|
2011-05-31 17:16:09 +00:00
|
|
|
/* gst_BLOCK calls the destroy_notify function if necessary */
|
2009-02-22 19:01:05 +00:00
|
|
|
gst_object_unref (pad);
|
|
|
|
|
|
|
|
fail_unless_equals_int (state, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2009-03-09 10:39:34 +00:00
|
|
|
|
2011-05-30 16:29:06 +00:00
|
|
|
#if 0
|
2009-03-09 10:39:34 +00:00
|
|
|
static void
|
|
|
|
unblock_async_no_flush_cb (GstPad * pad, gboolean blocked, gpointer user_data)
|
|
|
|
{
|
|
|
|
gboolean *bool_user_data = (gboolean *) user_data;
|
|
|
|
|
|
|
|
/* here we should have blocked == 1 unblocked == 0 */
|
|
|
|
|
|
|
|
fail_unless (blocked == FALSE);
|
|
|
|
|
|
|
|
fail_unless (bool_user_data[0] == TRUE);
|
|
|
|
fail_unless (bool_user_data[1] == TRUE);
|
|
|
|
fail_unless (bool_user_data[2] == FALSE);
|
|
|
|
|
|
|
|
bool_user_data[2] = TRUE;
|
|
|
|
}
|
2011-05-30 16:29:06 +00:00
|
|
|
#endif
|
2009-03-09 10:39:34 +00:00
|
|
|
|
|
|
|
|
2011-05-30 16:29:06 +00:00
|
|
|
#if 0
|
2011-05-30 11:40:04 +00:00
|
|
|
static void
|
|
|
|
unblock_async_not_called (GstPad * pad, gboolean blocked, gpointer user_data)
|
|
|
|
{
|
|
|
|
g_warn_if_reached ();
|
|
|
|
}
|
2011-05-30 16:29:06 +00:00
|
|
|
#endif
|
2011-05-30 11:40:04 +00:00
|
|
|
|
2011-11-01 00:13:35 +00:00
|
|
|
static GstPadProbeReturn
|
2011-11-08 10:04:19 +00:00
|
|
|
block_async_second_no_flush (GstPad * pad, GstPadProbeInfo * info,
|
|
|
|
gpointer user_data)
|
2009-03-09 10:39:34 +00:00
|
|
|
{
|
|
|
|
gboolean *bool_user_data = (gboolean *) user_data;
|
|
|
|
|
2011-06-01 17:27:55 +00:00
|
|
|
GST_DEBUG ("second probe called");
|
|
|
|
|
2011-11-08 10:04:19 +00:00
|
|
|
fail_unless (info->type & GST_PAD_PROBE_TYPE_BLOCK);
|
2009-03-09 10:39:34 +00:00
|
|
|
|
|
|
|
fail_unless (bool_user_data[0] == TRUE);
|
|
|
|
fail_unless (bool_user_data[1] == FALSE);
|
|
|
|
fail_unless (bool_user_data[2] == FALSE);
|
|
|
|
|
|
|
|
bool_user_data[1] = TRUE;
|
|
|
|
|
2011-06-01 17:27:55 +00:00
|
|
|
GST_DEBUG ("removing second probe with id %lu", id);
|
2011-05-31 17:16:09 +00:00
|
|
|
gst_pad_remove_probe (pad, id);
|
|
|
|
|
2011-11-01 00:13:35 +00:00
|
|
|
return GST_PAD_PROBE_OK;
|
2009-03-09 10:39:34 +00:00
|
|
|
}
|
|
|
|
|
2011-11-01 00:13:35 +00:00
|
|
|
static GstPadProbeReturn
|
2011-11-08 10:04:19 +00:00
|
|
|
block_async_first_no_flush (GstPad * pad, GstPadProbeInfo * info,
|
|
|
|
gpointer user_data)
|
2009-03-09 10:39:34 +00:00
|
|
|
{
|
|
|
|
static int n_calls = 0;
|
|
|
|
gboolean *bool_user_data = (gboolean *) user_data;
|
|
|
|
|
2011-11-08 10:04:19 +00:00
|
|
|
fail_unless (info->type & GST_PAD_PROBE_TYPE_BLOCK);
|
2009-03-09 10:39:34 +00:00
|
|
|
|
2011-06-01 17:27:55 +00:00
|
|
|
GST_DEBUG ("first probe called");
|
|
|
|
|
2009-03-09 10:39:34 +00:00
|
|
|
if (++n_calls > 1)
|
|
|
|
/* we expect this callback to be called only once */
|
|
|
|
g_warn_if_reached ();
|
|
|
|
|
2011-05-30 16:29:06 +00:00
|
|
|
*bool_user_data = TRUE;
|
2009-03-09 10:39:34 +00:00
|
|
|
|
|
|
|
fail_unless (bool_user_data[0] == TRUE);
|
|
|
|
fail_unless (bool_user_data[1] == FALSE);
|
|
|
|
fail_unless (bool_user_data[2] == FALSE);
|
|
|
|
|
2011-06-01 17:27:55 +00:00
|
|
|
GST_DEBUG ("removing first probe with id %lu", id);
|
2011-05-31 17:16:09 +00:00
|
|
|
gst_pad_remove_probe (pad, id);
|
2009-03-09 10:39:34 +00:00
|
|
|
|
2011-06-01 17:27:55 +00:00
|
|
|
GST_DEBUG ("adding second probe");
|
2009-03-09 10:39:34 +00:00
|
|
|
/* replace block_async_first with block_async_second so next time the pad is
|
|
|
|
* blocked the latter should be called */
|
2011-11-01 00:13:35 +00:00
|
|
|
id = gst_pad_add_probe (pad, GST_PAD_PROBE_TYPE_BLOCK,
|
2011-05-31 17:16:09 +00:00
|
|
|
block_async_second_no_flush, user_data, NULL);
|
2011-06-01 17:27:55 +00:00
|
|
|
GST_DEBUG ("added probe with id %lu", id);
|
2011-05-31 17:16:09 +00:00
|
|
|
|
2011-11-01 00:13:35 +00:00
|
|
|
return GST_PAD_PROBE_OK;
|
2009-03-09 10:39:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_START_TEST (test_block_async_replace_callback_no_flush)
|
|
|
|
{
|
|
|
|
GstPad *pad;
|
|
|
|
gboolean bool_user_data[3] = { FALSE, FALSE, FALSE };
|
|
|
|
|
|
|
|
pad = gst_pad_new ("src", GST_PAD_SRC);
|
|
|
|
fail_unless (pad != NULL);
|
|
|
|
gst_pad_set_active (pad, TRUE);
|
|
|
|
|
2011-06-01 17:27:55 +00:00
|
|
|
GST_DEBUG ("adding probe");
|
2011-11-01 00:13:35 +00:00
|
|
|
id = gst_pad_add_probe (pad, GST_PAD_PROBE_TYPE_BLOCK,
|
2011-05-31 17:16:09 +00:00
|
|
|
block_async_first_no_flush, bool_user_data, NULL);
|
2011-06-01 17:27:55 +00:00
|
|
|
GST_DEBUG ("added probe with id %lu", id);
|
2011-05-31 17:16:09 +00:00
|
|
|
fail_if (id == 0);
|
2009-03-09 10:39:34 +00:00
|
|
|
|
2011-06-01 17:27:55 +00:00
|
|
|
GST_DEBUG ("pushing buffer");
|
2009-03-09 10:39:34 +00:00
|
|
|
gst_pad_push (pad, gst_buffer_new ());
|
|
|
|
fail_unless (bool_user_data[0] == TRUE);
|
|
|
|
fail_unless (bool_user_data[1] == TRUE);
|
2011-05-30 16:29:06 +00:00
|
|
|
fail_unless (bool_user_data[2] == FALSE);
|
2009-03-09 10:39:34 +00:00
|
|
|
|
|
|
|
gst_object_unref (pad);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
|
2008-02-29 13:59:24 +00:00
|
|
|
static Suite *
|
2005-06-23 09:59:33 +00:00
|
|
|
gst_pad_suite (void)
|
check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
{
|
|
|
|
Suite *s = suite_create ("GstPad");
|
|
|
|
TCase *tc_chain = tcase_create ("general");
|
|
|
|
|
2005-04-27 14:19:46 +00:00
|
|
|
/* turn off timeout */
|
|
|
|
tcase_set_timeout (tc_chain, 60);
|
|
|
|
|
check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
suite_add_tcase (s, tc_chain);
|
|
|
|
tcase_add_test (tc_chain, test_link);
|
2005-06-19 00:52:31 +00:00
|
|
|
tcase_add_test (tc_chain, test_refcount);
|
|
|
|
tcase_add_test (tc_chain, test_get_allowed_caps);
|
2011-11-09 11:21:17 +00:00
|
|
|
tcase_add_test (tc_chain, test_sticky_caps_unlinked);
|
2011-11-24 08:31:14 +00:00
|
|
|
tcase_add_test (tc_chain, test_sticky_caps_unlinked_incompatible);
|
2011-11-09 11:21:17 +00:00
|
|
|
tcase_add_test (tc_chain, test_sticky_caps_flushing);
|
check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
tcase_add_test (tc_chain, test_link_unlink_threaded);
|
2005-09-09 14:34:43 +00:00
|
|
|
tcase_add_test (tc_chain, test_name_is_valid);
|
2005-10-05 16:16:58 +00:00
|
|
|
tcase_add_test (tc_chain, test_push_unlinked);
|
|
|
|
tcase_add_test (tc_chain, test_push_linked);
|
2011-11-08 11:22:21 +00:00
|
|
|
tcase_add_test (tc_chain, test_push_linked_flushing);
|
2009-05-12 11:10:55 +00:00
|
|
|
tcase_add_test (tc_chain, test_push_buffer_list_compat);
|
2006-05-23 11:13:51 +00:00
|
|
|
tcase_add_test (tc_chain, test_flowreturn);
|
2007-05-21 12:05:56 +00:00
|
|
|
tcase_add_test (tc_chain, test_push_negotiation);
|
2007-12-21 13:54:07 +00:00
|
|
|
tcase_add_test (tc_chain, test_src_unref_unlink);
|
|
|
|
tcase_add_test (tc_chain, test_sink_unref_unlink);
|
2009-02-22 19:01:05 +00:00
|
|
|
tcase_add_test (tc_chain, test_block_async);
|
2011-11-24 16:47:09 +00:00
|
|
|
tcase_add_test (tc_chain, test_pad_blocking_with_probe_type_block);
|
|
|
|
tcase_add_test (tc_chain, test_pad_blocking_with_probe_type_blocking);
|
2009-02-22 19:01:05 +00:00
|
|
|
#if 0
|
|
|
|
tcase_add_test (tc_chain, test_block_async_replace_callback);
|
|
|
|
#endif
|
|
|
|
tcase_add_test (tc_chain, test_block_async_full_destroy);
|
|
|
|
tcase_add_test (tc_chain, test_block_async_full_destroy_dispose);
|
2009-03-09 10:39:34 +00:00
|
|
|
tcase_add_test (tc_chain, test_block_async_replace_callback_no_flush);
|
2006-05-23 11:13:51 +00:00
|
|
|
|
check/: Added checks.
Original commit message from CVS:
* check/.cvsignore:
* check/Makefile.am:
* check/gst-libs/.cvsignore:
* check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
* check/gst/.cvsignore:
* check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
(START_TEST), (gstbus_suite), (main):
* check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
* check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
(gst_data_suite), (main):
* check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
(add_fold_func), (gstiterator_suite), (main):
* check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
(thread_name_object), (thread_name_object_default),
(gst_object_name_compare), (gst_object_suite), (main):
* check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
(gst_pad_suite), (main):
* check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_init):
* check/gstcheck.h:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
Added checks.
2005-03-07 18:33:37 +00:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2006-07-01 20:56:56 +00:00
|
|
|
GST_CHECK_MAIN (gst_pad);
|