diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-04-21 21:54:27 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-04-21 21:54:27 +0000 |
commit | ab57fbcd544e5226cb57aef7d54370f58e8badf4 (patch) | |
tree | c6f10a198cf57b4279b82ecb41069f66fd13ee9e /ext/divx/Makefile.am | |
parent | 7ca8563737c8a87cdd54bb2aefe8321354c5362e (diff) | |
download | gst-plugins-bad-ab57fbcd544e5226cb57aef7d54370f58e8badf4.tar.gz gst-plugins-bad-ab57fbcd544e5226cb57aef7d54370f58e8badf4.tar.bz2 gst-plugins-bad-ab57fbcd544e5226cb57aef7d54370f58e8badf4.zip |
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.
Diffstat (limited to 'ext/divx/Makefile.am')
-rw-r--r-- | ext/divx/Makefile.am | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ext/divx/Makefile.am b/ext/divx/Makefile.am new file mode 100644 index 00000000..e6a6eaa5 --- /dev/null +++ b/ext/divx/Makefile.am @@ -0,0 +1,10 @@ +plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@ + +plugin_LTLIBRARIES = libgstdivx.la + +libgstdivx_la_SOURCES = gstdivxenc.c +libgstdivx_la_CFLAGS = $(GST_CFLAGS) $(DIVX_CFLAGS) +libgstdivx_la_LIBADD = $(DIVX_LIBS) +libgstdivx_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) + +noinst_HEADERS = gstdivxenc.h |