mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 10:31:05 +00:00
d0c62e9108
Original commit message from CVS: * gst/avi/Makefile.am: * gst/avi/gstavi.c: * gst/avi/gstavisubtitle.c: * gst/avi/gstavisubtitle.h: * tests/check/Makefile.am: * tests/check/elements/avisubtitle.c: * win32/common/config.h: Add avi subtitle element for bug #442034. Need seeking support and more support for character conversion.
24 lines
478 B
Makefile
24 lines
478 B
Makefile
plugin_LTLIBRARIES = libgstavi.la
|
|
|
|
libgstavi_la_SOURCES = \
|
|
gstavi.c \
|
|
gstavimux.c \
|
|
gstavidemux.c \
|
|
gstavisubtitle.c
|
|
|
|
noinst_HEADERS = \
|
|
avi-ids.h \
|
|
gstavimux.h \
|
|
gstavidemux.h \
|
|
gstavisubtitle.h
|
|
|
|
libgstavi_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
-I$(top_srcdir)/gst-libs
|
|
libgstavi_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
-lgstriff-@GST_MAJORMINOR@
|
|
libgstavi_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
EXTRA_DIST = README
|