diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2005-08-14 16:21:00 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2005-08-14 16:21:00 +0000 |
commit | 96c88620c1ec72b350aa706e98b34affdd301fa8 (patch) | |
tree | cd380fd7944b3b937e8618016695965a7b140ff3 /gst | |
parent | 58e4556c7bc5e8c5689c25ecbd218fadafd6c22c (diff) | |
download | gst-plugins-bad-96c88620c1ec72b350aa706e98b34affdd301fa8.tar.gz gst-plugins-bad-96c88620c1ec72b350aa706e98b34affdd301fa8.tar.bz2 gst-plugins-bad-96c88620c1ec72b350aa706e98b34affdd301fa8.zip |
pound some sense in the colorspace elements
Original commit message from CVS:
pound some sense in the colorspace elements
Diffstat (limited to 'gst')
-rw-r--r-- | gst/colorspace/Makefile.am | 12 | ||||
-rw-r--r-- | gst/colorspace/gstcolorspace.c | 6 |
2 files changed, 8 insertions, 10 deletions
diff --git a/gst/colorspace/Makefile.am b/gst/colorspace/Makefile.am index 697c0a92..74d55a7b 100644 --- a/gst/colorspace/Makefile.am +++ b/gst/colorspace/Makefile.am @@ -1,5 +1,4 @@ - -plugin_LTLIBRARIES = libgstcolorspace.la +plugin_LTLIBRARIES = libgstyuvtorgbcolorspace.la if HAVE_CPU_I386 ARCHSRCS = yuv2rgb_mmx16.s @@ -7,10 +6,9 @@ else ARCHSRCS = endif -libgstcolorspace_la_SOURCES = gstcolorspace.c yuv2rgb.c -libgstcolorspace_la_CFLAGS = $(GST_CFLAGS) -libgstcolorspace_la_LIBADD = -libgstcolorspace_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) +libgstyuvtorgbcolorspace_la_SOURCES = gstcolorspace.c yuv2rgb.c +libgstyuvtorgbcolorspace_la_CFLAGS = $(GST_CFLAGS) +libgstyuvtorgbcolorspace_la_LIBADD = +libgstyuvtorgbcolorspace_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) noinst_HEADERS = yuv2rgb.h gstcolorspace.h - diff --git a/gst/colorspace/gstcolorspace.c b/gst/colorspace/gstcolorspace.c index 6b28d8fd..bbdf48b4 100644 --- a/gst/colorspace/gstcolorspace.c +++ b/gst/colorspace/gstcolorspace.c @@ -47,7 +47,7 @@ static GstColorspaceConverter gst_colorspace_converters[] = { static GstElementDetails colorspace_details = GST_ELEMENT_DETAILS ("Colorspace converter", "Filter/Converter/Video", - "Converts video from one colorspace to another", + "Converts video from YUV to RGB", "Wim Taymans <wim.taymans@chello.be>"); static GstStaticPadTemplate gst_colorspace_sink_template = @@ -625,6 +625,6 @@ plugin_init (GstPlugin * plugin) GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, GST_VERSION_MINOR, - "colorspace", - "internal colorspace converter", + "yuvtorgbcolorspace", + "YUV to RGB colorspace converter", plugin_init, VERSION, "LGPL", GST_PACKAGE, GST_ORIGIN) |