mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
e367258eef
Add code from Stream Unlimited implementing a bin which switches between different internal decoding/processing chains based on input caps
14 lines
375 B
Meson
14 lines
375 B
Meson
switchbin_sources = [
|
|
'gstswitchbin.c', 'plugin.c'
|
|
]
|
|
|
|
gstswitchbin = library('gstswitchbin',
|
|
switchbin_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gst_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstswitchbin, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstswitchbin]
|