v0.27.3
HumanDynamo 15 years ago
parent 1b594d6fe7
commit 756886d9b0

@ -199,6 +199,14 @@ namespace Exiv2 {
{ 2, N_("Advanced") } { 2, N_("Advanced") }
}; };
//! Lookup table to translate Sony WB values to readable labels
extern const TagDetails sonyWhiteBalance[] = {
{ 0, N_("Auto") },
{ 4, N_("Manual") },
{ 5, N_("Daylight") },
{ 14, N_("Incandescent") }
};
// Sony MakerNote Tag Info // Sony MakerNote Tag Info
const TagInfo SonyMakerNote::tagInfo_[] = { const TagInfo SonyMakerNote::tagInfo_[] = {
@ -328,11 +336,9 @@ namespace Exiv2 {
TagInfo(0xb052, "IntelligentAuto", N_("Intelligent Auto"), TagInfo(0xb052, "IntelligentAuto", N_("Intelligent Auto"),
N_("Intelligent Auto"), N_("Intelligent Auto"),
sonyIfdId, makerTags, unsignedShort, EXV_PRINT_TAG(sonyIntelligentAuto)), sonyIfdId, makerTags, unsignedShort, EXV_PRINT_TAG(sonyIntelligentAuto)),
// TODO
TagInfo(0xb054, "WhiteBalance", N_("White Balance"), TagInfo(0xb054, "WhiteBalance", N_("White Balance"),
N_("White Balance"), N_("White Balance"),
sonyIfdId, makerTags, unsignedShort, printValue), sonyIfdId, makerTags, unsignedShort, EXV_PRINT_TAG(sonyWhiteBalance)),
// -------------------------------------------------------------------------------- // --------------------------------------------------------------------------------

Loading…
Cancel
Save