vah264enc: Remove unused dispose method.

This commit is contained in:
Víctor Manuel Jáquez Leal 2022-09-16 13:55:11 +02:00
parent f720a5dd66
commit 42861617d5

View file

@ -3224,12 +3224,6 @@ gst_va_h264_enc_get_property (GObject * object, guint prop_id,
GST_OBJECT_UNLOCK (self);
}
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)
{
@ -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;