mediafoundation: Chain up from GObject::constructed

... so that GstTracer can trace it

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3479>
This commit is contained in:
Seungha Yang 2022-11-29 02:10:42 +09:00 committed by GStreamer Marge Bot
parent b9b3a9c4e1
commit 581481c12f
2 changed files with 4 additions and 0 deletions

View file

@ -167,6 +167,8 @@ gst_mf_source_reader_constructed (GObject * object)
while (!g_main_loop_is_running (self->loop))
g_cond_wait (&self->cond, &self->lock);
g_mutex_unlock (&self->lock);
G_OBJECT_CLASS (parent_class)->constructed (object);
}
static gboolean

View file

@ -94,6 +94,8 @@ gst_win32_device_watcher_constructed (GObject * object)
while (!g_main_loop_is_running (self->loop))
g_cond_wait (&self->cond, &self->lock);
g_mutex_unlock (&self->lock);
G_OBJECT_CLASS (parent_class)->constructed (object);
}
static void