mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +00:00
54 lines
1.4 KiB
Meson
54 lines
1.4 KiB
Meson
resindvd_opt = get_option('resindvd').require(gpl_allowed, error_message: '''
|
|
Plugin resindvd explicitly required via options but GPL-licensed plugins disabled via options.
|
|
Pass option -Dgpl=enabled to Meson to allow GPL-licensed plugins to be built.
|
|
''')
|
|
|
|
resindvd_sources = [
|
|
'gstmpegdemux.c',
|
|
'gstmpegdesc.c',
|
|
'gstpesfilter.c',
|
|
'plugin.c',
|
|
'resindvdbin.c',
|
|
'resindvdsrc.c',
|
|
'rsndec.c',
|
|
'rsninputselector.c',
|
|
'rsnparsetter.c',
|
|
]
|
|
|
|
resindvd_headers = [
|
|
'gstpesfilter.h',
|
|
'rsnparsetter.h',
|
|
'resindvdsrc.h',
|
|
'gstmpegdemux.h',
|
|
'gstmpegdesc.h',
|
|
'rsninputselector.h',
|
|
'resindvdbin.h',
|
|
'rsndec.h',
|
|
'gstmpegdefs.h',
|
|
]
|
|
|
|
doc_sources = []
|
|
foreach s: resindvd_sources + resindvd_headers
|
|
doc_sources += meson.current_source_dir() / s
|
|
endforeach
|
|
|
|
plugin_sources += {
|
|
'resindvd': pathsep.join(doc_sources)
|
|
}
|
|
|
|
dvdnav_dep = dependency('dvdnav', version : '>= 4.1.2', required : resindvd_opt)
|
|
dvdread_dep = dependency('dvdread', version : '>= 4.1.2', required : resindvd_opt)
|
|
|
|
if dvdnav_dep.found() and dvdread_dep.found()
|
|
gstresindvd = library('gstresindvd',
|
|
resindvd_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
link_args : noseh_link_args,
|
|
include_directories : [configinc, libsinc],
|
|
dependencies : [gstvideo_dep, gstpbutils_dep, gsttag_dep,
|
|
dvdnav_dep, dvdread_dep, gmodule_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
plugins += [gstresindvd]
|
|
endif
|