From ffaa5926c6f35f0241b1cd98780523f2772dd950 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Tue, 7 Oct 2003 18:52:16 +0000 Subject: [PATCH] Fix endianness problems in caps. Fixes #124006 Original commit message from CVS: Fix endianness problems in caps. Fixes #124006 --- gst/goom/gstgoom.c | 10 +++++----- gst/monoscope/gstmonoscope.c | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/gst/goom/gstgoom.c b/gst/goom/gstgoom.c index bbf49bb..f571fc3 100644 --- a/gst/goom/gstgoom.c +++ b/gst/goom/gstgoom.c @@ -244,14 +244,14 @@ gst_goom_negotiate_default (GstGOOM *goom) caps = GST_CAPS_NEW ( "goomsrc", - "video/raw", + "video/x-raw-rgb", "format", GST_PROPS_FOURCC (GST_STR_FOURCC ("RGB ")), "bpp", GST_PROPS_INT (32), "depth", GST_PROPS_INT (32), - "endianness", GST_PROPS_INT (G_BYTE_ORDER), - "red_mask", GST_PROPS_INT (0xff0000), - "green_mask", GST_PROPS_INT (0x00ff00), - "blue_mask", GST_PROPS_INT (0x0000ff), + "endianness", GST_PROPS_INT (G_BIG_ENDIAN), + "red_mask", GST_PROPS_INT (R_MASK_32), + "green_mask", GST_PROPS_INT (G_MASK_32), + "blue_mask", GST_PROPS_INT (B_MASK_32), "width", GST_PROPS_INT (goom->width), "height", GST_PROPS_INT (goom->height), "framerate", GST_PROPS_FLOAT (goom->fps) diff --git a/gst/monoscope/gstmonoscope.c b/gst/monoscope/gstmonoscope.c index 9eb8bb4..13a6099 100644 --- a/gst/monoscope/gstmonoscope.c +++ b/gst/monoscope/gstmonoscope.c @@ -93,7 +93,7 @@ GST_PAD_TEMPLATE_FACTORY (src_template, "video/x-raw-rgb", "bpp", GST_PROPS_INT (32), "depth", GST_PROPS_INT (32), - "endianness", GST_PROPS_INT (G_BYTE_ORDER), + "endianness", GST_PROPS_INT (G_BIG_ENDIAN), "red_mask", GST_PROPS_INT (R_MASK_32), "green_mask", GST_PROPS_INT (G_MASK_32), "blue_mask", GST_PROPS_INT (B_MASK_32), @@ -215,13 +215,13 @@ gst_monoscope_negotiate (GstMonoscope *monoscope) "video/x-raw-rgb", "bpp", GST_PROPS_INT (32), "depth", GST_PROPS_INT (32), - "endianness", GST_PROPS_INT (G_BYTE_ORDER), + "endianness", GST_PROPS_INT (G_BIG_ENDIAN), "red_mask", GST_PROPS_INT (R_MASK_32), "green_mask", GST_PROPS_INT (G_MASK_32), "blue_mask", GST_PROPS_INT (B_MASK_32), "width", GST_PROPS_INT (monoscope->width), "height", GST_PROPS_INT (monoscope->height), - "framerate", GST_PROPS_FLOAT (monoscope->fps) + "framerate", GST_PROPS_FLOAT (monoscope->fps) ); return gst_pad_try_set_caps (monoscope->srcpad, caps); -- 2.7.4