mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
08889d7a8f
Original commit message from CVS: Added corresponding divx/xvid decoders and fixed some first-hand encoder bugs
15 lines
523 B
Makefile
15 lines
523 B
Makefile
plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
|
|
|
plugin_LTLIBRARIES = libgstdivxenc.la libgstdivxdec.la
|
|
|
|
libgstdivxenc_la_SOURCES = gstdivxenc.c
|
|
libgstdivxenc_la_CFLAGS = $(GST_CFLAGS) $(DIVX_CFLAGS)
|
|
libgstdivxenc_la_LIBADD = $(DIVXENC_LIBS)
|
|
libgstdivxenc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libgstdivxdec_la_SOURCES = gstdivxdec.c
|
|
libgstdivxdec_la_CFLAGS = $(GST_CFLAGS) $(DIVX_CFLAGS)
|
|
libgstdivxdec_la_LIBADD = $(DIVXDEC_LIBS)
|
|
libgstdivxdec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstdivxenc.h gstdivxdec.h
|