[Webkit-unassigned] [Bug 29953] New: [GT] video sink pad template colorspace is wrong

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Oct 1 00:12:12 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=29953

           Summary: [GT] video sink pad template colorspace is wrong
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: WebKit Gtk
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: pnormand at igalia.com


As pointed out by slomo, our sink suports xRGB and BGRx always. Cairo doesn't.
CAIRO_FORMAT_RGB24 is xRGB on big endian machines, and BGRx on little
endian.

So this should really be
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
  GST_VIDEO_CAPS_BGRx
#else
  GST_VIDEO_CAPS_xRGB
#endif

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list