2016-08-12 15:42:30 +00:00
|
|
|
flac_sources = [
|
|
|
|
'gstflac.c',
|
2021-02-11 18:53:30 +00:00
|
|
|
'gstflacelement.c',
|
2016-08-12 15:42:30 +00:00
|
|
|
'gstflacdec.c',
|
|
|
|
'gstflacenc.c',
|
|
|
|
'gstflactag.c',
|
|
|
|
]
|
|
|
|
|
2025-01-13 17:10:31 +00:00
|
|
|
flac_headers = [
|
|
|
|
'gstflacenc.h',
|
|
|
|
'gstflactag.h',
|
|
|
|
'gstflacdec.h',
|
|
|
|
'gstflacelements.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
doc_sources = []
|
|
|
|
foreach s: flac_sources + flac_headers
|
|
|
|
doc_sources += meson.current_source_dir() / s
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
plugin_sources += {
|
|
|
|
'flac': pathsep.join(doc_sources)
|
|
|
|
}
|
|
|
|
|
2024-04-06 09:26:39 +00:00
|
|
|
flac_dep = dependency('flac', version : '>=1.1.4', required : get_option('flac'),
|
|
|
|
allow_fallback: true)
|
2016-08-12 15:42:30 +00:00
|
|
|
|
|
|
|
if flac_dep.found()
|
|
|
|
gstflac = library('gstflac',
|
|
|
|
flac_sources,
|
|
|
|
c_args : gst_plugins_good_args + ['-DGST_USE_UNSTABLE_API'],
|
|
|
|
link_args : noseh_link_args,
|
|
|
|
include_directories : [configinc, libsinc],
|
|
|
|
dependencies : [gstbase_dep, gsttag_dep, gstaudio_dep, flac_dep],
|
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-10-22 09:39:55 +00:00
|
|
|
plugins += [gstflac]
|
2016-08-12 15:42:30 +00:00
|
|
|
endif
|