mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-08-09 09:32:43 +00:00
Test all 5 public functions: av_mastering_display_metadata_alloc,
av_mastering_display_metadata_alloc_size, the create_side_data
variant, av_content_light_metadata_alloc, and its create_side_data
variant. Verifies the {0,1} rational defaults set by get_defaults(),
write/read-back of HDR metadata fields, frame side data attachment
for both mastering display and content light metadata, and OOM
paths via av_max_alloc.
Coverage for libavutil/mastering_display_metadata.c: 86.49% -> 100.00%
161 lines
5.9 KiB
C
161 lines
5.9 KiB
C
/*
|
|
* This file is part of FFmpeg.
|
|
*
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include <limits.h>
|
|
#include <stdio.h>
|
|
|
|
#include "libavutil/frame.h"
|
|
#include "libavutil/mastering_display_metadata.h"
|
|
#include "libavutil/mem.h"
|
|
|
|
int main(void)
|
|
{
|
|
AVMasteringDisplayMetadata *mdm;
|
|
AVContentLightMetadata *clm;
|
|
AVFrame *frame;
|
|
size_t size;
|
|
|
|
/* av_mastering_display_metadata_alloc */
|
|
printf("Testing av_mastering_display_metadata_alloc()\n");
|
|
mdm = av_mastering_display_metadata_alloc();
|
|
if (mdm) {
|
|
/* verify defaults: all rationals should be {0, 1} */
|
|
printf("alloc: OK\n");
|
|
printf("defaults: primaries[0][0]=%d/%d, white_point[0]=%d/%d\n",
|
|
mdm->display_primaries[0][0].num,
|
|
mdm->display_primaries[0][0].den,
|
|
mdm->white_point[0].num, mdm->white_point[0].den);
|
|
printf("defaults: min_lum=%d/%d, max_lum=%d/%d\n",
|
|
mdm->min_luminance.num, mdm->min_luminance.den,
|
|
mdm->max_luminance.num, mdm->max_luminance.den);
|
|
printf("defaults: has_primaries=%d, has_luminance=%d\n",
|
|
mdm->has_primaries, mdm->has_luminance);
|
|
av_free(mdm);
|
|
} else {
|
|
printf("alloc: FAIL\n");
|
|
}
|
|
|
|
/* av_mastering_display_metadata_alloc_size */
|
|
printf("\nTesting av_mastering_display_metadata_alloc_size()\n");
|
|
mdm = av_mastering_display_metadata_alloc_size(&size);
|
|
if (mdm) {
|
|
printf("alloc_size: OK, size>0=%s\n", size > 0 ? "yes" : "no");
|
|
printf("defaults: primaries[0][0]=%d/%d\n",
|
|
mdm->display_primaries[0][0].num,
|
|
mdm->display_primaries[0][0].den);
|
|
av_free(mdm);
|
|
} else {
|
|
printf("alloc_size: FAIL\n");
|
|
}
|
|
|
|
/* write and read back */
|
|
printf("\nTesting write/read back\n");
|
|
mdm = av_mastering_display_metadata_alloc();
|
|
if (mdm) {
|
|
mdm->display_primaries[0][0] = (AVRational){ 34000, 50000 };
|
|
mdm->display_primaries[0][1] = (AVRational){ 16000, 50000 };
|
|
mdm->white_point[0] = (AVRational){ 15635, 50000 };
|
|
mdm->white_point[1] = (AVRational){ 16450, 50000 };
|
|
mdm->min_luminance = (AVRational){ 50, 10000 };
|
|
mdm->max_luminance = (AVRational){ 10000000, 10000 };
|
|
mdm->has_primaries = 1;
|
|
mdm->has_luminance = 1;
|
|
printf("primaries[0]=(%d/%d, %d/%d)\n",
|
|
mdm->display_primaries[0][0].num,
|
|
mdm->display_primaries[0][0].den,
|
|
mdm->display_primaries[0][1].num,
|
|
mdm->display_primaries[0][1].den);
|
|
printf("white_point=(%d/%d, %d/%d)\n",
|
|
mdm->white_point[0].num, mdm->white_point[0].den,
|
|
mdm->white_point[1].num, mdm->white_point[1].den);
|
|
printf("luminance: min=%d/%d max=%d/%d\n",
|
|
mdm->min_luminance.num, mdm->min_luminance.den,
|
|
mdm->max_luminance.num, mdm->max_luminance.den);
|
|
av_free(mdm);
|
|
}
|
|
|
|
/* av_mastering_display_metadata_create_side_data */
|
|
printf("\nTesting av_mastering_display_metadata_create_side_data()\n");
|
|
frame = av_frame_alloc();
|
|
if (frame) {
|
|
mdm = av_mastering_display_metadata_create_side_data(frame);
|
|
if (mdm) {
|
|
printf("side_data: OK, defaults: primaries[0][0]=%d/%d\n",
|
|
mdm->display_primaries[0][0].num,
|
|
mdm->display_primaries[0][0].den);
|
|
} else {
|
|
printf("side_data: FAIL\n");
|
|
}
|
|
av_frame_free(&frame);
|
|
}
|
|
|
|
/* av_content_light_metadata_alloc */
|
|
printf("\nTesting av_content_light_metadata_alloc()\n");
|
|
clm = av_content_light_metadata_alloc(&size);
|
|
if (clm) {
|
|
printf("alloc: OK, size>0=%s, MaxCLL=%u, MaxFALL=%u\n",
|
|
size > 0 ? "yes" : "no", clm->MaxCLL, clm->MaxFALL);
|
|
clm->MaxCLL = 1000;
|
|
clm->MaxFALL = 400;
|
|
printf("write: MaxCLL=%u, MaxFALL=%u\n", clm->MaxCLL, clm->MaxFALL);
|
|
av_free(clm);
|
|
} else {
|
|
printf("alloc: FAIL\n");
|
|
}
|
|
|
|
/* av_content_light_metadata_create_side_data */
|
|
printf("\nTesting av_content_light_metadata_create_side_data()\n");
|
|
frame = av_frame_alloc();
|
|
if (frame) {
|
|
clm = av_content_light_metadata_create_side_data(frame);
|
|
if (clm) {
|
|
printf("side_data: OK, MaxCLL=%u\n", clm->MaxCLL);
|
|
} else {
|
|
printf("side_data: FAIL\n");
|
|
}
|
|
av_frame_free(&frame);
|
|
}
|
|
|
|
/* OOM paths via av_max_alloc */
|
|
printf("\nTesting OOM paths\n");
|
|
av_max_alloc(1);
|
|
mdm = av_mastering_display_metadata_alloc();
|
|
printf("mastering alloc OOM: %s\n", mdm ? "FAIL" : "OK");
|
|
av_free(mdm);
|
|
mdm = av_mastering_display_metadata_alloc_size(&size);
|
|
printf("mastering alloc_size OOM: %s\n", mdm ? "FAIL" : "OK");
|
|
av_free(mdm);
|
|
clm = av_content_light_metadata_alloc(&size);
|
|
printf("content alloc OOM: %s\n", clm ? "FAIL" : "OK");
|
|
av_free(clm);
|
|
av_max_alloc(INT_MAX);
|
|
|
|
frame = av_frame_alloc();
|
|
if (frame) {
|
|
av_max_alloc(1);
|
|
mdm = av_mastering_display_metadata_create_side_data(frame);
|
|
printf("mastering side_data OOM: %s\n", mdm ? "FAIL" : "OK");
|
|
clm = av_content_light_metadata_create_side_data(frame);
|
|
printf("content side_data OOM: %s\n", clm ? "FAIL" : "OK");
|
|
av_max_alloc(INT_MAX);
|
|
av_frame_free(&frame);
|
|
}
|
|
|
|
return 0;
|
|
}
|