mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
update for basetransform change
This commit is contained in:
parent
0ab5677107
commit
44828add73
4 changed files with 4 additions and 4 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue