mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
efbb6d2a13
Follow-up of 73721ad4e9
.
Forgot to add the fragment parser in the meson build file.
21 lines
626 B
Meson
21 lines
626 B
Meson
smoothstreaming_sources = [
|
|
'gstmssdemux.c',
|
|
'gstmssmanifest.c',
|
|
'gstmssfragmentparser.c',
|
|
'gstsmoothstreaming-plugin.c',
|
|
]
|
|
|
|
xml28_dep = dependency('libxml-2.0', version : '>= 2.8', required : false)
|
|
|
|
if xml28_dep.found()
|
|
gstmss = library('gstsmoothstreaming',
|
|
smoothstreaming_sources,
|
|
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
|
|
link_args : noseh_link_args,
|
|
include_directories : [configinc, libsinc],
|
|
dependencies : [gst_dep, gstadaptivedemux_dep, gstcodecparsers_dep,
|
|
gsturidownloader_dep, xml28_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
endif
|