mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
afb18e0e31
If stream has HDR10 metadata and HDMI device EDID supports it, this patch will set the DRM properties accordingly. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3303>
36 lines
1,018 B
Meson
36 lines
1,018 B
Meson
kmssink_sources = [
|
|
'gstkmsallocator.c',
|
|
'gstkmsbufferpool.c',
|
|
'gstkmssink.c',
|
|
'gstkmsutils.c',
|
|
]
|
|
extra_deps = []
|
|
|
|
if host_system != 'linux'
|
|
subdir_done()
|
|
endif
|
|
|
|
libdrm_dep = dependency('libdrm', version : '>= 2.4.98',
|
|
required : get_option('kms'),
|
|
fallback: ['libdrm', 'ext_libdrm'])
|
|
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
|
|
|
|
if libdrm_dep.found()
|
|
gstkmssink = library('gstkms',
|
|
kmssink_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstbase_dep, gstvideo_dep, gstallocators_dep, libdrm_dep, mathlib],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
plugins += [gstkmssink]
|
|
endif
|