mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-13 07:02:53 +00:00
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.
14 lines
282 B
Meson
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,
|
|
)
|