clocksync: Fix providing system clock by default

clocksync defaults to sync=true so should advertise it by default.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/795>
This commit is contained in:
Doug Nazar 2021-04-07 04:46:23 -04:00 committed by Tim-Philipp Müller
parent fdf6a793dc
commit daf4e5b410

View file

@ -171,6 +171,7 @@ gst_clock_sync_init (GstClockSync * clocksync)
clocksync->sync = DEFAULT_SYNC;
g_cond_init (&clocksync->blocked_cond);
GST_OBJECT_FLAG_SET (clocksync, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
GST_OBJECT_FLAG_SET (clocksync, GST_ELEMENT_FLAG_REQUIRE_CLOCK);
}