gstreamer/gst/codecalpha/meson.build
Nicolas Dufresne f3114d4d7e Introduce CODEC Alpha plugin
This plugin contains a set of utility elements allowing to extract,
decode and combine CODEC (typically VP8/VP9) alpha stream.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2199>
2021-05-11 16:06:56 -04:00

15 lines
398 B
Meson

codecalpha_sources = [
'gstplugin.c',
'gstcodecalphademux.c',
]
gstcodecalpha = library('gstcodecalpha',
codecalpha_sources,
c_args : gst_plugins_bad_args,
include_directories : [configinc],
dependencies : [gstvideo_dep],
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstcodecalpha, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstcodecalpha]