mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
e1c1405396
Adds a new property to qtmux that sets a path to a file to write and update data about the moov atom (that is not writen till the end of the file). If the pipeline/app crashes during execution it might be possible to recover the movie using the qtmoovrecover element. qtmoovrecover is an element that is also a pipeline. It is not meant to be used with other elements (it has no pads). It is merely a tool/utilitary to recover unfinished qtmux files. Fixes #601576
32 lines
864 B
Makefile
32 lines
864 B
Makefile
# plugindir is set in configure
|
|
|
|
plugin_LTLIBRARIES = libgstqtmux.la
|
|
|
|
# sources used to compile this plug-in
|
|
libgstqtmux_la_SOURCES = gstqtmux.c \
|
|
gstqtmoovrecover.c \
|
|
gstqtmuxplugin.c \
|
|
atoms.c \
|
|
atomsrecovery.c \
|
|
descriptors.c \
|
|
properties.c \
|
|
gstqtmuxmap.c
|
|
|
|
# flags used to compile this plugin
|
|
# add other _CFLAGS and _LIBS as needed
|
|
libgstqtmux_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS)
|
|
libgstqtmux_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS)
|
|
libgstqtmux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstqtmux_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
# headers we need but don't want installed
|
|
noinst_HEADERS = gstqtmux.h \
|
|
gstqtmoovrecover.h \
|
|
atoms.h \
|
|
atomsrecovery.h \
|
|
descriptors.h \
|
|
properties.h \
|
|
fourcc.h \
|
|
ftypcc.h \
|
|
gstqtmuxmap.h
|
|
|