check/gst/gstpad.c: Only set explicit caps on pads.
authorAndy Wingo <wingo@pobox.com>
Mon, 4 Jul 2005 09:22:51 +0000 (09:22 +0000)
committerAndy Wingo <wingo@pobox.com>
Mon, 4 Jul 2005 09:22:51 +0000 (09:22 +0000)
Original commit message from CVS:
2005-07-04  Andy Wingo  <wingo@pobox.com>

* check/gst/gstpad.c: Only set explicit caps on pads.

ChangeLog
check/gst/gstpad.c
tests/check/gst/gstpad.c

index c32c150..58bdd51 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-07-04  Andy Wingo  <wingo@pobox.com>
+
+       * check/gst/gstpad.c: Only set explicit caps on pads.
+
 2005-07-01  Andy Wingo  <wingo@pobox.com>
 
        * tests/network-clock.scm: Commentary update.
index abdd4a6..cfbce79 100644 (file)
@@ -75,7 +75,7 @@ START_TEST (test_link_unlink_threaded)
   sink = gst_pad_new ("sink", GST_PAD_SINK);
   fail_if (sink == NULL);
 
-  caps = gst_caps_new_any ();
+  caps = gst_caps_from_string ("foo/bar");
   gst_pad_set_caps (src, caps);
   gst_pad_set_caps (sink, caps);
 
@@ -101,7 +101,7 @@ START_TEST (test_refcount)
   src = gst_pad_new ("src", GST_PAD_SRC);
   fail_if (src == NULL);
 
-  caps = gst_caps_new_any ();
+  caps = gst_caps_from_string ("foo/bar");
   /* one for me */
   ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
 
@@ -147,7 +147,7 @@ START_TEST (test_get_allowed_caps)
   caps = gst_pad_get_allowed_caps (src);
   fail_unless (caps == NULL);
 
-  caps = gst_caps_new_any ();
+  caps = gst_caps_from_string ("foo/bar");
 
   gst_pad_set_caps (src, caps);
   gst_pad_set_caps (sink, caps);
index abdd4a6..cfbce79 100644 (file)
@@ -75,7 +75,7 @@ START_TEST (test_link_unlink_threaded)
   sink = gst_pad_new ("sink", GST_PAD_SINK);
   fail_if (sink == NULL);
 
-  caps = gst_caps_new_any ();
+  caps = gst_caps_from_string ("foo/bar");
   gst_pad_set_caps (src, caps);
   gst_pad_set_caps (sink, caps);
 
@@ -101,7 +101,7 @@ START_TEST (test_refcount)
   src = gst_pad_new ("src", GST_PAD_SRC);
   fail_if (src == NULL);
 
-  caps = gst_caps_new_any ();
+  caps = gst_caps_from_string ("foo/bar");
   /* one for me */
   ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
 
@@ -147,7 +147,7 @@ START_TEST (test_get_allowed_caps)
   caps = gst_pad_get_allowed_caps (src);
   fail_unless (caps == NULL);
 
-  caps = gst_caps_new_any ();
+  caps = gst_caps_from_string ("foo/bar");
 
   gst_pad_set_caps (src, caps);
   gst_pad_set_caps (sink, caps);