gst/base/gstbasetransform.c (gst_base_transform_setcaps): Default to returning TRUE for the case when tranform_caps r...

Original commit message from CVS:
2005-07-05  Andy Wingo  <wingo@pobox.com>

* gst/base/gstbasetransform.c (gst_base_transform_setcaps):
Default to returning TRUE for the case when tranform_caps returns
a fixed caps, like for identity or volume.
This commit is contained in:
Andy Wingo 2005-07-05 09:35:22 +00:00
parent 83a7075f8a
commit fd980b9f72
3 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,9 @@
2005-07-05 Andy Wingo <wingo@pobox.com>
* gst/base/gstbasetransform.c (gst_base_transform_setcaps):
Default to returning TRUE for the case when tranform_caps returns
a fixed caps, like for identity or volume.
* check/gst/gstbus.c (pound_bus_with_messages):
* check/gst/gstmessage.c (START_TEST):
* check/pipelines/simple_launch_lines.c (got_handoff): Application

View file

@ -236,7 +236,7 @@ gst_base_transform_setcaps (GstPad * pad, GstCaps * caps)
GstBaseTransformClass *klass;
GstPad *otherpad, *otherpeer;
GstCaps *othercaps = NULL;
gboolean ret = FALSE;
gboolean ret = TRUE;
trans = GST_BASE_TRANSFORM (GST_PAD_PARENT (pad));
klass = GST_BASE_TRANSFORM_GET_CLASS (trans);

View file

@ -236,7 +236,7 @@ gst_base_transform_setcaps (GstPad * pad, GstCaps * caps)
GstBaseTransformClass *klass;
GstPad *otherpad, *otherpeer;
GstCaps *othercaps = NULL;
gboolean ret = FALSE;
gboolean ret = TRUE;
trans = GST_BASE_TRANSFORM (GST_PAD_PARENT (pad));
klass = GST_BASE_TRANSFORM_GET_CLASS (trans);