mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-06 15:38:50 +00:00
b1b696017c
And add a way to check that a configured number of instances of a particular element is used, this is useful to make sure for example that playing a particular stream doesn't lead to several decoders being instanciated.
10 lines
378 B
Meson
10 lines
378 B
Meson
shared_library('gstextrachecks',
|
|
'gstvalidateextrachecks.c',
|
|
include_directories : inc_dirs,
|
|
c_args: ['-DHAVE_CONFIG_H'],
|
|
install: true,
|
|
install_dir: validate_plugins_install_dir,
|
|
dependencies : [gst_dep, gst_pbutils_dep],
|
|
link_with : [gstvalidate]
|
|
)
|
|
|