gstreamer/gst/codecalpha/meson.build
Nicolas Dufresne ba4053a2b9 alphadecodebin: Add wrappers to decode VP8/VP9 alpha
This includes base class with wrappers bin that will create a static
pipeline capable of handling the VP8/VP9 alpha channel decoding
using two instances of vp8/vp9dec element each.

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

19 lines
518 B
Meson

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