update for basetransform change

This commit is contained in:
Wim Taymans 2012-02-24 11:03:48 +01:00
parent 0ab5677107
commit 44828add73
4 changed files with 4 additions and 4 deletions

View file

@ -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);
}

View file

@ -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:

View file

@ -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);
}

View file

@ -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);
}