gstreamer/gst/proxy/meson.build
Nirbheek Chauhan 8a056af05e New element 'proxy' to send data to in-process pipelines
This plugin is useful when you want to pipe arbitrary data to
a different pipeline within the same process. Buffers, events, and caps
are transmitted as-is without copying or manipulation.
2017-12-19 01:09:50 +05:30

14 lines
282 B
Meson

proxy_sources = [
'gstproxy.c',
'gstproxysink.c',
'gstproxysrc.c'
]
gstproxy = library('gstproxy',
proxy_sources,
c_args : gst_plugins_bad_args,
include_directories : [configinc],
dependencies : [gstbase_dep],
install : true,
install_dir : plugins_install_dir,
)