Color conversion fixes and BT.2020 support (#723)

This commit is contained in:
Cameron Gutman
2023-01-07 21:28:47 -06:00
committed by GitHub
parent 7770b5f708
commit 77d3a7e2ab
8 changed files with 21 additions and 13 deletions

View File

@@ -588,6 +588,8 @@ void sws_t::set_colorspace(std::uint32_t colorspace, std::uint32_t color_range)
color_p = &video::colors[2];
break;
case 9: // SWS_CS_BT2020
color_p = &video::colors[4];
break;
default:
BOOST_LOG(warning) << "Colorspace: ["sv << colorspace << "] not yet supported: switching to default"sv;
color_p = &video::colors[0];