|
|
@ -1846,10 +1846,12 @@ namespace Exiv2 {
|
|
|
|
if (tag == 0x9286 && group == exifId && ti == undefined) {
|
|
|
|
if (tag == 0x9286 && group == exifId && ti == undefined) {
|
|
|
|
ti = comment;
|
|
|
|
ti = comment;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// http://dev.exiv2.org/boards/3/topics/1337
|
|
|
|
// http://dev.exiv2.org/boards/3/topics/1337 change unsignedByte to signedByte
|
|
|
|
// Exif.NikonAFT.AFFineTuneAdj should be signedByte
|
|
|
|
// Exif.NikonAFT.AFFineTuneAdj || Exif.Pentax.Temperature
|
|
|
|
if ( tag == 0x0002 && group == nikonAFTId && ti == unsignedByte ) {
|
|
|
|
if ( ti == Exiv2::unsignedByte ) {
|
|
|
|
ti = signedByte;
|
|
|
|
if ( (tag == 0x0002 && group == nikonAFTId ) || (tag == 0x0047 && group == pentaxId) ) {
|
|
|
|
|
|
|
|
ti = Exiv2::signedByte;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ti;
|
|
|
|
return ti;
|
|
|
|
}
|
|
|
|
}
|
|
|
|