diff options
author | David Schleef <ds@schleef.org> | 2004-04-09 00:01:44 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2004-04-09 00:01:44 +0000 |
commit | 4779591a6550aabc2630e02bafe9be02889d1bf3 (patch) | |
tree | 730a8b4dfa0ca77d5e6f74b1c6e49ec4f65d6c1d | |
parent | fe4fc5fa8be21f9ad351e342879e4a9292c9b725 (diff) | |
download | gst-plugins-bad-4779591a6550aabc2630e02bafe9be02889d1bf3.tar.gz gst-plugins-bad-4779591a6550aabc2630e02bafe9be02889d1bf3.tar.bz2 gst-plugins-bad-4779591a6550aabc2630e02bafe9be02889d1bf3.zip |
gst/colorspace/gstcolorspace.c: Don't advertise a conversion we don't support (bug #139532)
Original commit message from CVS:
* gst/colorspace/gstcolorspace.c: Don't advertise a conversion
we don't support (bug #139532)
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gst/colorspace/gstcolorspace.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2004-04-08 David Schleef <ds@schleef.org> + + * gst/colorspace/gstcolorspace.c: Don't advertise a conversion + we don't support (bug #139532) + 2004-04-07 Thomas Vander Stichele <thomas at apestaart dot org> * ext/mad/gstmad.c: (gst_mad_handle_event), diff --git a/gst/colorspace/gstcolorspace.c b/gst/colorspace/gstcolorspace.c index 754943c8..86294960 100644 --- a/gst/colorspace/gstcolorspace.c +++ b/gst/colorspace/gstcolorspace.c @@ -62,7 +62,7 @@ static GstStaticPadTemplate gst_colorspace_src_template = GST_PAD_SRC, GST_PAD_ALWAYS, GST_STATIC_CAPS (GST_VIDEO_CAPS_xRGB "; " - GST_VIDEO_CAPS_BGRx "; " GST_VIDEO_CAPS_RGB "; " GST_VIDEO_CAPS_RGB_16) + GST_VIDEO_CAPS_RGB "; " GST_VIDEO_CAPS_RGB_16) ); /* Stereo signals and args */ |