gstreamer/gst/timecode/meson.build
Sebastian Dröge 678064d603 timecodestamper: Rewrite element API and code flow
We now have a single property to select the timecode source that should
be applied, and for each timecode source the timecode is updated at
every frame. Then based on a set mode, the timecode is added to the
frame if none exists already or all existing timecodes are removed and
the timecode is added.

In addition the real-time clock is considered a proper timecode source
now instead of only allowing to initialize once in the beginning with
it, and also instead of just taking the current time we now take the
current time at the clock time of the video frame.
2019-07-08 16:45:12 +00:00

18 lines
445 B
Meson

timecode_sources = [
'plugin.c',
'gsttimecodestamper.c',
'gstavwait.c'
]
tc_deps = [gstbase_dep, gstaudio_dep, gstvideo_dep]
gsttimecode = library('gsttimecode',
timecode_sources,
c_args : gst_plugins_bad_args,
include_directories : [configinc],
dependencies : tc_deps,
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gsttimecode, install_dir : plugins_pkgconfig_install_dir)
plugins += [gsttimecode]