codec2json: fix missing GObject vtable chainups
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8452>
This commit is contained in:
parent
7c2f510cd0
commit
b4d0427ffb
@ -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 *
|
||||
|
@ -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 *
|
||||
|
@ -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 *
|
||||
|
@ -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 *
|
||||
|
Loading…
x
Reference in New Issue
Block a user