Lines Matching refs:video_crop
519 GstVideoCrop *video_crop = GST_VIDEO_CROP (trans); in gst_video_crop_before_transform() local
526 GST_DEBUG_OBJECT (video_crop, "sync to %" GST_TIME_FORMAT, in gst_video_crop_before_transform()
530 gst_object_sync_values (GST_OBJECT (video_crop), stream_time); in gst_video_crop_before_transform()
928 GstVideoCrop *video_crop; in gst_video_crop_set_property() local
930 video_crop = GST_VIDEO_CROP (object); in gst_video_crop_set_property()
932 GST_OBJECT_LOCK (video_crop); in gst_video_crop_set_property()
935 gst_video_crop_set_crop (video_crop, g_value_get_int (value), in gst_video_crop_set_property()
936 &video_crop->prop_left); in gst_video_crop_set_property()
939 gst_video_crop_set_crop (video_crop, g_value_get_int (value), in gst_video_crop_set_property()
940 &video_crop->prop_right); in gst_video_crop_set_property()
943 gst_video_crop_set_crop (video_crop, g_value_get_int (value), in gst_video_crop_set_property()
944 &video_crop->prop_top); in gst_video_crop_set_property()
947 gst_video_crop_set_crop (video_crop, g_value_get_int (value), in gst_video_crop_set_property()
948 &video_crop->prop_bottom); in gst_video_crop_set_property()
954 GST_LOG_OBJECT (video_crop, "l=%d,r=%d,b=%d,t=%d, need_update:%d", in gst_video_crop_set_property()
955 video_crop->prop_left, video_crop->prop_right, video_crop->prop_bottom, in gst_video_crop_set_property()
956 video_crop->prop_top, video_crop->need_update); in gst_video_crop_set_property()
958 GST_OBJECT_UNLOCK (video_crop); in gst_video_crop_set_property()
960 gst_base_transform_reconfigure_src (GST_BASE_TRANSFORM (video_crop)); in gst_video_crop_set_property()
967 GstVideoCrop *video_crop; in gst_video_crop_get_property() local
969 video_crop = GST_VIDEO_CROP (object); in gst_video_crop_get_property()
971 GST_OBJECT_LOCK (video_crop); in gst_video_crop_get_property()
974 g_value_set_int (value, video_crop->prop_left); in gst_video_crop_get_property()
977 g_value_set_int (value, video_crop->prop_right); in gst_video_crop_get_property()
980 g_value_set_int (value, video_crop->prop_top); in gst_video_crop_get_property()
983 g_value_set_int (value, video_crop->prop_bottom); in gst_video_crop_get_property()
989 GST_OBJECT_UNLOCK (video_crop); in gst_video_crop_get_property()