From ab57fbcd544e5226cb57aef7d54370f58e8badf4 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Mon, 21 Apr 2003 21:54:27 +0000 Subject: Adds divx/xvid encoders. divx encoder is based on divx4linux (commercial, closed-source) Original commit message from CVS: Adds divx/xvid encoders. * divx encoder is based on divx4linux (commercial, closed-source) * xvid encoder is based on xvidcore (http://www.xvid.org/, GPL - Christian? ;) ) Both use a GstCaps that doesn't conform with what we currently use, I might fix that later on or so. For now, it doesn't matter, it's just a test. We're also missing corresponding decoders (ffmpeg can decoded this too, but that's not the point), these might come later too. --- ext/xvid/Makefile.am | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 ext/xvid/Makefile.am (limited to 'ext/xvid/Makefile.am') diff --git a/ext/xvid/Makefile.am b/ext/xvid/Makefile.am new file mode 100644 index 00000000..267b1ccc --- /dev/null +++ b/ext/xvid/Makefile.am @@ -0,0 +1,10 @@ +plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@ + +plugin_LTLIBRARIES = libgstxvid.la + +libgstxvid_la_SOURCES = gstxvidenc.c +libgstxvid_la_CFLAGS = $(GST_CFLAGS) $(XVID_CFLAGS) +libgstxvid_la_LIBADD = $(XVID_LIBS) +libgstxvid_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) + +noinst_HEADERS = gstxvidenc.h -- cgit v1.2.1