2016-08-12 15:51:45 +00:00
|
|
|
mxf_sources = [
|
|
|
|
'mxf.c',
|
2021-02-25 14:22:15 +00:00
|
|
|
'gstmxfelement.c',
|
2016-08-12 15:51:45 +00:00
|
|
|
'mxful.c',
|
|
|
|
'mxftypes.c',
|
|
|
|
'mxfmetadata.c',
|
|
|
|
'mxfessence.c',
|
|
|
|
'mxfquark.c',
|
|
|
|
'mxfmux.c',
|
|
|
|
'mxfdemux.c',
|
|
|
|
'mxfaes-bwf.c',
|
|
|
|
'mxfmpeg.c',
|
|
|
|
'mxfdv-dif.c',
|
|
|
|
'mxfalaw.c',
|
|
|
|
'mxfjpeg2000.c',
|
|
|
|
'mxfd10.c',
|
|
|
|
'mxfup.c',
|
|
|
|
'mxfvc3.c',
|
2019-12-18 18:01:30 +00:00
|
|
|
'mxfprores.c',
|
2020-06-23 20:40:38 +00:00
|
|
|
'mxfvanc.c',
|
2022-10-12 09:12:50 +00:00
|
|
|
'mxfcustom.c',
|
2023-02-06 16:47:11 +00:00
|
|
|
'mxfffv1.c',
|
2017-02-14 20:19:44 +00:00
|
|
|
# 'mxfdms1.c',
|
2016-08-12 15:51:45 +00:00
|
|
|
]
|
|
|
|
|
2025-01-13 17:10:31 +00:00
|
|
|
mxf_headers = [
|
|
|
|
'mxfmetadata.h',
|
|
|
|
'mxfd10.h',
|
|
|
|
'mxfvanc.h',
|
|
|
|
'mxfdemux.h',
|
|
|
|
'mxftypes.h',
|
|
|
|
'mxfdms1.h',
|
|
|
|
'mxfdv-dif.h',
|
|
|
|
'mxfjpeg2000.h',
|
|
|
|
'mxful.h',
|
|
|
|
'mxfmpeg.h',
|
|
|
|
'mxfquark.h',
|
|
|
|
'mxfvc3.h',
|
|
|
|
'mxfcustom.h',
|
|
|
|
'mxfffv1.h',
|
|
|
|
'mxfaes-bwf.h',
|
|
|
|
'mxfup.h',
|
|
|
|
'mxfprores.h',
|
|
|
|
'gstmxfelements.h',
|
|
|
|
'mxfessence.h',
|
|
|
|
'mxfalaw.h',
|
|
|
|
'mxfmux.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
doc_sources = []
|
|
|
|
foreach s: mxf_sources + mxf_headers
|
|
|
|
doc_sources += meson.current_source_dir() / s
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
plugin_sources += {
|
|
|
|
'mxf': pathsep.join(doc_sources)
|
|
|
|
}
|
|
|
|
|
|
|
|
if get_option('mxf').disabled()
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2016-08-12 15:51:45 +00:00
|
|
|
gstmxf = library('gstmxf',
|
|
|
|
mxf_sources,
|
|
|
|
c_args : gst_plugins_bad_args + [ '-DGST_USE_UNSTABLE_API' ],
|
|
|
|
include_directories : [configinc],
|
2017-12-02 16:01:25 +00:00
|
|
|
dependencies : [gstbase_dep, gstaudio_dep, gstvideo_dep],
|
2016-08-12 15:51:45 +00:00
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-10-22 09:30:45 +00:00
|
|
|
plugins += [gstmxf]
|