diff options
author | Stefan Sauer <ensonic@users.sf.net> | 2011-11-18 08:29:31 +0100 |
---|---|---|
committer | Stefan Sauer <ensonic@users.sf.net> | 2011-11-18 08:30:37 +0100 |
commit | ee910575264182491b7a87ae02673ca6699ef0f5 (patch) | |
tree | 76f896e77f1c8de36ae1ff61552efc2b4db7283d /ext/opencv/gstcvsobel.c | |
parent | 97279f1dfddc685cded37f5e7775fa631e75397b (diff) |
opencv: remove empty finalize implementations
Diffstat (limited to 'ext/opencv/gstcvsobel.c')
-rw-r--r-- | ext/opencv/gstcvsobel.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ext/opencv/gstcvsobel.c b/ext/opencv/gstcvsobel.c index 0e1b33b66..8aaeedd45 100644 --- a/ext/opencv/gstcvsobel.c +++ b/ext/opencv/gstcvsobel.c @@ -103,13 +103,6 @@ static GstCaps *gst_cv_sobel_transform_caps (GstBaseTransform * trans, static GstFlowReturn gst_cv_sobel_transform (GstOpencvVideoFilter * filter, GstBuffer * buf, IplImage * img, GstBuffer * outbuf, IplImage * outimg); -/* Clean up */ -static void -gst_cv_sobel_finalize (GObject * obj) -{ - G_OBJECT_CLASS (parent_class)->finalize (obj); -} - /* GObject vmethod implementations */ static void @@ -143,7 +136,6 @@ gst_cv_sobel_class_init (GstCvSobelClass * klass) parent_class = g_type_class_peek_parent (klass); - gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_cv_sobel_finalize); gobject_class->set_property = gst_cv_sobel_set_property; gobject_class->get_property = gst_cv_sobel_get_property; |