Update VIDEO_CS_DEFAULT to mean 709 instead of 601

Consistent with modified default UI setting.
This commit is contained in:
jpark37
2020-09-06 16:19:20 -07:00
parent bfa0224399
commit b6afaceeae
16 changed files with 83 additions and 58 deletions

View File

@@ -192,7 +192,7 @@ void DeckLinkDeviceInstance::SetupVideoFormat(DeckLinkDeviceMode *mode_)
#ifdef LOG_SETUP_VIDEO_FORMAT
LOG(LOG_INFO, "Setup video format: %s, %s, %s",
pixelFormat == bmdFormat8BitYUV ? "YUV" : "RGB",
activeColorSpace == VIDEO_CS_709 ? "BT.709" : "BT.601",
activeColorSpace == VIDEO_CS_601 ? "BT.601" : "BT.709",
colorRange == VIDEO_RANGE_FULL ? "full" : "limited");
#endif
}