2021-03-24 20:48:35 +00:00
|
|
|
codecalpha_sources = [
|
|
|
|
'gstplugin.c',
|
2021-04-02 19:07:22 +00:00
|
|
|
'gstalphacombine.c',
|
2021-04-22 20:50:17 +00:00
|
|
|
'gstalphadecodebin.c',
|
|
|
|
'gstvp8alphadecodebin.c',
|
|
|
|
'gstvp9alphadecodebin.c',
|
2021-03-24 20:48:35 +00:00
|
|
|
'gstcodecalphademux.c',
|
|
|
|
]
|
|
|
|
|
|
|
|
gstcodecalpha = library('gstcodecalpha',
|
|
|
|
codecalpha_sources,
|
|
|
|
c_args : gst_plugins_bad_args,
|
|
|
|
include_directories : [configinc],
|
2021-04-22 20:50:17 +00:00
|
|
|
dependencies : [gstvideo_dep, gstpbutils_dep],
|
2021-03-24 20:48:35 +00:00
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
|
|
|
pkgconfig.generate(gstcodecalpha, install_dir : plugins_pkgconfig_install_dir)
|
|
|
|
plugins += [gstcodecalpha]
|