2018-07-27 13:29:23 +00:00
|
|
|
# mjpegtools upstream breaks API constantly and doesn't export the version in
|
|
|
|
# a header anywhere. The configure file has a lot of logic to support old
|
|
|
|
# versions, but it all seems untested and broken. Require 2.0.0. Can be changed
|
|
|
|
# if someone complains.
|
|
|
|
mjpegtools_dep = dependency('mjpegtools', version : '>=2.0.0', required : get_option('mpeg2enc'))
|
|
|
|
mpeg2enc_dep = cxx.find_library('mpeg2encpp', required : get_option('mpeg2enc'))
|
2019-08-27 02:05:10 +00:00
|
|
|
|
|
|
|
no_warn_args = []
|
|
|
|
foreach arg : [
|
|
|
|
'-Wno-mismatched-tags', # mjpeg headers get class/struct mixed up
|
|
|
|
'-Wno-header-guard',
|
|
|
|
]
|
|
|
|
if cxx.has_argument(arg)
|
|
|
|
no_warn_args += [arg]
|
|
|
|
endif
|
|
|
|
endforeach
|
|
|
|
|
2018-07-27 13:29:23 +00:00
|
|
|
if mjpegtools_dep.found() and mpeg2enc_dep.found()
|
|
|
|
gstmpeg2enc = library('gstmpeg2enc',
|
|
|
|
'gstmpeg2enc.cc',
|
|
|
|
'gstmpeg2encoptions.cc',
|
|
|
|
'gstmpeg2encoder.cc',
|
|
|
|
'gstmpeg2encstreamwriter.cc',
|
|
|
|
'gstmpeg2encpicturereader.cc',
|
2019-08-27 02:05:10 +00:00
|
|
|
cpp_args : gst_plugins_bad_args + ['-DGST_MJPEGTOOLS_API=20000'] + no_warn_args,
|
2018-07-27 13:29:23 +00:00
|
|
|
link_args : noseh_link_args,
|
|
|
|
include_directories : [configinc, libsinc],
|
|
|
|
dependencies : [gstvideo_dep, mjpegtools_dep, mpeg2enc_dep],
|
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
|
|
|
pkgconfig.generate(gstmpeg2enc, install_dir : plugins_pkgconfig_install_dir)
|
2018-10-22 09:30:45 +00:00
|
|
|
plugins += [gstmpeg2enc]
|
2017-03-22 21:18:10 +00:00
|
|
|
endif
|