diff --git a/gst/alpha/gstalpha.c b/gst/alpha/gstalpha.c index 4b53a80ce5..a0c3fab31c 100644 --- a/gst/alpha/gstalpha.c +++ b/gst/alpha/gstalpha.c @@ -393,7 +393,7 @@ gst_alpha_set_property (GObject * object, guint prop_id, } if (reconfigure) - gst_base_transform_reconfigure (GST_BASE_TRANSFORM_CAST (alpha)); + gst_base_transform_reconfigure_src (GST_BASE_TRANSFORM_CAST (alpha)); GST_ALPHA_UNLOCK (alpha); } diff --git a/gst/debugutils/gstcapssetter.c b/gst/debugutils/gstcapssetter.c index 977a502b40..ee065ff03b 100644 --- a/gst/debugutils/gstcapssetter.c +++ b/gst/debugutils/gstcapssetter.c @@ -294,7 +294,7 @@ gst_caps_setter_set_property (GObject * object, guint prop_id, } /* try to activate these new caps next time around */ - gst_base_transform_reconfigure (GST_BASE_TRANSFORM (filter)); + gst_base_transform_reconfigure_src (GST_BASE_TRANSFORM (filter)); break; } case PROP_JOIN: diff --git a/gst/videocrop/gstvideocrop.c b/gst/videocrop/gstvideocrop.c index 8654f90e16..34cec28fa6 100644 --- a/gst/videocrop/gstvideocrop.c +++ b/gst/videocrop/gstvideocrop.c @@ -711,7 +711,7 @@ gst_video_crop_set_property (GObject * object, guint prop_id, video_crop->crop_top); GST_OBJECT_UNLOCK (video_crop); - gst_base_transform_reconfigure (GST_BASE_TRANSFORM (video_crop)); + gst_base_transform_reconfigure_src (GST_BASE_TRANSFORM (video_crop)); g_mutex_unlock (&video_crop->lock); } diff --git a/gst/videofilter/gstvideoflip.c b/gst/videofilter/gstvideoflip.c index 9075a36e5c..35624b1c39 100644 --- a/gst/videofilter/gstvideoflip.c +++ b/gst/videofilter/gstvideoflip.c @@ -965,7 +965,7 @@ gst_video_flip_set_property (GObject * object, guint prop_id, gst_base_transform_set_passthrough (btrans, method == GST_VIDEO_FLIP_METHOD_IDENTITY); - gst_base_transform_reconfigure (btrans); + gst_base_transform_reconfigure_src (btrans); } else { GST_OBJECT_UNLOCK (videoflip); }