mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
ecc0e9221f
Original commit message from CVS: * gst/mxf/Makefile.am: * gst/mxf/mxf.c: (plugin_init): * gst/mxf/mxfvc3.c: (mxf_is_vc3_essence_track), (mxf_vc3_handle_essence_element), (mxf_vc3_create_caps), (mxf_vc3_init): * gst/mxf/mxfvc3.h: Add support for VC-3 (aka DNxHD essence, see SMPTE 2019-4). This is untested because of lack of sample files but should work fine.
35 lines
643 B
Makefile
35 lines
643 B
Makefile
plugin_LTLIBRARIES = libgstmxf.la
|
|
|
|
libgstmxf_la_SOURCES = \
|
|
mxf.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
|
|
|
|
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 = \
|
|
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
|
|
|