mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
f3114d4d7e
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>
15 lines
398 B
Meson
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]
|