mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
fe8e2a001c
Sometimes, one wants to force a clock on some pipelines - for instance, when testing TSN related pipelines, one usually uses GstPtpClock or CLOCK_REALTIME (assuming system realtime clock is in sync with network one). Until now, one needs to write an application for that - not difficult, but quite boring if one just wants to test something. This patch presents a new element to help that: clockselect. clockselect is a pipeline with two properties to select a clock. One property, "clock-id", enables one to choose between "monotonic", "realtime", "ptp" or "default" clock - where default keeps pipeline behaviour of choosing a clock based on its elements. The other property, "ptp-domain" gives one the choice of which PTP domain should be used. Some very simple tests also added for this new element.
24 lines
630 B
Meson
24 lines
630 B
Meson
debugutilsbad_sources = [
|
|
'gstdebugspy.c',
|
|
'gsterrorignore.c',
|
|
'debugutilsbad.c',
|
|
'fpsdisplaysink.c',
|
|
'gstchecksumsink.c',
|
|
'gstchopmydata.c',
|
|
'gstcompare.c',
|
|
'gstfakevideosink.c',
|
|
'gstwatchdog.c',
|
|
'gsttestsrcbin.c',
|
|
'gstclockselect.c',
|
|
]
|
|
|
|
gstdebugutilsbad = library('gstdebugutilsbad',
|
|
debugutilsbad_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstbase_dep, gstvideo_dep, gstnet_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstdebugutilsbad, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstdebugutilsbad]
|