capsfilter: don't assume _get_caps still has to be
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>
Wed, 20 Jul 2011 12:05:27 +0000 (14:05 +0200)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Fri, 26 Aug 2011 08:23:18 +0000 (10:23 +0200)
_set_caps only gets called when the buffer is actually pushed, so there
is a reasonably big window between when the initial caps are retrieved
and when the caps are set on our src pad. So we can't assume the not
having negotiated caps on our src pad means _get_caps still has to be
called.

Instead simply always suggest the new caps on buffer_alloc.

plugins/elements/gstcapsfilter.c

index a144611..2dde28d 100644 (file)
@@ -204,9 +204,10 @@ gst_capsfilter_set_property (GObject * object, guint prop_id,
         }
       } else {
         GST_DEBUG_OBJECT (capsfilter, "no negotiated caps");
-        /* no previous caps, the getcaps function will be used to find suitable
-         * caps */
-        suggest = NULL;
+        /* Suggest the new caps, we can't just rely on _get_caps as this may
+         * already be called at this point even though no buffer has been
+         * pushed yet */
+        suggest = gst_caps_copy (new_caps);
       }
       GST_OBJECT_UNLOCK (GST_BASE_TRANSFORM_SINK_PAD (object));