2016-11-14 15:33:20 +00:00
|
|
|
kmssink_sources = [
|
|
|
|
'gstkmsallocator.c',
|
|
|
|
'gstkmsbufferpool.c',
|
|
|
|
'gstkmssink.c',
|
|
|
|
'gstkmsutils.c',
|
|
|
|
]
|
2022-11-18 21:32:10 +00:00
|
|
|
extra_deps = []
|
2016-11-14 15:33:20 +00:00
|
|
|
|
2020-04-09 14:12:25 +00:00
|
|
|
if host_system != 'linux'
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2020-04-10 18:11:35 +00:00
|
|
|
libdrm_dep = dependency('libdrm', version : '>= 2.4.98',
|
2020-03-23 11:56:46 +00:00
|
|
|
required : get_option('kms'),
|
|
|
|
fallback: ['libdrm', 'ext_libdrm'])
|
2022-11-18 21:32:10 +00:00
|
|
|
libdrm_hdr_dep = dependency('libdrm', version : '>= 2.4.104',
|
|
|
|
required : false,
|
|
|
|
fallback: ['libdrm', 'ext_libdrm'])
|
|
|
|
mathlib = cc.find_library('m', required : false)
|
|
|
|
|
|
|
|
if libdrm_hdr_dep.found() and mathlib.found()
|
|
|
|
cdata.set('HAVE_DRM_HDR', 1)
|
|
|
|
kmssink_sources += 'gstkmsedid.c'
|
|
|
|
endif
|
|
|
|
|
2016-10-19 10:39:36 +00:00
|
|
|
if libdrm_dep.found()
|
2017-03-04 16:03:53 +00:00
|
|
|
gstkmssink = library('gstkms',
|
2016-11-14 15:33:20 +00:00
|
|
|
kmssink_sources,
|
|
|
|
c_args : gst_plugins_bad_args,
|
|
|
|
include_directories : [configinc],
|
2022-11-18 21:32:10 +00:00
|
|
|
dependencies : [gstbase_dep, gstvideo_dep, gstallocators_dep, libdrm_dep, mathlib],
|
2016-11-14 15:33:20 +00:00
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-10-22 09:30:45 +00:00
|
|
|
plugins += [gstkmssink]
|
2016-11-14 15:33:20 +00:00
|
|
|
endif
|