mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-01 20:12:28 +00:00
8201937c54
Original commit message from CVS: * gst/mxf/Makefile.am: * gst/mxf/mxfd10.c: (mxf_is_d10_essence_track), (mxf_d10_picture_handle_essence_element), (mxf_d10_sound_handle_essence_element), (mxf_d10_create_caps): * gst/mxf/mxfd10.h: * gst/mxf/mxfdemux.c: (gst_mxf_demux_handle_header_metadata_update_streams): Add support for SMPTE D10 essence (SMPTE 386M). * gst/mxf/mxfparse.c: (mxf_metadata_generic_picture_essence_descriptor_set_caps): Don't set width/height and PAR on the caps as those values are wrong for most files (height is sometimes the height of a field and aspect ratio is some random value). * gst/mxf/mxfaes-bwf.c: (mxf_bwf_create_caps), (mxf_aes3_create_caps): Fix calculation of block align if it isn't set in the descriptor.
28 lines
480 B
Makefile
28 lines
480 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
|
|
|
|
libgstmxf_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS)
|
|
libgstmxf_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS)
|
|
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 \
|
|
mxftypes.h
|
|
|