| 504 | } |
| 505 | |
| 506 | static void print_displaymatrix(AVTextFormatContext *tfc, const int32_t matrix[9]) |
| 507 | { |
| 508 | double rotation = av_display_rotation_get(matrix); |
| 509 | if (isnan(rotation)) |
| 510 | rotation = 0; |
| 511 | print_integers(tfc, "displaymatrix", matrix, 9, " %11d", 3, 4, 1); |
| 512 | print_int("rotation", rotation); |
| 513 | } |
| 514 | |
| 515 | static void print_mastering_display_metadata(AVTextFormatContext *tfc, |
| 516 | const AVMasteringDisplayMetadata *metadata) |
no test coverage detected