[graphics/libkdcraw] src: Add Canon CR3 file format support
Albert Astals Cid <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit b5ed7c4e6eaefd0e29e018a5ae562786f2e0c15f by Albert Astals Cid, on behalf of Dmytro Melomanych.
Committed on 18/08/2026 at 22:25.
Pushed by aacid into branch 'master'.
Add Canon CR3 file format support
M +4 -2 src/rawfiles.h
https://invent.kde.org/graphics/libkdcraw/-/commit/b5ed7c4e6eaefd0e29e018a5ae562786f2e0c15f
diff --git a/src/rawfiles.h b/src/rawfiles.h
index 27a0622..b73cc8f 100644
--- a/src/rawfiles.h
+++ b/src/rawfiles.h
@@ -77,9 +77,11 @@ static const char raw_file_extentions[] =
"*.ptx " // Pentax Digital Camera Raw Image Format.
"*.cap " // Phase One Digital Camera Raw Image Format.
"*.iiq " // Phase One Digital Camera Raw Image Format.
- "*.rwz "; // Rawzor Digital Camera Raw Image Format.
+ "*.rwz " // Rawzor Digital Camera Raw Image Format.
+// NOTE: VERSION 6
+ "*.cr3 "; // Canon Digital Camera RAW Image Format version 3.0.
// increment this number whenever you change the above string
-static const int raw_file_extensions_version = 5;
+static const int raw_file_extensions_version = 6;
#endif // RAW_FILES_H