gstreamer/gst/isomp4/meson.build
Jan Schmidt 5c68e06b00 qtdemux: Split tag reading functions out
Move some code out of the enormous qtdemux.c into a separate
qtdemux_tags helper, and make some structs available via qtdemux.h
to accommodate that.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/634>
2020-06-18 14:41:27 +00:00

33 lines
837 B
Meson

mp4_sources = [
'isomp4-plugin.c',
'gstrtpxqtdepay.c',
'qtdemux.c',
'qtdemux_types.c',
'qtdemux_dump.c',
'qtdemux_lang.c',
'qtdemux_tags.c',
'qtdemux_tree.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)