2025-01-13 17:10:31 +00:00
|
|
|
flxdec_sources = [
|
|
|
|
'gstflxdec.c',
|
|
|
|
'flx_color.c',
|
|
|
|
]
|
|
|
|
|
|
|
|
flxdec_headers = [
|
|
|
|
'gstflxdec.h',
|
|
|
|
'flx_color.h',
|
|
|
|
'flx_fmt.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
doc_sources = []
|
|
|
|
foreach s: flxdec_sources + flxdec_headers
|
|
|
|
doc_sources += meson.current_source_dir() / s
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
plugin_sources += {
|
|
|
|
'flxdec': pathsep.join(doc_sources)
|
|
|
|
}
|
|
|
|
|
|
|
|
if get_option('flx').disabled()
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2016-08-12 15:42:30 +00:00
|
|
|
flxdec = library('gstflxdec',
|
2025-01-13 17:10:31 +00:00
|
|
|
flxdec_sources,
|
2016-08-12 15:42:30 +00:00
|
|
|
c_args : gst_plugins_good_args,
|
|
|
|
include_directories : [configinc],
|
|
|
|
dependencies : [gstbase_dep, gstvideo_dep, gst_dep],
|
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-10-22 09:39:55 +00:00
|
|
|
plugins += [flxdec]
|