After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 161675 - [ffmpegcolorspace] conversion of RGB depth=15 is wrong
[ffmpegcolorspace] conversion of RGB depth=15 is wrong
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins
git master
Other Linux
: Normal minor
: 0.8.8
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2004-12-19 03:15 UTC by David Schleef
Modified: 2005-01-15 17:58 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Patch fixing the bug (307 bytes, patch)
2005-01-15 16:33 UTC, Gergely Nagy
none Details | Review
Fixed patch (1006 bytes, patch)
2005-01-15 17:41 UTC, Gergely Nagy
none Details | Review

Description David Schleef 2004-12-19 03:15:38 UTC
Conversion from

video/x-raw-rgb, bpp=(int)16, endianness=(int)1234, depth=(int)15,
red_mask=(int)31744, green_mask=(int)992, blue_mask=(int)31, width=(int)320,
height=(int)240, framerate=(double)30, pixel-aspect-ratio=(fraction)1/1

to

video/x-raw-rgb, width=(int)320, height=(int)240, framerate=(double)30,
bpp=(int)32, depth=(int)24, red_mask=(int)65280, green_mask=(int)16711680,
blue_mask=(int)-16777216, endianness=(int)4321, pixel-aspect-ratio=(fraction)1/1

gives incorrect colors.  Tested with videotestsrc ! ffmpegcolorspace ! ximagesink.
Comment 1 Ronald Bultje 2004-12-19 10:07:36 UTC
http://bugzilla.gnome.org/show_bug.cgi?id=131974? I thought this was fixed now.
I can, however, reproduce it. Given that the pipeline in 131974 works for me, is
this a bug in videotestsrc?
Comment 2 David Schleef 2004-12-19 20:18:20 UTC
Unless someone has since changed videotestsrc, it was tested with a 15-bit X server.
Comment 3 Ronald Bultje 2004-12-23 12:20:04 UTC
Horseb~1.avi on Stephane's FTP triggers this bug as well.
Comment 4 Gergely Nagy 2005-01-15 16:33:33 UTC
Created attachment 36058 [details] [review]
Patch fixing the bug

I'm quite certain this patch is right, but my understanding of colorspaces is
pretty limited, so I may be wrong. However, it DOES fix the problem for me.

For now, only the ->RGB15 case was done, the <-RGB15 case might need a similar
change.
Comment 5 Ronald Bultje 2005-01-15 16:52:43 UTC
From the macro, it seems like this will break RGB16 code. Can you double check
that and make a separate macro if not?
Comment 6 Gergely Nagy 2005-01-15 17:41:03 UTC
Created attachment 36062 [details] [review]
Fixed patch

The previous patch did break RGB16.. Further inspection showed that RGB565 was
selected as the target colorspace instead of RGB555 (gst_ffmpeg_caps_to_pixfmt
only checked bpp which is 16, not depth which is 15).

Now, either bpp should be 15 (which is wrong, we use 16 bits to store it), or
depth should be checked too.

This patch adds code to gst_ffmpeg_caps_to_pixfmt does something like this:

if (bpp == 16) {
  pixfmt = RGB565;
  if (depth == 15)
    pixfmt == RGB555;
}

That should not break RGB16, and works on RGB15 (will need to test RGB16 some
way or the other.. any ideas?)
Comment 7 Ronald Bultje 2005-01-15 17:58:04 UTC
Oh, nicely noticed. Yes, this is indeed the problem. Applied, thanks.