mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
9e786de9c8
The functions used to extract this data have been moved to gstpbutils to facilitate reuse. https://bugzilla.gnome.org/show_bug.cgi?id=617318
39 lines
790 B
Makefile
39 lines
790 B
Makefile
plugin_LTLIBRARIES = libgstmatroska.la
|
|
|
|
libgstmatroska_la_SOURCES = \
|
|
ebml-read.c \
|
|
ebml-write.c \
|
|
matroska.c \
|
|
matroska-demux.c \
|
|
matroska-ids.c \
|
|
matroska-mux.c \
|
|
webm-mux.c \
|
|
lzo.c
|
|
|
|
noinst_HEADERS = \
|
|
ebml-ids.h \
|
|
ebml-read.h \
|
|
ebml-write.h \
|
|
matroska-demux.h \
|
|
matroska-ids.h \
|
|
matroska-mux.h \
|
|
webm-mux.h \
|
|
lzo.h
|
|
|
|
libgstmatroska_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS)
|
|
libgstmatroska_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstriff-@GST_MAJORMINOR@ \
|
|
-lgstaudio-@GST_MAJORMINOR@ \
|
|
-lgsttag-@GST_MAJORMINOR@ \
|
|
-lgstpbutils-@GST_MAJORMINOR@ \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(ZLIB_LIBS) \
|
|
$(BZ2_LIBS) \
|
|
$(LIBM)
|
|
libgstmatroska_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstmatroska_la_LIBTOOLFLAGS = --tag=disable-static
|