From 838846a92ca196aa8d5c4169d4478d18b9486432 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 7 May 2017 21:48:39 +0200 Subject: [PATCH] Correct FakeCapture color values. A bit embarrassing: I had put in Rec. 601 values instead of Rec. 709. --- fake_capture.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fake_capture.cpp b/fake_capture.cpp index 5f4f5da..9740b64 100644 --- a/fake_capture.cpp +++ b/fake_capture.cpp @@ -23,9 +23,9 @@ // Pure-color inputs: Red, green, blue, white. #define NUM_COLORS 4 -constexpr uint8_t ys[NUM_COLORS] = { 81, 145, 41, 235 }; -constexpr uint8_t cbs[NUM_COLORS] = { 90, 54, 240, 128 }; -constexpr uint8_t crs[NUM_COLORS] = { 240, 34, 110, 128 }; +constexpr uint8_t ys[NUM_COLORS] = { 63, 173, 32, 235 }; +constexpr uint8_t cbs[NUM_COLORS] = { 102, 42, 240, 128 }; +constexpr uint8_t crs[NUM_COLORS] = { 240, 26, 118, 128 }; using namespace std; using namespace std::chrono; -- 2.39.2