Lines Matching refs:smooth
67 GST_ELEMENT_REGISTER_DEFINE (smooth, "smooth", GST_RANK_NONE, GST_TYPE_SMOOTH);
110 GstSmooth *smooth; in gst_smooth_set_info() local
112 smooth = GST_SMOOTH (filter); in gst_smooth_set_info()
114 smooth->width = GST_VIDEO_INFO_WIDTH (in_info); in gst_smooth_set_info()
115 smooth->height = GST_VIDEO_INFO_HEIGHT (in_info); in gst_smooth_set_info()
121 gst_smooth_init (GstSmooth * smooth) in gst_smooth_init() argument
123 smooth->active = TRUE; in gst_smooth_init()
124 smooth->tolerance = 8; in gst_smooth_init()
125 smooth->filtersize = 3; in gst_smooth_init()
126 smooth->luma_only = TRUE; in gst_smooth_init()
182 GstSmooth *smooth; in gst_smooth_transform_frame() local
184 smooth = GST_SMOOTH (vfilter); in gst_smooth_transform_frame()
186 if (!smooth->active) { in gst_smooth_transform_frame()
197 smooth->tolerance, smooth->filtersize); in gst_smooth_transform_frame()
198 if (!smooth->luma_only) { in gst_smooth_transform_frame()
205 smooth->tolerance, smooth->filtersize); in gst_smooth_transform_frame()
212 smooth->tolerance, smooth->filtersize); in gst_smooth_transform_frame()
225 GstSmooth *smooth; in gst_smooth_set_property() local
228 smooth = GST_SMOOTH (object); in gst_smooth_set_property()
232 smooth->active = g_value_get_boolean (value); in gst_smooth_set_property()
235 smooth->tolerance = g_value_get_int (value); in gst_smooth_set_property()
238 smooth->filtersize = g_value_get_int (value); in gst_smooth_set_property()
241 smooth->luma_only = g_value_get_boolean (value); in gst_smooth_set_property()
253 GstSmooth *smooth; in gst_smooth_get_property() local
256 smooth = GST_SMOOTH (object); in gst_smooth_get_property()
260 g_value_set_boolean (value, smooth->active); in gst_smooth_get_property()
263 g_value_set_int (value, smooth->tolerance); in gst_smooth_get_property()
266 g_value_set_int (value, smooth->filtersize); in gst_smooth_get_property()
269 g_value_set_boolean (value, smooth->luma_only); in gst_smooth_get_property()
281 return GST_ELEMENT_REGISTER (smooth, plugin); in plugin_init()
286 smooth,