[Bug 743716] A bug in 'videomaterial.cpp' and 'openglsurfacepainter.cpp' causes incorrect colors

GStreamer (GNOME Bugzilla) bugzilla at gnome.org
Mon Sep 26 06:09:27 UTC 2016


https://bugzilla.gnome.org/show_bug.cgi?id=743716

Vadim Kuznecov <vk6677 at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vk6677 at gmail.com

--- Comment #2 from Vadim Kuznecov <vk6677 at gmail.com> ---
Not correct matrix (BT709)

http://www.mathworks.com/help/vision/ref/colorspaceconversion.html
Use conversion specified by = Rec. 709 (HDTV)
1.16438356        0       1.79274107
1.16438356  -0.21324861  -0.53290933
1.16438356   2.11240179       0



Correct matrix:
case GST_VIDEO_COLOR_MATRIX_BT709:
     m_colorMatrix *= QMatrix4x4(
                 1.164,  0.000,  1.793, -0.969,
                 1.164, -0.213, -0.533,  0.300,
                 1.164,  2.112,  0.000, -1.129,
                 0.0,    0.000,  0.000,  1.0000);
     break;

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.


More information about the gstreamer-bugs mailing list