summaryrefslogtreecommitdiff
path: root/ext/dash/meson.build
blob: 8d31bc375c3ea4866fea8d0576aba92a0f79eb10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
dash_sources = [
  'gstdashdemux.c',
  'gstisoff.c',
  'gstmpdparser.c',
  'gstplugin.c',
]

xml2_dep = dependency('libxml-2.0', version : '>= 2.8', required : false)
if xml2_dep.found()
  gstsouphttpsrc = library('gstdashdemux',
    dash_sources,
    c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
    link_args : noseh_link_args,
    include_directories : [configinc, libsinc],
    dependencies : [gstadaptivedemux_dep, gsturidownloader_dep, gsttag_dep,
                    gstnet_dep, gstbase_dep, gio_dep, xml2_dep],
    install : true,
    install_dir : plugins_install_dir,
  )
endif