mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-22 04:25:13 +00:00
icc: Call video_full_range_flag_to_string()
This commit is contained in:
parent
405efc5936
commit
e99a4ba7c8
Notes:
sideshowbarker
2024-07-17 09:49:48 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/e99a4ba7c8 Pull-request: https://github.com/SerenityOS/serenity/pull/17379 Reviewed-by: https://github.com/Zaggy1024 ✅ Reviewed-by: https://github.com/linusg
1 changed files with 2 additions and 1 deletions
|
@ -134,7 +134,8 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
Video::transfer_characteristics_to_string((Video::TransferCharacteristics)cicp.transfer_characteristics()));
|
||||
outln(" matrix coefficients: {} - {}", cicp.matrix_coefficients(),
|
||||
Video::matrix_coefficients_to_string((Video::MatrixCoefficients)cicp.matrix_coefficients()));
|
||||
outln(" video full range flag: {}", cicp.video_full_range_flag());
|
||||
outln(" video full range flag: {} - {}", cicp.video_full_range_flag(),
|
||||
Video::video_full_range_flag_to_string((Video::VideoFullRangeFlag)cicp.video_full_range_flag()));
|
||||
} else if (tag_data->type() == Gfx::ICC::CurveTagData::Type) {
|
||||
auto& curve = static_cast<Gfx::ICC::CurveTagData&>(*tag_data);
|
||||
if (curve.values().is_empty()) {
|
||||
|
|
Loading…
Add table
Reference in a new issue