[Mesa-dev] [PATCH 13/15] vl/csc: add a RGB to YUV CSC matrix

Leo Liu leo.liu at amd.com
Wed Sep 20 17:09:23 UTC 2017


---
 src/gallium/auxiliary/vl/vl_csc.c | 9 +++++++++
 src/gallium/auxiliary/vl/vl_csc.h | 3 ++-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/src/gallium/auxiliary/vl/vl_csc.c b/src/gallium/auxiliary/vl/vl_csc.c
index e4395d0..861eda6 100644
--- a/src/gallium/auxiliary/vl/vl_csc.c
+++ b/src/gallium/auxiliary/vl/vl_csc.c
@@ -131,6 +131,12 @@ static const vl_csc_matrix smpte240m =
    { 1.0f,  1.785f,  0.0f,   0.0f, }
 };
 
+static const vl_csc_matrix bt_709_rev  = {
+   { 0.183f,  0.614f,  0.062f, 0.0625f},
+   {-0.101f, -0.338f,  0.439f, 0.5f   },
+   { 0.439f, -0.399f, -0.040f, 0.5f   }
+};
+
 static const vl_csc_matrix identity =
 {
    { 1.0f, 0.0f, 0.0f, 0.0f, },
@@ -184,6 +190,9 @@ void vl_csc_get_matrix(enum VL_CSC_COLOR_STANDARD cs,
       case VL_CSC_COLOR_STANDARD_SMPTE_240M:
          cstd = &smpte240m;
          break;
+      case VL_CSC_COLOR_STANDARD_BT_709_REV:
+         memcpy(matrix, bt_709_rev, sizeof(vl_csc_matrix));
+         return;
       case VL_CSC_COLOR_STANDARD_IDENTITY:
       default:
          assert(cs == VL_CSC_COLOR_STANDARD_IDENTITY);
diff --git a/src/gallium/auxiliary/vl/vl_csc.h b/src/gallium/auxiliary/vl/vl_csc.h
index 4927470..8623e1b 100644
--- a/src/gallium/auxiliary/vl/vl_csc.h
+++ b/src/gallium/auxiliary/vl/vl_csc.h
@@ -45,7 +45,8 @@ enum VL_CSC_COLOR_STANDARD
    VL_CSC_COLOR_STANDARD_IDENTITY,
    VL_CSC_COLOR_STANDARD_BT_601,
    VL_CSC_COLOR_STANDARD_BT_709,
-   VL_CSC_COLOR_STANDARD_SMPTE_240M
+   VL_CSC_COLOR_STANDARD_SMPTE_240M,
+   VL_CSC_COLOR_STANDARD_BT_709_REV
 };
 
 extern const struct vl_procamp vl_default_procamp;
-- 
2.7.4



More information about the mesa-dev mailing list