[FFmpeg-devel] [PATCH] ffprobe: add -codec: option

2025-06-10 Thread Maryla Ustarroz-Calonge via ffmpeg-devel
--- Begin Message --- opt_codec() is mostly copied over from ffplay.c Signed-off-by: Maryla Ustarroz-Calonge --- Changelog | 2 +- fftools/ffprobe.c | 114 +- 2 files changed, 103 insertions(+), 13 deletions(-) diff --git a/Changelog b/Chang

[FFmpeg-devel] [PATCH v2 2/2] avcodec/libaom: Add tests for HDR10+ metadata support

2025-06-04 Thread Maryla Ustarroz-Calonge via ffmpeg-devel
The new fate sample av1/metadata_hdr10_plus.ivf used in the second test is the output of the first test. Signed-off-by: Maryla Ustarroz-Calonge --- tests/Makefile | 1 + tests/fate-run.sh | 3 +- tests/fate/av1.mak | 11 +++

[FFmpeg-devel] [PATCH v2 1/2] avcodec/libaom: Add HDR10+ metadata support

2025-06-04 Thread Maryla Ustarroz-Calonge via ffmpeg-devel
Signed-off-by: Maryla Ustarroz-Calonge --- Changelog | 1 + libavcodec/libaomdec.c | 62 ++ libavcodec/libaomenc.c | 55 + libavcodec/version.h | 2 +- 4 files changed, 119 insertions(+), 1 deletion(-) d

[FFmpeg-devel] [PATCH 2/2] avcodec/libaom: Add tests for HDR10+ metadata support

2025-05-30 Thread Maryla Ustarroz-Calonge via ffmpeg-devel
The new fate sample av1/metadata_hdr10_plus.ivf used in the second test is the output of the first test. Signed-off-by: Maryla Ustarroz-Calonge --- tests/Makefile | 1 + tests/fate/av1.mak | 11 ++ tests/ref/fate/libaom-hdr10-plus | 52 +

[FFmpeg-devel] [PATCH 1/2] avcodec/libaom: Add HDR10+ metadata support

2025-05-30 Thread Maryla Ustarroz-Calonge via ffmpeg-devel
Signed-off-by: Maryla Ustarroz-Calonge --- libavcodec/libaomdec.c | 62 ++ libavcodec/libaomenc.c | 60 libavcodec/version.h | 2 +- 3 files changed, 123 insertions(+), 1 deletion(-) diff --git a/libavcodec/libao