2016-08-12 15:26:31 +00:00
|
|
|
pbutils_sources = [
|
|
|
|
'gstpluginsbaseversion.c',
|
|
|
|
'pbutils.c',
|
|
|
|
'codec-utils.c',
|
|
|
|
'descriptions.c',
|
|
|
|
'encoding-profile.c',
|
|
|
|
'encoding-target.c',
|
|
|
|
'install-plugins.c',
|
|
|
|
'missing-plugins.c',
|
|
|
|
'gstaudiovisualizer.c',
|
|
|
|
'gstdiscoverer.c',
|
|
|
|
'gstdiscoverer-types.c'
|
|
|
|
]
|
|
|
|
|
|
|
|
pbconf = configuration_data()
|
|
|
|
pbconf.set('PACKAGE_VERSION_MAJOR', gst_version_major)
|
|
|
|
pbconf.set('PACKAGE_VERSION_MINOR', gst_version_minor)
|
|
|
|
pbconf.set('PACKAGE_VERSION_MICRO', gst_version_micro)
|
|
|
|
pbconf.set('PACKAGE_VERSION_NANO', gst_version_nano)
|
2017-10-05 12:28:42 +00:00
|
|
|
gst_pbutils_version_h = configure_file(input : 'gstpluginsbaseversion.h.in',
|
2016-08-12 15:26:31 +00:00
|
|
|
output: 'gstpluginsbaseversion.h',
|
2018-08-10 11:43:38 +00:00
|
|
|
install_dir : join_paths(get_option('includedir'), 'gstreamer-1.0/gst/pbutils'),
|
2016-08-12 15:26:31 +00:00
|
|
|
configuration: pbconf)
|
|
|
|
|
|
|
|
pbutils_headers = [
|
|
|
|
'pbutils.h',
|
2018-03-13 11:08:34 +00:00
|
|
|
'pbutils-prelude.h',
|
2016-08-12 15:26:31 +00:00
|
|
|
'codec-utils.h',
|
|
|
|
'descriptions.h',
|
|
|
|
'encoding-profile.h',
|
|
|
|
'encoding-target.h',
|
|
|
|
'install-plugins.h',
|
|
|
|
'missing-plugins.h',
|
|
|
|
'gstdiscoverer.h',
|
|
|
|
'gstaudiovisualizer.h',
|
|
|
|
]
|
|
|
|
install_headers(pbutils_headers, subdir : 'gstreamer-1.0/gst/pbutils/')
|
|
|
|
|
|
|
|
pbutils_mkenum_headers = pbutils_headers
|
|
|
|
|
2017-07-20 04:15:30 +00:00
|
|
|
pbutils_enums = gnome.mkenums_simple('pbutils-enumtypes',
|
|
|
|
sources : pbutils_mkenum_headers,
|
2018-04-28 13:50:11 +00:00
|
|
|
body_prefix : '#ifdef HAVE_CONFIG_H\n#include "config.h"\n#endif',
|
2017-07-20 04:15:30 +00:00
|
|
|
header_prefix : '#include <gst/pbutils/pbutils-prelude.h>',
|
|
|
|
decorator : 'GST_PBUTILS_API',
|
|
|
|
install_header: true,
|
2018-08-10 11:43:38 +00:00
|
|
|
install_dir : join_paths(get_option('includedir'), 'gstreamer-1.0/gst/pbutils'))
|
2017-07-20 04:15:30 +00:00
|
|
|
gstpbutils_c = pbutils_enums[0]
|
|
|
|
gstpbutils_h = pbutils_enums[1]
|
2016-08-12 15:26:31 +00:00
|
|
|
|
2016-10-20 20:17:27 +00:00
|
|
|
gstpbutils_deps = [video_dep, audio_dep, tag_dep]
|
2016-08-12 15:26:31 +00:00
|
|
|
pbutils = library('gstpbutils-@0@'.format(api_version),
|
|
|
|
pbutils_sources, gstpbutils_c, gstpbutils_h,
|
2018-04-28 13:50:11 +00:00
|
|
|
c_args : gst_plugins_base_args + ['-DBUILDING_GST_PBUTILS'],
|
2016-08-12 15:26:31 +00:00
|
|
|
include_directories: [configinc, libsinc],
|
|
|
|
version : libversion,
|
|
|
|
soversion : soversion,
|
2018-08-31 09:06:30 +00:00
|
|
|
darwin_versions : osxversion,
|
2016-08-12 15:26:31 +00:00
|
|
|
install : true,
|
2016-10-20 20:17:27 +00:00
|
|
|
dependencies : gstpbutils_deps,
|
2016-08-12 15:26:31 +00:00
|
|
|
)
|
2016-10-20 20:17:27 +00:00
|
|
|
|
2017-10-05 12:28:42 +00:00
|
|
|
pbutils_gen_sources = [gstpbutils_h, gst_pbutils_version_h]
|
2016-10-20 20:17:27 +00:00
|
|
|
if build_gir
|
2017-04-12 14:06:45 +00:00
|
|
|
gst_gir_extra_args = gir_init_section + [ '--c-include=gst/pbutils/pbutils.h' ]
|
2016-10-20 20:17:27 +00:00
|
|
|
pbutils_gen_sources += [gnome.generate_gir(pbutils,
|
2017-10-05 12:28:42 +00:00
|
|
|
sources : pbutils_sources + pbutils_headers + [gstpbutils_h, gst_pbutils_version_h],
|
2016-10-20 20:17:27 +00:00
|
|
|
namespace : 'GstPbutils',
|
|
|
|
nsversion : api_version,
|
|
|
|
identifier_prefix : 'Gst',
|
|
|
|
symbol_prefix : 'gst',
|
|
|
|
export_packages : 'gstreamer-pbutils-1.0',
|
2017-10-05 12:28:42 +00:00
|
|
|
includes : ['Gst-1.0', 'GstBase-1.0', 'GstAudio-1.0', 'GstVideo-1.0'],
|
2016-10-20 20:17:27 +00:00
|
|
|
install : true,
|
2017-04-12 14:06:45 +00:00
|
|
|
extra_args : gst_gir_extra_args,
|
2016-10-20 20:17:27 +00:00
|
|
|
dependencies : gstpbutils_deps
|
|
|
|
)]
|
|
|
|
endif
|
2016-08-12 15:26:31 +00:00
|
|
|
|
|
|
|
pbutils_dep = declare_dependency(link_with : pbutils,
|
|
|
|
include_directories : [libsinc],
|
2016-10-20 20:17:27 +00:00
|
|
|
dependencies : gstpbutils_deps,
|
|
|
|
sources : pbutils_gen_sources)
|