mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 10:31:05 +00:00
abcc855497
Original commit message from CVS: * gst/mxf/Makefile.am: * gst/mxf/mxfdemux.c: (gst_mxf_demux_handle_header_metadata_update_streams): * gst/mxf/mxftypes.h: * gst/mxf/mxfup.c: (mxf_is_up_essence_track), (mxf_up_handle_essence_element), (mxf_up_rgba_create_caps), (mxf_up_create_caps): * gst/mxf/mxfup.h: Add initial support for uncompressed video essence (SMPTE S384M). * gst/mxf/mxfparse.c: (mxf_metadata_rgba_picture_essence_descriptor_handle_tag), (mxf_metadata_rgba_picture_essence_descriptor_reset): Fix parsing of the RGBA descriptor and add support for parsing the pixel layout.
31 lines
585 B
Makefile
31 lines
585 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
|
|
|
|
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 \
|
|
mxftypes.h
|
|
|