gstreamer/subprojects/gst-plugins-good/gst/isomp4/meson.build
Jan Schmidt 6cada5b064 qtdemux: Add support for wvtt (WebVTT) subtitles.
WebVTT in ISO MP4 is specified in ISO 14496-30,
and needed for DASH support. It's stored in an
mp4 specific format. To handle it compatibly,
the wvtt boxes are converted back into WebVTT text
and pushed as application/x-subtitle-vtt

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1182>
2021-10-19 08:56:58 +00:00

35 lines
883 B
Meson

mp4_sources = [
'isomp4-plugin.c',
'gstisomp4element.c',
'gstrtpxqtdepay.c',
'qtdemux.c',
'qtdemux_types.c',
'qtdemux_dump.c',
'qtdemux_lang.c',
'qtdemux_tags.c',
'qtdemux_tree.c',
'qtdemux-webvtt.c',
'gstisoff.c',
'gstqtmux.c',
'gstqtmoovrecover.c',
'atoms.c',
'atomsrecovery.c',
'descriptors.c',
'properties.c',
'gstqtmuxmap.c'
]
gstisomp4 = library('gstisomp4',
mp4_sources,
c_args : gst_plugins_good_args,
link_args : noseh_link_args,
include_directories : [configinc, libsinc],
dependencies : [gst_dep, gstriff_dep, gstaudio_dep, gstvideo_dep,
gstrtp_dep, gsttag_dep, gstpbutils_dep, zlib_dep],
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstisomp4, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstisomp4]
install_data(sources: 'GstQTMux.prs', install_dir: presetdir)