diff options
author | David Schleef <ds@schleef.org> | 2004-01-15 08:58:22 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2004-01-15 08:58:22 +0000 |
commit | 4910efb9b7baced502f3f78cf54ba580603d4415 (patch) | |
tree | 7c0ca8f3bca493926990f9f12b97970b3294051d /ext/hermes/Makefile.am | |
parent | 4506b4c38b4a74556e1134b2989334a118dcb3ca (diff) | |
download | gst-plugins-bad-4910efb9b7baced502f3f78cf54ba580603d4415.tar.gz gst-plugins-bad-4910efb9b7baced502f3f78cf54ba580603d4415.tar.bz2 gst-plugins-bad-4910efb9b7baced502f3f78cf54ba580603d4415.zip |
Duplicate the ext/hermes colorspace plugin, and remove Hermes code and GPL code. Fix for new caps negotiation. Rewr...
Original commit message from CVS:
* configure.ac:
* gst/colorspace/Makefile.am:
* gst/colorspace/gstcolorspace.c:
* gst/colorspace/gstcolorspace.h:
* gst/colorspace/yuv2rgb.c:
* gst/colorspace/yuv2rgb.h:
Duplicate the ext/hermes colorspace plugin, and remove Hermes
code and GPL code. Fix for new caps negotiation. Rewrite
much of the format handling code, and some of the conversion
code. Basically, rewrote almost everything. This element
handles I420, YV12 to RGB conversions.
* ext/hermes/Makefile.am:
* ext/hermes/gsthermescolorspace.c:
Rename colorspace to hermescolorspace. Fix negotiation issues.
Remove non-Hermes related code. This element handles lots of
RGB to RGB conversions, but no YUV.
* ext/hermes/gstcolorspace.c:
* ext/hermes/gstcolorspace.h:
* ext/hermes/rgb2yuv.c:
* ext/hermes/yuv2rgb.c:
* ext/hermes/yuv2rgb.h:
* ext/hermes/yuv2rgb_mmx16.s:
* ext/hermes/yuv2yuv.c:
* ext/hermes/yuv2yuv.h:
Remove old code.
Diffstat (limited to 'ext/hermes/Makefile.am')
-rw-r--r-- | ext/hermes/Makefile.am | 21 |
1 files changed, 5 insertions, 16 deletions
diff --git a/ext/hermes/Makefile.am b/ext/hermes/Makefile.am index f08b401b..452c2f56 100644 --- a/ext/hermes/Makefile.am +++ b/ext/hermes/Makefile.am @@ -1,21 +1,10 @@ -plugin_LTLIBRARIES = libgstcolorspace.la +plugin_LTLIBRARIES = libgsthermescolorspace.la -if HAVE_CPU_I386 -ARCHSRCS = yuv2rgb_mmx16.s -else -ARCHSRCS = -endif - -if USE_HERMES PLUGIN_EXTRA_LIBS = $(HERMES_LIBS) -else -PLUGIN_EXTRA_LIBS = -endif -libgstcolorspace_la_SOURCES = gstcolorspace.c yuv2yuv.c yuv2rgb.c rgb2yuv.c $(ARCHSRCS) -libgstcolorspace_la_CFLAGS = $(GST_CFLAGS) -libgstcolorspace_la_LIBADD = $(PLUGIN_EXTRA_LIBS) -libgstcolorspace_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) +libgsthermescolorspace_la_SOURCES = gsthermescolorspace.c +libgsthermescolorspace_la_CFLAGS = $(GST_CFLAGS) +libgsthermescolorspace_la_LIBADD = $(PLUGIN_EXTRA_LIBS) +libgsthermescolorspace_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -noinst_HEADERS = gstcolorspace.h yuv2rgb.h yuv2yuv.h |