From 649bd23b7a941c158b851cc6e41c9bfd05beb8cf Mon Sep 17 00:00:00 2001 From: Jerome Martinez Date: Wed, 1 Jul 2026 13:06:13 +0200 Subject: [PATCH] EXR: more permitted metadata fields --- Source/Lib/Uncompressed/EXR/EXR.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Lib/Uncompressed/EXR/EXR.cpp b/Source/Lib/Uncompressed/EXR/EXR.cpp index 735f3b78..08e3c367 100644 --- a/Source/Lib/Uncompressed/EXR/EXR.cpp +++ b/Source/Lib/Uncompressed/EXR/EXR.cpp @@ -489,6 +489,7 @@ void exr::ParseBuffer() CASE_S_STARTWITH("interim.") CASE_S("isoSpeed", item_type::Float) CASE_S("lensMake", item_type::String) + CASE_S("lensModel", item_type::String) CASE_S("lensSerialNumber", item_type::String) CASE_F("lineOrder", item_type::lineOrder) { @@ -537,6 +538,8 @@ void exr::ParseBuffer() Unsupported(unsupported::screenWindowWidth); } } + CASE_S("shoot_scene_clip_number", item_type::String) + CASE_F("shutterAngle", item_type::Float) {} CASE_S("storageMediaSerialNumber", item_type::String) CASE_S("timeCode", item_type::timecode) CASE_S("timecodeRate", item_type::Int)