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',
|
|
|
|
]
|
|
|
|
|
2025-01-13 17:10:31 +00:00
|
|
|
codecalpha_headers = [
|
|
|
|
'gstalphadecodebin.h',
|
|
|
|
'gstalphacombine.h',
|
|
|
|
'gstvp9alphadecodebin.h',
|
|
|
|
'gstcodecalphademux.h',
|
|
|
|
'gstvp8alphadecodebin.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
doc_sources = []
|
|
|
|
foreach s: codecalpha_sources + codecalpha_headers
|
|
|
|
doc_sources += meson.current_source_dir() / s
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
plugin_sources += {
|
|
|
|
'codecalpha': pathsep.join(doc_sources)
|
|
|
|
}
|
|
|
|
|
|
|
|
if get_option('codecalpha').disabled()
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2021-03-24 20:48:35 +00:00
|
|
|
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,
|
|
|
|
)
|
|
|
|
plugins += [gstcodecalpha]
|