| 691 | } |
| 692 | |
| 693 | static avifResult avifEncoderWriteContentLightLevelInformation(avifRWStream * outputStream, |
| 694 | const avifContentLightLevelInformationBox * clli) |
| 695 | { |
| 696 | AVIF_CHECKRES(avifRWStreamWriteBits(outputStream, clli->maxCLL, 16)); // unsigned int(16) max_content_light_level; |
| 697 | AVIF_CHECKRES(avifRWStreamWriteBits(outputStream, clli->maxPALL, 16)); // unsigned int(16) max_pic_average_light_level; |
| 698 | return AVIF_RESULT_OK; |
| 699 | } |
| 700 | |
| 701 | // Same as 'avifEncoderWriteColorProperties' but for properties related to High Dynamic Range only. |
| 702 | static avifResult avifEncoderWriteHDRProperties(avifRWStream * dedupStream, |
no test coverage detected