summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHubert Figuière <hub@figuiere.net>2024-02-06 20:07:29 -0500
committerHubert Figuière <hub@figuiere.net>2024-02-06 20:07:29 -0500
commit0d4a3904fbd14f22b63dd1365672ee600a3b05d1 (patch)
tree6d05a3b7b0ff5e6de4fcf4bbff5cf8e25a37acaf
parentb4bde3744d6a188b9eeaa759631735c48837ef16 (diff)
dng: Added iPhone 14
Signed-off-by: Hubert Figuière <hub@figuiere.net>
-rw-r--r--src/camera_ids.rs3
-rw-r--r--src/dng.rs3
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,