gaudi: don't run gaussian function if sigma is 0

This commit is contained in:
Luis de Bethencourt 2015-04-23 11:47:37 +01:00
parent 86a503a29b
commit e5d62b073b

View file

@ -249,7 +249,8 @@ gst_gaussianblur_transform_frame (GstVideoFilter * vfilter,
src = GST_VIDEO_FRAME_COMP_DATA (in_frame, 0);
dest = GST_VIDEO_FRAME_COMP_DATA (out_frame, 0);
gst_video_frame_copy (out_frame, in_frame);
gaussian_smooth (filter, src, dest);
if (filter->sigma != 0.0)
gaussian_smooth (filter, src, dest);
return GST_FLOW_OK;
}