gstreamer/subprojects/gst-plugins-bad/gst/codectimestamper/meson.build
Seungha Yang 6a8a20ff92 Add H.264/H.265 timestamp correction element
Adding {h264,h265}timestamper element to correct timestamp of
encoded frames. This initial version supports only DTS
correction based on given PTS and SPS data.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2580>
2022-09-12 19:02:21 +00:00

18 lines
549 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,
)
pkgconfig.generate(gstcodectimestamper, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstcodectimestamper]