codec2json: fix missing GObject vtable chainups

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8452>
This commit is contained in:
Alexander Slobodeniuk 2025-02-11 00:00:23 +01:00
parent 7c2f510cd0
commit b4d0427ffb
4 changed files with 8 additions and 0 deletions

View File

@ -80,6 +80,8 @@ gst_av1_2_json_finalize (GObject * object)
gst_av1_parser_free (self->parser);
json_object_unref (self->json);
G_OBJECT_CLASS (gst_av1_2_json_parent_class)->finalize (object);
}
static gchar *

View File

@ -83,6 +83,8 @@ gst_h264_2_json_finalize (GObject * object)
json_object_unref (self->json);
gst_h264_nal_parser_free (self->parser);
G_OBJECT_CLASS (gst_h264_2_json_parent_class)->finalize (object);
}
static gchar *

View File

@ -85,6 +85,8 @@ gst_h265_2_json_finalize (GObject * object)
json_object_unref (self->json);
gst_h265_parser_free (self->parser);
g_array_unref (self->split_nalu);
G_OBJECT_CLASS (gst_h265_2_json_parent_class)->finalize (object);
}
static gchar *

View File

@ -81,6 +81,8 @@ gst_vp8_2_json_finalize (GObject * object)
GstVp82json *self = GST_VP8_2_JSON (object);
json_object_unref (self->json);
G_OBJECT_CLASS (parent_class)->finalize (object);
}
static gchar *