mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
70281aa4e4
Original commit message from CVS: * gst/mxf/Makefile.am: * gst/mxf/mxfdemux.c: (gst_mxf_demux_handle_header_metadata_update_streams): * gst/mxf/mxfjpeg2000.c: (mxf_is_jpeg2000_video_essence_track), (mxf_jpeg2000_handle_essence_element), (mxf_jpeg2000_create_caps): * gst/mxf/mxfjpeg2000.h: Add initial support for JPEG2000 encoded video essence. * gst/mxf/mxfparse.c: (mxf_metadata_generic_picture_essence_descriptor_set_caps): Set the framerate in the video caps.
26 lines
456 B
Makefile
26 lines
456 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
|
|
|
|
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 \
|
|
mxftypes.h
|
|
|