Revert "pad: Add test for blocking pull probe"
authorSebastian Dröge <sebastian@centricular.com>
Thu, 18 Feb 2016 09:43:04 +0000 (11:43 +0200)
committerSebastian Dröge <sebastian@centricular.com>
Thu, 18 Feb 2016 09:43:04 +0000 (11:43 +0200)
This reverts commit 17d30e944be0425ebb4fb6046f82d1f61701fe8f.

The PULL probe changes break various tests.

tests/check/gst/gstpad.c

index 5f708c50762e4e32e66ffe6c49f0614d3fe7c66f..bb52088e611ddbca10a7333e5b797d33984e9a20 100644 (file)
@@ -1459,76 +1459,6 @@ GST_START_TEST (test_pad_blocking_with_probe_type_idle)
 
 GST_END_TEST;
 
-static GstFlowReturn
-test_probe_pull_getrange (GstPad * pad, GstObject * parent, guint64 offset,
-    guint length, GstBuffer ** buf)
-{
-  *buf = gst_buffer_new ();
-  return GST_FLOW_OK;
-}
-
-static gboolean
-test_probe_pull_activate_pull (GstPad * pad, GstObject * object)
-{
-  return gst_pad_activate_mode (pad, GST_PAD_MODE_PULL, TRUE);
-}
-
-static gpointer
-pull_range_async (GstPad * pad)
-{
-  GstBuffer *buf = NULL;
-  GstFlowReturn res = gst_pad_pull_range (pad, 0, 100, &buf);
-  if (buf)
-    gst_buffer_unref (buf);
-  return GINT_TO_POINTER (res);
-}
-
-GST_START_TEST (test_pad_probe_pull)
-{
-  GstPad *srcpad, *sinkpad;
-  GThread *thread;
-  GstFlowReturn ret;
-
-  srcpad = gst_pad_new ("src", GST_PAD_SRC);
-  fail_unless (srcpad != NULL);
-  sinkpad = gst_pad_new ("sink", GST_PAD_SINK);
-  fail_unless (sinkpad != NULL);
-
-  gst_pad_set_getrange_function (srcpad, test_probe_pull_getrange);
-  gst_pad_set_activate_function (sinkpad, test_probe_pull_activate_pull);
-  gst_pad_link (srcpad, sinkpad);
-
-  gst_pad_set_active (sinkpad, TRUE);
-  gst_pad_set_active (srcpad, TRUE);
-
-  id = gst_pad_add_probe (sinkpad,
-      GST_PAD_PROBE_TYPE_BLOCK | GST_PAD_PROBE_TYPE_PULL,
-      block_async_cb_return_ok, NULL, NULL);
-
-  thread = g_thread_try_new ("gst-check", (GThreadFunc) pull_range_async,
-      sinkpad, NULL);
-
-  /* wait for the block */
-  while (!gst_pad_is_blocking (sinkpad)) {
-    g_usleep (10000);
-  }
-
-  /* stop with flushing */
-  gst_pad_push_event (srcpad, gst_event_new_flush_start ());
-
-  /* get return value from push */
-  ret = GPOINTER_TO_INT (g_thread_join (thread));
-  /* unflush now */
-  gst_pad_push_event (srcpad, gst_event_new_flush_stop (FALSE));
-  /* must be wrong state */
-  fail_unless (ret == GST_FLOW_FLUSHING);
-
-  gst_object_unref (srcpad);
-  gst_object_unref (sinkpad);
-}
-
-GST_END_TEST;
-
 static gboolean pad_probe_remove_notifiy_called = FALSE;
 
 static GstPadProbeReturn
@@ -2788,7 +2718,6 @@ gst_pad_suite (void)
   tcase_add_test (tc_chain, test_pad_blocking_with_probe_type_block);
   tcase_add_test (tc_chain, test_pad_blocking_with_probe_type_blocking);
   tcase_add_test (tc_chain, test_pad_blocking_with_probe_type_idle);
-  tcase_add_test (tc_chain, test_pad_probe_pull);
   tcase_add_test (tc_chain, test_pad_probe_remove);
   tcase_add_test (tc_chain, test_pad_probe_block_add_remove);
   tcase_add_test (tc_chain, test_pad_probe_block_and_drop_buffer);