mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
ba4053a2b9
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>
19 lines
518 B
Meson
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]
|