Sophie

Sophie

distrib > Mandriva > 2009.0 > i586 > by-pkgid > b5142d92999ef1aa949cc8e32fe0e600 > files > 5

kdegraphics4-4.2.4-0.2mdv2009.0.src.rpm

# 
# SVN commit 946120 by cgilles:
# 
# just checked : next Exiv2 release 0.18.1 will be able to restaure metadata 
# from RAW to DNG without to corrupt DNG file.
# This include Exif and Makernotes ! There is a huge work from exiv2 to 
# maintain makernotes content valid, since it depand 
# of other Exif tags. Note that Adobe DNG is not able to do it. This are a 
# lots of flame thread into Adobe forum about this 
# subject to said taht Adobe DNG convert generate uncomplete DNG file (especially 
# with Olumpus RAW files)
# To resume : this is want mean than digiKam RAW converter is better than 
# Adobe converter !!!
# 
# CCMAIL: digikam-devel@kde.org
# 

--- libs/libkexiv2/libkexiv2/kexiv2.cpp~	2009-02-26 15:15:47.000000000 +0100
+++ libs/libkexiv2/libkexiv2/kexiv2.cpp	2009-04-17 07:01:31.000000000 +0200
@@ -153,7 +153,14 @@
         return false;
 #endif
     }
-
+    else if (typeMime == QString("image/x-adobe-dng"))
+    {
+#if (EXIV2_TEST_VERSION(0,18,1))
+        return true;
+#else
+        return false;
+#endif
+    }
     return false;
 }