mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 03:31:05 +00:00
[MOVED FROM BAD 19/68] pound some sense in the colorspace elements
Original commit message from CVS: pound some sense in the colorspace elements
This commit is contained in:
parent
04c7b716fd
commit
97d8584305
2 changed files with 8 additions and 10 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue