From 42861617d526ce3114a7f782fe11a02cf35d3322 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=ADctor=20Manuel=20J=C3=A1quez=20Leal?= Date: Fri, 16 Sep 2022 13:55:11 +0200 Subject: [PATCH] vah264enc: Remove unused dispose method. --- subprojects/gst-plugins-bad/sys/va/gstvah264enc.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/subprojects/gst-plugins-bad/sys/va/gstvah264enc.c b/subprojects/gst-plugins-bad/sys/va/gstvah264enc.c index 60c3fd1..2ab6dcd 100644 --- a/subprojects/gst-plugins-bad/sys/va/gstvah264enc.c +++ b/subprojects/gst-plugins-bad/sys/va/gstvah264enc.c @@ -3225,12 +3225,6 @@ gst_va_h264_enc_get_property (GObject * object, guint prop_id, } static void -gst_va_h264_enc_dispose (GObject * object) -{ - G_OBJECT_CLASS (parent_class)->dispose (object); -} - -static void gst_va_h264_enc_class_init (gpointer g_klass, gpointer class_data) { GstCaps *src_doc_caps, *sink_doc_caps; @@ -3286,7 +3280,6 @@ gst_va_h264_enc_class_init (gpointer g_klass, gpointer class_data) gst_pad_template_set_documentation_caps (src_pad_templ, src_doc_caps); gst_caps_unref (src_doc_caps); - object_class->dispose = gst_va_h264_enc_dispose; object_class->set_property = gst_va_h264_enc_set_property; object_class->get_property = gst_va_h264_enc_get_property; -- 2.7.4