gstreamer/subprojects/gst-plugins-bad/gst/codectimestamper/meson.build
Mihail Ivanchev 8e64dea5c6 gstcodectimestamper: remove PC file generation from plugin's own meson.build
The file generated here is incomplete; it is generated for all plugins in a loop at an upper level.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4518>
2023-05-01 16:41:32 +00:00

17 lines
464 B
Meson

codectimestamper_sources = [
'gstcodectimestamper.c',
'gsth264timestamper.c',
'gsth265timestamper.c',
'plugin.c',
]
gstcodectimestamper = library('gstcodectimestamper',
codectimestamper_sources,
c_args : gst_plugins_bad_args + [ '-DGST_USE_UNSTABLE_API' ],
include_directories : [configinc],
dependencies : [gstcodecparsers_dep, gstbase_dep, gstvideo_dep],
install : true,
install_dir : plugins_install_dir,
)
plugins += [gstcodectimestamper]