mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
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:
parent
83a7075f8a
commit
fd980b9f72
3 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue