exiftool_vendored 12.57.0 → 12.58.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/Changes +14 -0
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +2 -2
- data/bin/config_files/rotate_regions.config +1 -1
- data/bin/exiftool +25 -21
- data/bin/lib/Image/ExifTool/AIFF.pm +2 -2
- data/bin/lib/Image/ExifTool/APE.pm +2 -2
- data/bin/lib/Image/ExifTool/BuildTagLookup.pm +13 -14
- data/bin/lib/Image/ExifTool/Canon.pm +26 -6
- data/bin/lib/Image/ExifTool/DJI.pm +28 -2
- data/bin/lib/Image/ExifTool/Exif.pm +24 -5
- data/bin/lib/Image/ExifTool/FlashPix.pm +2 -2
- data/bin/lib/Image/ExifTool/FujiFilm.pm +1 -0
- data/bin/lib/Image/ExifTool/JPEG.pm +14 -2
- data/bin/lib/Image/ExifTool/LNK.pm +5 -4
- data/bin/lib/Image/ExifTool/MPEG.pm +2 -2
- data/bin/lib/Image/ExifTool/MakerNotes.pm +2 -2
- data/bin/lib/Image/ExifTool/Minolta.pm +6 -7
- data/bin/lib/Image/ExifTool/Nikon.pm +385 -110
- data/bin/lib/Image/ExifTool/Pentax.pm +8 -5
- data/bin/lib/Image/ExifTool/Photoshop.pm +3 -3
- data/bin/lib/Image/ExifTool/QuickTime.pm +5 -5
- data/bin/lib/Image/ExifTool/QuickTimeStream.pl +1 -1
- data/bin/lib/Image/ExifTool/README +8 -0
- data/bin/lib/Image/ExifTool/RIFF.pm +3 -3
- data/bin/lib/Image/ExifTool/Rawzor.pm +2 -2
- data/bin/lib/Image/ExifTool/Sigma.pm +4 -4
- data/bin/lib/Image/ExifTool/Sony.pm +23 -1
- data/bin/lib/Image/ExifTool/TagLookup.pm +4457 -4441
- data/bin/lib/Image/ExifTool/TagNames.pod +76 -12
- data/bin/lib/Image/ExifTool/Validate.pm +5 -5
- data/bin/lib/Image/ExifTool/WriteExif.pl +42 -0
- data/bin/lib/Image/ExifTool/Writer.pl +3 -1
- data/bin/lib/Image/ExifTool/XMP.pm +2 -2
- data/bin/lib/Image/ExifTool.pm +57 -12
- data/bin/perl-Image-ExifTool.spec +1 -1
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +2 -2
@@ -58,7 +58,7 @@ use Image::ExifTool::Exif;
|
|
58
58
|
use Image::ExifTool::GPS;
|
59
59
|
use Image::ExifTool::HP;
|
60
60
|
|
61
|
-
$VERSION = '3.
|
61
|
+
$VERSION = '3.42';
|
62
62
|
|
63
63
|
sub CryptShutterCount($$);
|
64
64
|
sub PrintFilter($$$);
|
@@ -72,10 +72,7 @@ sub DecodeAFPoints($$$$;$);
|
|
72
72
|
Notes => q{
|
73
73
|
The first number gives the series of the lens, and the second identifies the
|
74
74
|
lens model. Note that newer series numbers may not always be properly
|
75
|
-
identified by cameras running older firmware versions.
|
76
|
-
been added to differentiate lenses which would otherwise have the same
|
77
|
-
LensType, and are used by the Composite LensID tag when attempting to
|
78
|
-
identify the specific lens model.
|
75
|
+
identified by cameras running older firmware versions.
|
79
76
|
},
|
80
77
|
OTHER => sub {
|
81
78
|
my ($val, $inv, $conv) = @_;
|
@@ -4081,6 +4078,7 @@ my %binaryDataAttrs = (
|
|
4081
4078
|
ValueConvInv => '$val=~s/\.\d+$//; $val',
|
4082
4079
|
PrintConv => \%pentaxLensTypes,
|
4083
4080
|
SeparateTable => 1,
|
4081
|
+
PrintInt => 1,
|
4084
4082
|
},
|
4085
4083
|
3 => { #PH
|
4086
4084
|
Name => 'ExtenderStatus',
|
@@ -4104,6 +4102,7 @@ my %binaryDataAttrs = (
|
|
4104
4102
|
ValueConvInv => '$val=~s/\.\d+$//; $val',
|
4105
4103
|
PrintConv => \%pentaxLensTypes,
|
4106
4104
|
SeparateTable => 1,
|
4105
|
+
PrintInt => 1,
|
4107
4106
|
},
|
4108
4107
|
3 => {
|
4109
4108
|
Name => 'LensData',
|
@@ -4139,6 +4138,7 @@ my %binaryDataAttrs = (
|
|
4139
4138
|
},
|
4140
4139
|
PrintConv => \%pentaxLensTypes,
|
4141
4140
|
SeparateTable => 1,
|
4141
|
+
PrintInt => 1,
|
4142
4142
|
},
|
4143
4143
|
4 => {
|
4144
4144
|
Name => 'LensData',
|
@@ -4174,6 +4174,7 @@ my %binaryDataAttrs = (
|
|
4174
4174
|
},
|
4175
4175
|
PrintConv => \%pentaxLensTypes,
|
4176
4176
|
SeparateTable => 1,
|
4177
|
+
PrintInt => 1,
|
4177
4178
|
},
|
4178
4179
|
13 => {
|
4179
4180
|
Name => 'LensData',
|
@@ -4209,6 +4210,7 @@ my %binaryDataAttrs = (
|
|
4209
4210
|
},
|
4210
4211
|
PrintConv => \%pentaxLensTypes,
|
4211
4212
|
SeparateTable => 1,
|
4213
|
+
PrintInt => 1,
|
4212
4214
|
},
|
4213
4215
|
12 => {
|
4214
4216
|
Name => 'LensData',
|
@@ -4245,6 +4247,7 @@ my %binaryDataAttrs = (
|
|
4245
4247
|
},
|
4246
4248
|
PrintConv => \%pentaxLensTypes,
|
4247
4249
|
SeparateTable => 1,
|
4250
|
+
PrintInt => 1,
|
4248
4251
|
},
|
4249
4252
|
15 => {
|
4250
4253
|
Name => 'LensData',
|
@@ -28,7 +28,7 @@ use strict;
|
|
28
28
|
use vars qw($VERSION $AUTOLOAD $iptcDigestInfo %printFlags);
|
29
29
|
use Image::ExifTool qw(:DataAccess :Utils);
|
30
30
|
|
31
|
-
$VERSION = '1.
|
31
|
+
$VERSION = '1.69';
|
32
32
|
|
33
33
|
sub ProcessPhotoshop($$$);
|
34
34
|
sub WritePhotoshop($$$);
|
@@ -74,7 +74,7 @@ my %thumbnailInfo = (
|
|
74
74
|
my @tags = qw{ImageWidth ImageHeight FileType};
|
75
75
|
my $info = $et->ImageInfo(\$val, @tags);
|
76
76
|
my ($w, $h, $type) = @$info{@tags};
|
77
|
-
$w and $h and $type eq 'JPEG' or warn("Not a valid JPEG image\n"), return undef;
|
77
|
+
$w and $h and $type and $type eq 'JPEG' or warn("Not a valid JPEG image\n"), return undef;
|
78
78
|
my $wbytes = int(($w * 24 + 31) / 32) * 4;
|
79
79
|
return pack('N6n2', 1, $w, $h, $wbytes, $wbytes * $h, length($val), 24, 1) . $val;
|
80
80
|
},
|
@@ -706,7 +706,7 @@ sub ProcessLayersAndMask($$$)
|
|
706
706
|
local $_;
|
707
707
|
my ($et, $dirInfo, $tagTablePtr) = @_;
|
708
708
|
my $raf = $$dirInfo{RAF};
|
709
|
-
my $fileType = $$et{
|
709
|
+
my $fileType = $$et{FileType};
|
710
710
|
my $data;
|
711
711
|
|
712
712
|
return 0 unless $fileType eq 'PSD' or $fileType eq 'PSB'; # (no layer section in CS1 files)
|
@@ -47,7 +47,7 @@ use Image::ExifTool qw(:DataAccess :Utils);
|
|
47
47
|
use Image::ExifTool::Exif;
|
48
48
|
use Image::ExifTool::GPS;
|
49
49
|
|
50
|
-
$VERSION = '2.
|
50
|
+
$VERSION = '2.84';
|
51
51
|
|
52
52
|
sub ProcessMOV($$;$);
|
53
53
|
sub ProcessKeys($$$);
|
@@ -1976,7 +1976,7 @@ my %eeBox2 = (
|
|
1976
1976
|
Name => 'SanyoMOV',
|
1977
1977
|
Condition => q{
|
1978
1978
|
$$valPt =~ /^SANYO DIGITAL CAMERA\0/ and
|
1979
|
-
|
1979
|
+
$$self{FileType} eq "MOV"
|
1980
1980
|
},
|
1981
1981
|
SubDirectory => {
|
1982
1982
|
TagTable => 'Image::ExifTool::Sanyo::MOV',
|
@@ -1987,7 +1987,7 @@ my %eeBox2 = (
|
|
1987
1987
|
Name => 'SanyoMP4',
|
1988
1988
|
Condition => q{
|
1989
1989
|
$$valPt =~ /^SANYO DIGITAL CAMERA\0/ and
|
1990
|
-
|
1990
|
+
$$self{FileType} eq "MP4"
|
1991
1991
|
},
|
1992
1992
|
SubDirectory => {
|
1993
1993
|
TagTable => 'Image::ExifTool::Sanyo::MP4',
|
@@ -7161,7 +7161,7 @@ my %eeBox2 = (
|
|
7161
7161
|
$$self{AudioFormat} = $val;
|
7162
7162
|
return undef unless $val =~ /^[\w ]{4}$/i;
|
7163
7163
|
# check for protected audio format
|
7164
|
-
$self->OverrideFileType('M4P') if $val eq 'drms' and $$self{
|
7164
|
+
$self->OverrideFileType('M4P') if $val eq 'drms' and $$self{FileType} eq 'M4A';
|
7165
7165
|
return $val;
|
7166
7166
|
},
|
7167
7167
|
# see this link for print conversions (not complete):
|
@@ -9809,7 +9809,7 @@ ItemID: foreach $id (keys %$items) {
|
|
9809
9809
|
++$index if defined $index;
|
9810
9810
|
}
|
9811
9811
|
# tweak file type based on track content ("iso*" and "dash" ftyp only)
|
9812
|
-
if ($topLevel and $$et{
|
9812
|
+
if ($topLevel and $$et{FileType} and $$et{FileType} eq 'MP4' and
|
9813
9813
|
$$et{save_ftyp} and $$et{HasHandler} and $$et{save_ftyp} =~ /^(iso|dash)/ and
|
9814
9814
|
$$et{HasHandler}{soun} and not $$et{HasHandler}{vide})
|
9815
9815
|
{
|
@@ -1488,7 +1488,7 @@ sub ProcessFreeGPS($$$)
|
|
1488
1488
|
# Kenwood dashcam sometimes stores absolute year and local time
|
1489
1489
|
# (but sometimes year since 2000 and UTC time in same video!)
|
1490
1490
|
require Time::Local;
|
1491
|
-
my $time = Image::ExifTool::TimeLocal($sec,$min,$hr,$day,$mon-1,$yr
|
1491
|
+
my $time = Image::ExifTool::TimeLocal($sec,$min,$hr,$day,$mon-1,$yr);
|
1492
1492
|
($sec,$min,$hr,$day,$mon,$yr) = gmtime($time);
|
1493
1493
|
$yr += 1900;
|
1494
1494
|
++$mon;
|
@@ -411,6 +411,10 @@ numerical, and generated automatically otherwise.
|
|
411
411
|
|
412
412
|
'IsComposite' - flag set for Composite tags
|
413
413
|
|
414
|
+
'IsImageData' - flag set if this is an image data offset to
|
415
|
+
be included in ImageDataMD5 calculation. Must have an
|
416
|
+
OffsetPair entry which is the ID of the corresponding size.
|
417
|
+
|
414
418
|
'IsOffset' - flag set if the tag represents an offset to some
|
415
419
|
data, and causes value will be adjusted to an absolute file
|
416
420
|
offset. If set to 2, the offset base of the parent directory
|
@@ -472,6 +476,10 @@ numerical, and generated automatically otherwise.
|
|
472
476
|
documentation, padded to the number of digits given by the
|
473
477
|
PrintHex value.
|
474
478
|
|
479
|
+
'PrintInt' - remove decimal part of tag ID in HTML tag name
|
480
|
+
documentation. (To avoid confusing ExifTool users because
|
481
|
+
the LensType decimal numbers are for internal use only.)
|
482
|
+
|
475
483
|
'PrintSort' - causes PrintConv values to be sorted by value
|
476
484
|
rather than key in the HTML tag name documentation.
|
477
485
|
|
@@ -30,7 +30,7 @@ use strict;
|
|
30
30
|
use vars qw($VERSION $AUTOLOAD);
|
31
31
|
use Image::ExifTool qw(:DataAccess :Utils);
|
32
32
|
|
33
|
-
$VERSION = '1.
|
33
|
+
$VERSION = '1.62';
|
34
34
|
|
35
35
|
sub ConvertTimecode($);
|
36
36
|
sub ProcessSGLT($$$);
|
@@ -1522,7 +1522,7 @@ my %code2charset = (
|
|
1522
1522
|
},
|
1523
1523
|
# (can't calculate duration like this for compressed audio types)
|
1524
1524
|
RawConv => q{
|
1525
|
-
return undef if $$self{
|
1525
|
+
return undef if $$self{FileType} =~ /^(LA|OFR|PAC|WV)$/;
|
1526
1526
|
return(($val[0] and not ($val[2] or $val[3])) ? $val[1] / $val[0] : undef);
|
1527
1527
|
},
|
1528
1528
|
PrintConv => 'ConvertDuration($val)',
|
@@ -1996,7 +1996,7 @@ sub ProcessRIFF($$)
|
|
1996
1996
|
$$raf{NoBuffer} = 1 if $et->Options('FastScan'); # disable buffering in FastScan mode
|
1997
1997
|
$mime = $riffMimeType{$type} if $type;
|
1998
1998
|
$et->SetFileType($type, $mime);
|
1999
|
-
$$et{VALUE}{FileType} .= ' (RF64)' if $rf64;
|
1999
|
+
$$et{VALUE}{FileType} .= ' (RF64)' if $rf64 and $$et{VALUE}{FileType};
|
2000
2000
|
$$et{RIFFStreamType} = ''; # initialize stream type
|
2001
2001
|
$$et{RIFFStreamCodec} = []; # initialize codec array
|
2002
2002
|
SetByteOrder('II');
|
@@ -14,7 +14,7 @@ use strict;
|
|
14
14
|
use vars qw($VERSION);
|
15
15
|
use Image::ExifTool qw(:DataAccess :Utils);
|
16
16
|
|
17
|
-
$VERSION = '1.
|
17
|
+
$VERSION = '1.06';
|
18
18
|
|
19
19
|
# currently support this version Rawzor images
|
20
20
|
my $implementedRawzorVersion = 199; # (up to version 1.99)
|
@@ -138,7 +138,7 @@ sub ProcessRWZ($$)
|
|
138
138
|
}
|
139
139
|
# set OriginalFileType from FileType of original file
|
140
140
|
# then change FileType and MIMEType to indicate a Rawzor image
|
141
|
-
my $origFileType = $$et{
|
141
|
+
my $origFileType = $$et{FileType};
|
142
142
|
if ($origFileType) {
|
143
143
|
$et->HandleTag($tagTablePtr, OriginalFileType => $origFileType);
|
144
144
|
$et->OverrideFileType('RWZ');
|
@@ -19,15 +19,13 @@ use strict;
|
|
19
19
|
use vars qw($VERSION %sigmaLensTypes);
|
20
20
|
use Image::ExifTool::Exif;
|
21
21
|
|
22
|
-
$VERSION = '1.
|
22
|
+
$VERSION = '1.34';
|
23
23
|
|
24
24
|
# sigma LensType lookup (ref IB)
|
25
25
|
%sigmaLensTypes = (
|
26
26
|
Notes => q{
|
27
27
|
Sigma LensType values are hexadecimal numbers stored as a string (without
|
28
|
-
the leading "0x").
|
29
|
-
which would otherwise have the same LensType, and are used by the Composite
|
30
|
-
LensID tag when attempting to identify the specific lens model.
|
28
|
+
the leading "0x").
|
31
29
|
},
|
32
30
|
# 0x0 => 'Sigma 50mm F2.8 EX Macro', (0x0 used for other lenses too)
|
33
31
|
# 0x8 - 18-125mm LENSARANGE@18mm=22-4
|
@@ -557,6 +555,7 @@ $VERSION = '1.33';
|
|
557
555
|
SeparateTable => 'LensType',
|
558
556
|
PrintHex => 1,
|
559
557
|
PrintConv => \%sigmaLensTypes,
|
558
|
+
PrintInt => 1,
|
560
559
|
},{ #PH
|
561
560
|
Name => 'LensType',
|
562
561
|
Condition => '$$self{MakerNoteSigmaVer} >= 3',
|
@@ -565,6 +564,7 @@ $VERSION = '1.33';
|
|
565
564
|
SeparateTable => 'LensType',
|
566
565
|
PrintHex => 1,
|
567
566
|
PrintConv => \%sigmaLensTypes,
|
567
|
+
PrintInt => 1,
|
568
568
|
}],
|
569
569
|
0x002a => { #PH
|
570
570
|
Name => 'LensFocalRange',
|
@@ -34,7 +34,7 @@ use Image::ExifTool qw(:DataAccess :Utils);
|
|
34
34
|
use Image::ExifTool::Exif;
|
35
35
|
use Image::ExifTool::Minolta;
|
36
36
|
|
37
|
-
$VERSION = '3.
|
37
|
+
$VERSION = '3.58';
|
38
38
|
|
39
39
|
sub ProcessSRF($$$);
|
40
40
|
sub ProcessSR2($$$);
|
@@ -2045,6 +2045,7 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
|
|
2045
2045
|
369 => 'DSC-RX100M5A', #JR
|
2046
2046
|
371 => 'ILCE-6400', #IB
|
2047
2047
|
372 => 'DSC-RX0M2', #JR
|
2048
|
+
373 => 'DSC-HX95', #github191
|
2048
2049
|
374 => 'DSC-RX100M7', #IB
|
2049
2050
|
375 => 'ILCE-7RM4', #IB
|
2050
2051
|
376 => 'ILCE-9M2', #JR
|
@@ -2161,6 +2162,7 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
|
|
2161
2162
|
# set to 65535 for E-mount lenses (values 0x80xx)
|
2162
2163
|
ValueConvInv => '($val & 0xff00) == 0x8000 ? 65535 : int($val)',
|
2163
2164
|
PrintConv => \%sonyLensTypes,
|
2165
|
+
PrintInt => 1,
|
2164
2166
|
},
|
2165
2167
|
0xb028 => { #2
|
2166
2168
|
# (used by the DSLR-A100)
|
@@ -5570,6 +5572,7 @@ my %faceInfo = (
|
|
5570
5572
|
Format => 'int16u',
|
5571
5573
|
SeparateTable => 'LensType2',
|
5572
5574
|
PrintConv => \%sonyLensTypes2,
|
5575
|
+
PrintInt => 1,
|
5573
5576
|
},
|
5574
5577
|
0x400 => { #JR
|
5575
5578
|
Name => 'ImageNumber',
|
@@ -6603,6 +6606,7 @@ my %isoSetting2010 = (
|
|
6603
6606
|
Format => 'int16u',
|
6604
6607
|
SeparateTable => 'LensType2',
|
6605
6608
|
PrintConv => \%sonyLensTypes2,
|
6609
|
+
PrintInt => 1,
|
6606
6610
|
},
|
6607
6611
|
0x1896 => {
|
6608
6612
|
Name => 'LensType',
|
@@ -6612,6 +6616,7 @@ my %isoSetting2010 = (
|
|
6612
6616
|
SeparateTable => 1,
|
6613
6617
|
ValueConvInv => '($val & 0xff00) == 0x8000 ? 0 : int($val)',
|
6614
6618
|
PrintConv => \%sonyLensTypes,
|
6619
|
+
PrintInt => 1,
|
6615
6620
|
},
|
6616
6621
|
0x1898 => {
|
6617
6622
|
Name => 'DistortionCorrParamsPresent',
|
@@ -6809,6 +6814,7 @@ my %isoSetting2010 = (
|
|
6809
6814
|
Format => 'int16u',
|
6810
6815
|
SeparateTable => 'LensType2',
|
6811
6816
|
PrintConv => \%sonyLensTypes2,
|
6817
|
+
PrintInt => 1,
|
6812
6818
|
},
|
6813
6819
|
0x18c2 => {
|
6814
6820
|
Name => 'LensType',
|
@@ -6818,6 +6824,7 @@ my %isoSetting2010 = (
|
|
6818
6824
|
SeparateTable => 1,
|
6819
6825
|
ValueConvInv => '($val & 0xff00) == 0x8000 ? 0 : int($val)',
|
6820
6826
|
PrintConv => \%sonyLensTypes,
|
6827
|
+
PrintInt => 1,
|
6821
6828
|
},
|
6822
6829
|
0x18c4 => {
|
6823
6830
|
Name => 'DistortionCorrParamsPresent',
|
@@ -6946,6 +6953,7 @@ my %isoSetting2010 = (
|
|
6946
6953
|
Format => 'int16u',
|
6947
6954
|
SeparateTable => 'LensType2',
|
6948
6955
|
PrintConv => \%sonyLensTypes2,
|
6956
|
+
PrintInt => 1,
|
6949
6957
|
},
|
6950
6958
|
0x18f2 => {
|
6951
6959
|
Name => 'LensType',
|
@@ -6955,6 +6963,7 @@ my %isoSetting2010 = (
|
|
6955
6963
|
SeparateTable => 1,
|
6956
6964
|
ValueConvInv => '($val & 0xff00) == 0x8000 ? 0 : int($val)',
|
6957
6965
|
PrintConv => \%sonyLensTypes,
|
6966
|
+
PrintInt => 1,
|
6958
6967
|
},
|
6959
6968
|
0x18f4 => {
|
6960
6969
|
Name => 'DistortionCorrParamsPresent',
|
@@ -7075,6 +7084,7 @@ my %isoSetting2010 = (
|
|
7075
7084
|
Format => 'int16u',
|
7076
7085
|
SeparateTable => 'LensType2',
|
7077
7086
|
PrintConv => \%sonyLensTypes2,
|
7087
|
+
PrintInt => 1,
|
7078
7088
|
},
|
7079
7089
|
0x17f6 => {
|
7080
7090
|
Name => 'LensType',
|
@@ -7084,6 +7094,7 @@ my %isoSetting2010 = (
|
|
7084
7094
|
SeparateTable => 1,
|
7085
7095
|
ValueConvInv => '($val & 0xff00) == 0x8000 ? 0 : int($val)',
|
7086
7096
|
PrintConv => \%sonyLensTypes,
|
7097
|
+
PrintInt => 1,
|
7087
7098
|
},
|
7088
7099
|
0x17f8 => {
|
7089
7100
|
Name => 'DistortionCorrParamsPresent',
|
@@ -7439,6 +7450,7 @@ my %isoSetting2010 = (
|
|
7439
7450
|
Format => 'int16u',
|
7440
7451
|
SeparateTable => 'LensType2',
|
7441
7452
|
PrintConv => \%sonyLensTypes2,
|
7453
|
+
PrintInt => 1,
|
7442
7454
|
},
|
7443
7455
|
0x0109 => {
|
7444
7456
|
Name => 'LensType',
|
@@ -7450,6 +7462,7 @@ my %isoSetting2010 = (
|
|
7450
7462
|
# has a value of 0 for E-mount lenses (values 0x80xx)
|
7451
7463
|
ValueConvInv => '($val & 0xff00) == 0x8000 ? 0 : int($val)',
|
7452
7464
|
PrintConv => \%sonyLensTypes,
|
7465
|
+
PrintInt => 1,
|
7453
7466
|
},
|
7454
7467
|
0x010b => {
|
7455
7468
|
Name => 'DistortionCorrParamsPresent',
|
@@ -7726,6 +7739,7 @@ my %isoSetting2010 = (
|
|
7726
7739
|
Format => 'int16u',
|
7727
7740
|
SeparateTable => 'LensType2',
|
7728
7741
|
PrintConv => \%sonyLensTypes2,
|
7742
|
+
PrintInt => 1,
|
7729
7743
|
},
|
7730
7744
|
0x0109 => {
|
7731
7745
|
Name => 'LensType',
|
@@ -7737,6 +7751,7 @@ my %isoSetting2010 = (
|
|
7737
7751
|
# has a value of 0 for E-mount lenses (values 0x80xx)
|
7738
7752
|
ValueConvInv => '($val & 0xff00) == 0x8000 ? 0 : int($val)',
|
7739
7753
|
PrintConv => \%sonyLensTypes,
|
7754
|
+
PrintInt => 1,
|
7740
7755
|
},
|
7741
7756
|
0x010b => {
|
7742
7757
|
Name => 'DistortionCorrParamsPresent',
|
@@ -8535,6 +8550,7 @@ my %isoSetting2010 = (
|
|
8535
8550
|
Notes => 'E-mount lenses',
|
8536
8551
|
SeparateTable => 'LensType2',
|
8537
8552
|
PrintConv => \%sonyLensTypes2,
|
8553
|
+
PrintInt => 1,
|
8538
8554
|
},
|
8539
8555
|
0x0608 => {
|
8540
8556
|
Name => 'LensType',
|
@@ -8543,6 +8559,7 @@ my %isoSetting2010 = (
|
|
8543
8559
|
Notes => 'A-mount lenses on SLT and NEX',
|
8544
8560
|
SeparateTable => 1,
|
8545
8561
|
PrintConv => \%sonyLensTypes,
|
8562
|
+
PrintInt => 1,
|
8546
8563
|
},
|
8547
8564
|
0x064a => {
|
8548
8565
|
Name => 'VignettingCorrParams',
|
@@ -8713,6 +8730,7 @@ my %isoSetting2010 = (
|
|
8713
8730
|
Notes => 'E-mount lenses',
|
8714
8731
|
SeparateTable => 'LensType2',
|
8715
8732
|
PrintConv => \%sonyLensTypes2,
|
8733
|
+
PrintInt => 1,
|
8716
8734
|
},
|
8717
8735
|
0x0062 => {
|
8718
8736
|
Name => 'LensType',
|
@@ -8721,6 +8739,7 @@ my %isoSetting2010 = (
|
|
8721
8739
|
Notes => 'A-mount lenses on SLT and NEX',
|
8722
8740
|
SeparateTable => 1,
|
8723
8741
|
PrintConv => \%sonyLensTypes,
|
8742
|
+
PrintInt => 1,
|
8724
8743
|
},
|
8725
8744
|
0x0064 => {
|
8726
8745
|
Name => 'DistortionCorrParams',
|
@@ -8937,6 +8956,7 @@ my %isoSetting2010 = (
|
|
8937
8956
|
Format => 'int16u',
|
8938
8957
|
SeparateTable => 'LensType2',
|
8939
8958
|
PrintConv => \%sonyLensTypes2,
|
8959
|
+
PrintInt => 1,
|
8940
8960
|
},
|
8941
8961
|
0x000b => {
|
8942
8962
|
Name => 'CameraE-mountVersion',
|
@@ -9622,6 +9642,7 @@ my %isoSetting2010 = (
|
|
9622
9642
|
Format => 'int16u',
|
9623
9643
|
SeparateTable => 'LensType2',
|
9624
9644
|
PrintConv => \%sonyLensTypes2,
|
9645
|
+
PrintInt => 1,
|
9625
9646
|
},
|
9626
9647
|
0x004d => {
|
9627
9648
|
Name => 'LensType',
|
@@ -9631,6 +9652,7 @@ my %isoSetting2010 = (
|
|
9631
9652
|
SeparateTable => 1,
|
9632
9653
|
ValueConvInv => '($val & 0xff00) == 0x8000 ? 0 : int($val)',
|
9633
9654
|
PrintConv => \%sonyLensTypes,
|
9655
|
+
PrintInt => 1,
|
9634
9656
|
},
|
9635
9657
|
0x004f => {
|
9636
9658
|
Name => 'DistortionCorrParams',
|