blob: 2701ccd2e493658c272c18c6fae36bdbcbd28ffe [file] [log] [blame]
Nirbheek Chauhan42af2d62016-08-12 21:21:45 +05301mxf_sources = [
2 'mxf.c',
3 'mxful.c',
4 'mxftypes.c',
5 'mxfmetadata.c',
6 'mxfessence.c',
7 'mxfquark.c',
8 'mxfmux.c',
9 'mxfdemux.c',
10 'mxfaes-bwf.c',
11 'mxfmpeg.c',
12 'mxfdv-dif.c',
13 'mxfalaw.c',
14 'mxfjpeg2000.c',
15 'mxfd10.c',
16 'mxfup.c',
17 'mxfvc3.c',
Tim-Philipp Müller97990712017-02-14 20:19:44 +000018# 'mxfdms1.c',
Nirbheek Chauhan42af2d62016-08-12 21:21:45 +053019]
20
21gstmxf = library('gstmxf',
22 mxf_sources,
23 c_args : gst_plugins_bad_args + [ '-DGST_USE_UNSTABLE_API' ],
24 include_directories : [configinc],
Tim-Philipp Müllerd01297e2017-12-02 16:01:25 +000025 dependencies : [gstbase_dep, gstaudio_dep, gstvideo_dep],
Nirbheek Chauhan42af2d62016-08-12 21:21:45 +053026 install : true,
27 install_dir : plugins_install_dir,
28)