From: Steinar H. Gunderson Date: Sun, 7 May 2017 19:48:39 +0000 (+0200) Subject: Correct FakeCapture color values. X-Git-Tag: 0.7.0~4 X-Git-Url: https://git.sesse.net/?p=bmusb;a=commitdiff_plain;h=838846a92ca196aa8d5c4169d4478d18b9486432 Correct FakeCapture color values. A bit embarrassing: I had put in Rec. 601 values instead of Rec. 709. --- 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;