gst/gstpad.c: check for if we were unlinked while inside the chainfunction (fixes...
authorBenjamin Otte <otte@gnome.org>
Sun, 20 Jun 2004 19:42:58 +0000 (19:42 +0000)
committerBenjamin Otte <otte@gnome.org>
Sun, 20 Jun 2004 19:42:58 +0000 (19:42 +0000)
Original commit message from CVS:
* gst/gstpad.c: (gst_pad_call_chain_function):
check for if we were unlinked while inside the chainfunction (fixes
entrygthread having issues with #143777)
* testsuite/schedulers/143777.c: (main):
* testsuite/schedulers/Makefile.am:
add a test for that fix

ChangeLog
gst/gstpad.c
tests/old/testsuite/schedulers/143777.c [new file with mode: 0644]
tests/old/testsuite/schedulers/Makefile.am
testsuite/schedulers/143777.c [new file with mode: 0644]
testsuite/schedulers/Makefile.am

index 5c37347..25d2f6c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
 2004-06-20  Benjamin Otte  <otte@gnome.org>
 
+       * gst/gstpad.c: (gst_pad_call_chain_function):
+         check for if we were unlinked while inside the chainfunction (fixes
+         entrygthread having issues with #143777)
+       * testsuite/schedulers/143777.c: (main):
+       * testsuite/schedulers/Makefile.am:
+         add a test for that fix
+
+2004-06-20  Benjamin Otte  <otte@gnome.org>
+
        * gst/gstvalue.c: (gst_value_set_int_range):
          test that start is smaller then end
        * libs/gst/bytestream/Makefile.am:
index 580b13f..bc2a8e4 100644 (file)
@@ -4323,6 +4323,9 @@ gst_pad_call_chain_function (GstPad * pad, GstData * data)
       link->temp_store = data;
       link->engaged = TRUE;
       CALL_CHAINFUNC (pad, _invent_event (pad, GST_BUFFER (data)));
+      link = GST_RPAD_LINK (pad);
+      if (link->temp_store == NULL)     /* happens after relinking in chainfunc */
+        return;
       g_assert (link->temp_store == data);
       link->temp_store = NULL;
     } else if (GST_IS_EVENT (data) &&
diff --git a/tests/old/testsuite/schedulers/143777.c b/tests/old/testsuite/schedulers/143777.c
new file mode 100644 (file)
index 0000000..9c33d6b
--- /dev/null
@@ -0,0 +1,72 @@
+/* GStreamer
+ * Copyright (C) 2004 Benjamin Otte <otte@gnome.org>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU 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
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this library; if not, write to the Free
+ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+/*
+ * This file reproduces the bug in the bugreport #143777, as can be seen at
+ * http://bugzilla.gnome.org/show_bug.cgi?id=143777 - the issue is that when
+ * pausing a pipeline while the chainhandler is still running, then unlinking
+ * the pad that's chain function is called and relinking it clears the buffer
+ * that was stored for sending the event. gst_pad_call_chain_function needs
+ * to check that.
+ * The fix is in gstpad.c, revision 1.327
+ */
+
+#include <gst/gst.h>
+
+gint
+main (gint argc, gchar ** argv)
+{
+  GstElement *pipeline, *src, *sink, *id;
+  guint i = 0, j;
+
+  gst_init (&argc, &argv);
+
+  g_print ("setting up...\n");
+  /* setup pipeline */
+  pipeline = gst_element_factory_make ("pipeline", NULL);
+  g_assert (pipeline);
+  src = gst_element_factory_make ("fakesrc", NULL);
+  g_assert (src);
+  id = gst_element_factory_make ("identity", NULL);
+  g_assert (id);
+  sink = gst_element_factory_make ("fakesink", NULL);
+  g_assert (sink);
+
+  gst_bin_add_many (GST_BIN (pipeline), src, id, sink, NULL);
+  while (i < 100) {
+    g_print ("running... (%d iterations)\n", i);
+    if (gst_element_set_state (pipeline,
+            GST_STATE_PLAYING) != GST_STATE_SUCCESS)
+      g_assert_not_reached ();
+    gst_element_link_many (src, id, sink, NULL);
+    for (j = 0; j < i; j++)
+      gst_bin_iterate (GST_BIN (pipeline));
+    if (gst_element_set_state (pipeline, GST_STATE_PAUSED) != GST_STATE_SUCCESS)
+      g_assert_not_reached ();
+    gst_element_unlink_many (src, id, sink, NULL);
+    i++;
+  }
+
+  g_print ("cleaning up...\n");
+  g_assert (i == 100);
+  gst_object_unref (GST_OBJECT (pipeline));
+  src = id = sink = pipeline = NULL;
+
+  g_print ("done.\n");
+  return 0;
+}
index 10596f5..0844711 100644 (file)
@@ -3,7 +3,8 @@ include ../Rules
 tests_pass = \
        unlink_src unlink_sink \
        relink_src relink_sink \
-       unref_src unref_sink
+       unref_src unref_sink \
+       143777
 
 # don't enable this one unless it actually works.
 #      useless_iteration
diff --git a/testsuite/schedulers/143777.c b/testsuite/schedulers/143777.c
new file mode 100644 (file)
index 0000000..9c33d6b
--- /dev/null
@@ -0,0 +1,72 @@
+/* GStreamer
+ * Copyright (C) 2004 Benjamin Otte <otte@gnome.org>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU 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
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this library; if not, write to the Free
+ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+/*
+ * This file reproduces the bug in the bugreport #143777, as can be seen at
+ * http://bugzilla.gnome.org/show_bug.cgi?id=143777 - the issue is that when
+ * pausing a pipeline while the chainhandler is still running, then unlinking
+ * the pad that's chain function is called and relinking it clears the buffer
+ * that was stored for sending the event. gst_pad_call_chain_function needs
+ * to check that.
+ * The fix is in gstpad.c, revision 1.327
+ */
+
+#include <gst/gst.h>
+
+gint
+main (gint argc, gchar ** argv)
+{
+  GstElement *pipeline, *src, *sink, *id;
+  guint i = 0, j;
+
+  gst_init (&argc, &argv);
+
+  g_print ("setting up...\n");
+  /* setup pipeline */
+  pipeline = gst_element_factory_make ("pipeline", NULL);
+  g_assert (pipeline);
+  src = gst_element_factory_make ("fakesrc", NULL);
+  g_assert (src);
+  id = gst_element_factory_make ("identity", NULL);
+  g_assert (id);
+  sink = gst_element_factory_make ("fakesink", NULL);
+  g_assert (sink);
+
+  gst_bin_add_many (GST_BIN (pipeline), src, id, sink, NULL);
+  while (i < 100) {
+    g_print ("running... (%d iterations)\n", i);
+    if (gst_element_set_state (pipeline,
+            GST_STATE_PLAYING) != GST_STATE_SUCCESS)
+      g_assert_not_reached ();
+    gst_element_link_many (src, id, sink, NULL);
+    for (j = 0; j < i; j++)
+      gst_bin_iterate (GST_BIN (pipeline));
+    if (gst_element_set_state (pipeline, GST_STATE_PAUSED) != GST_STATE_SUCCESS)
+      g_assert_not_reached ();
+    gst_element_unlink_many (src, id, sink, NULL);
+    i++;
+  }
+
+  g_print ("cleaning up...\n");
+  g_assert (i == 100);
+  gst_object_unref (GST_OBJECT (pipeline));
+  src = id = sink = pipeline = NULL;
+
+  g_print ("done.\n");
+  return 0;
+}
index 10596f5..0844711 100644 (file)
@@ -3,7 +3,8 @@ include ../Rules
 tests_pass = \
        unlink_src unlink_sink \
        relink_src relink_sink \
-       unref_src unref_sink
+       unref_src unref_sink \
+       143777
 
 # don't enable this one unless it actually works.
 #      useless_iteration