More consistent output for exposure program settings

This commit is contained in:
Andreas Huggel
2004-03-19 10:06:44 +00:00
parent f297a651f9
commit 95ff809f8f
2 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -20,7 +20,7 @@
*/
/*
File: canonmn.cpp
Version: $Name: $ $Revision: 1.3 $
Version: $Name: $ $Revision: 1.4 $
Author(s): Andreas Huggel (ahu) <ahuggel@gmx.net>
History: 18-Feb-04, ahu: created
07-Mar-04, ahu: isolated as a separate component
@@ -30,7 +30,7 @@
*/
// *****************************************************************************
#include "rcsid.hpp"
EXIV2_RCSID("@(#) $Name: $ $Revision: 1.3 $ $RCSfile: canonmn.cpp,v $")
EXIV2_RCSID("@(#) $Name: $ $Revision: 1.4 $ $RCSfile: canonmn.cpp,v $")
// *****************************************************************************
// included header files
@@ -297,8 +297,8 @@ namespace Exif {
switch (s) {
case 0: os << "Easy shooting"; break;
case 1: os << "Program"; break;
case 2: os << "Tv priority"; break;
case 3: os << "Av priority"; break;
case 2: os << "Shutter priority"; break;
case 3: os << "Aperture priority"; break;
case 4: os << "Manual"; break;
case 5: os << "A-DEP"; break;
default: os << "(" << s << ")"; break;
+4 -4
View File
@@ -20,7 +20,7 @@
*/
/*
File: fujimn.cpp
Version: $Name: $ $Revision: 1.1 $
Version: $Name: $ $Revision: 1.2 $
Author(s): Andreas Huggel (ahu) <ahuggel@gmx.net>
History: 18-Feb-04, ahu: created
07-Mar-04, ahu: isolated as a separate component
@@ -31,7 +31,7 @@
*/
// *****************************************************************************
#include "rcsid.hpp"
EXIV2_RCSID("@(#) $Name: $ $Revision: 1.1 $ $RCSfile: fujimn.cpp,v $")
EXIV2_RCSID("@(#) $Name: $ $Revision: 1.2 $ $RCSfile: fujimn.cpp,v $")
// *****************************************************************************
// included header files
@@ -215,8 +215,8 @@ namespace Exif {
case 4: os << "Sports"; break;
case 5: os << "Night"; break;
case 6: os << "Program"; break;
case 256: os << "Av priority"; break;
case 512: os << "Tv priority"; break;
case 256: os << "Aperture priority"; break;
case 512: os << "Shutter priority"; break;
case 768: os << "Manual"; break;
default: os << "(" << value << ")"; break;
}