mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
acc6a316ce
This will later be used to keep the structural metadata when remuxing an MXF file and can also be used in Pitivi for example to know the file structure and to select what should be used and played.
39 lines
697 B
Makefile
39 lines
697 B
Makefile
plugin_LTLIBRARIES = libgstmxf.la
|
|
|
|
libgstmxf_la_SOURCES = \
|
|
mxf.c \
|
|
mxfquark.c \
|
|
mxfdemux.c \
|
|
mxfparse.c \
|
|
mxfaes-bwf.c \
|
|
mxfmpeg.c \
|
|
mxfdv-dif.c \
|
|
mxfalaw.c \
|
|
mxfjpeg2000.c \
|
|
mxfd10.c \
|
|
mxfup.c \
|
|
mxfvc3.c \
|
|
mxfmetadata.c \
|
|
mxfdms1.c
|
|
|
|
libgstmxf_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
|
libgstmxf_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstvideo-@GST_MAJORMINOR@
|
|
libgstmxf_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
mxfquark.h \
|
|
mxfdemux.h \
|
|
mxfparse.h \
|
|
mxfaes-bwf.h \
|
|
mxfmpeg.h \
|
|
mxfdv-dif.h \
|
|
mxfalaw.h \
|
|
mxfjpeg2000.h \
|
|
mxfd10.h \
|
|
mxfup.h \
|
|
mxfvc3.h \
|
|
mxftypes.h \
|
|
mxfmetadata.h \
|
|
mxfdms1.h
|
|
|