From 0d4a3904fbd14f22b63dd1365672ee600a3b05d1 Mon Sep 17 00:00:00 2001 From: Hubert Figuière Date: Tue, 6 Feb 2024 20:07:29 -0500 Subject: dng: Added iPhone 14 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Hubert Figuière --- src/camera_ids.rs | 3 ++- src/dng.rs | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/camera_ids.rs b/src/camera_ids.rs index 1395ebe..e29c8d1 100644 --- a/src/camera_ids.rs +++ b/src/camera_ids.rs @@ -2,7 +2,7 @@ /* * libopenraw - camera_ids.rs * - * Copyright (C) 2022-2023 Hubert Figuière + * Copyright (C) 2022-2024 Hubert Figuière * * This library is free software: you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -942,6 +942,7 @@ pub mod apple { pub const IPHONE_XS: u16 = 5; pub const IPHONE_12_PRO: u16 = 6; pub const IPHONE_13_PRO: u16 = 7; + pub const IPHONE_14: u16 = 8; } /// Sigma diff --git a/src/dng.rs b/src/dng.rs index 78a2c3b..df2e213 100644 --- a/src/dng.rs +++ b/src/dng.rs @@ -2,7 +2,7 @@ /* * libopenraw - dng.rs * - * Copyright (C) 2022-2023 Hubert Figuière + * Copyright (C) 2022-2024 Hubert Figuière * * This library is free software: you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -131,6 +131,7 @@ lazy_static::lazy_static! { ( "iPhone 8", TypeId(vendor::APPLE, apple::IPHONE_8) ), ( "iPhone 12 Pro", TypeId(vendor::APPLE, apple::IPHONE_12_PRO) ), ( "iPhone 13 Pro", TypeId(vendor::APPLE, apple::IPHONE_13_PRO) ), + ( "iPhone 14", TypeId(vendor::APPLE, apple::IPHONE_14) ), ( "iPhone SE", TypeId(vendor::APPLE, apple::IPHONE_SE) ), ( "iPhone XS", TypeId(vendor::APPLE, apple::IPHONE_XS) ), ( "Blackmagic Pocket Cinema Camera", TypeId(vendor::BLACKMAGIC, -- cgit v1.2.3