summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Otte <otte@gnome.org>2003-11-24 23:21:13 +0000
committerBenjamin Otte <otte@gnome.org>2003-11-24 23:21:13 +0000
commit36c6d7eec3d7e71f36e534e81e3fea1297129209 (patch)
tree53dd2c7b63ae396aa6549bf1fa64916b9d24a604
parentfe7d4f55676ce70510ca3b9ff30c2239c5762b39 (diff)
downloadgstreamer-plugins-bad-36c6d7eec3d7e71f36e534e81e3fea1297129209.tar.gz
ooops, those files shouldn't have been committed in the latest commit.
Original commit message from CVS: ooops, those files shouldn't have been committed in the latest commit.
-rw-r--r--ext/hermes/gstcolorspace.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/hermes/gstcolorspace.c b/ext/hermes/gstcolorspace.c
index ac63fe4d2..de1bd88f7 100644
--- a/ext/hermes/gstcolorspace.c
+++ b/ext/hermes/gstcolorspace.c
@@ -131,9 +131,6 @@ colorspace_setup_converter (GstColorspace *space, GstCaps *from_caps, GstCaps *t
gst_caps_get_int (from_caps, "red_mask", &space->source.r);
gst_caps_get_int (from_caps, "green_mask", &space->source.g);
gst_caps_get_int (from_caps, "blue_mask", &space->source.b);
- space->source.r = GINT_TO_BE (space->source.r);
- space->source.g = GINT_TO_BE (space->source.g);
- space->source.b = GINT_TO_BE (space->source.b);
space->source.a = 0;
space->srcbpp = space->source.bits = from_bpp;
space->source.indexed = 0;
@@ -147,9 +144,6 @@ colorspace_setup_converter (GstColorspace *space, GstCaps *from_caps, GstCaps *t
gst_caps_get_int (to_caps, "red_mask", &space->dest.r);
gst_caps_get_int (to_caps, "green_mask", &space->dest.g);
gst_caps_get_int (to_caps, "blue_mask", &space->dest.b);
- space->dest.r = 0x0000FF; //GINT_TO_BE (space->dest.r);
- space->dest.g = 0x00FF00; //GINT_TO_BE (space->dest.g);
- space->dest.b = 0xFF0000; //GINT_TO_BE (space->dest.b);
space->dest.a = 0;
space->destbpp = space->dest.bits = to_bpp;
space->dest.indexed = 0;