mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:24:57 +00:00
icc: Call video_full_range_flag_to_string()
This commit is contained in:
parent
405efc5936
commit
e99a4ba7c8
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
Add a link
Reference in a new issue