exiftool_vendored 13.57.1 → 13.59.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -31,13 +31,13 @@ use vars qw($VERSION);
31
31
  use Image::ExifTool qw(:DataAccess :Utils);
32
32
  use Image::ExifTool::Exif;
33
33
 
34
- $VERSION = '2.00';
34
+ $VERSION = '2.02';
35
35
 
36
36
  sub ProcessFujiDir($$$);
37
37
  sub ProcessFaceRec($$$);
38
38
  sub ProcessMRAW($$$);
39
39
 
40
- # the following RAF version numbers have been tested for writing:
40
+ # the following firmware version numbers have been tested for writing:
41
41
  # (as of ExifTool 11.70, this lookup is no longer used if the version number is numerical)
42
42
  my %testedRAF = (
43
43
  '0100' => 'E550, E900, F770, S5600, S6000fd, S6500fd, HS10/HS11, HS30, S200EXR, X100, XF1, X-Pro1, X-S1, XQ2 Ver1.00, X-T100, GFX 50R, XF10',
@@ -67,7 +67,7 @@ my %testedRAF = (
67
67
  # 0400 - expect to see this for X-T1
68
68
  '0540' => 'X-T1 Ver5.40',
69
69
  '0712' => 'S5000 Ver3.00',
70
- '0716' => 'S5000 Ver3.00', # (yes, 2 RAF versions with the same Software version)
70
+ '0716' => 'S5000 Ver3.00', # (yes, 2 firmware versions with the same Software version)
71
71
  '0Dgi' => 'X-A10 Ver1.01 and X-A3 Ver1.02', # (yes, non-digits in the firmware number)
72
72
  );
73
73
 
@@ -1226,7 +1226,7 @@ my %faceCategories = (
1226
1226
  NOTES => 'Tags extracted from the header of RAF images.',
1227
1227
  # 0x00 - eg. "FUJIFILMCCD-RAW 0201FA392001FinePix S3Pro"
1228
1228
  0x3c => { #PH
1229
- Name => 'RAFVersion',
1229
+ Name => 'FirmwareVersion', #forum17969
1230
1230
  Format => 'undef[4]',
1231
1231
  },
1232
1232
  # (all int32u values)
@@ -1373,37 +1373,37 @@ my %faceCategories = (
1373
1373
  Count => 4, # (ignore the duplicate values)
1374
1374
  },
1375
1375
  0x2100 => { #IB
1376
- Name => 'WB_GRGBLevelsDaylight',
1376
+ Name => 'WB_GRGBLevelsDaylight', # (EXIF Fine Weather)
1377
1377
  Format => 'int16u',
1378
1378
  Count => 4,
1379
1379
  },
1380
1380
  0x2200 => { #IB
1381
- Name => 'WB_GRGBLevelsCloudy',
1381
+ Name => 'WB_GRGBLevelsCloudy', # (EXIF Shade)
1382
1382
  Format => 'int16u',
1383
1383
  Count => 4,
1384
1384
  },
1385
1385
  0x2300 => { #IB
1386
- Name => 'WB_GRGBLevelsDaylightFluor',
1386
+ Name => 'WB_GRGBLevelsDaylightFluor', # (EXIF FL_D)
1387
1387
  Format => 'int16u',
1388
1388
  Count => 4,
1389
1389
  },
1390
1390
  0x2301 => { #IB
1391
- Name => 'WB_GRGBLevelsDayWhiteFluor',
1391
+ Name => 'WB_GRGBLevelsDayWhiteFluor', # (EXIF FL_N)
1392
1392
  Format => 'int16u',
1393
1393
  Count => 4,
1394
1394
  },
1395
1395
  0x2302 => { #IB
1396
- Name => 'WB_GRGBLevelsWhiteFluorescent',
1396
+ Name => 'WB_GRGBLevelsWhiteFluorescent', # (EXIF FL_W)
1397
1397
  Format => 'int16u',
1398
1398
  Count => 4,
1399
1399
  },
1400
1400
  0x2310 => { #IB
1401
- Name => 'WB_GRGBLevelsWarmWhiteFluor',
1401
+ Name => 'WB_GRGBLevelsWarmWhiteFluor', # (EXIF FL_WW)
1402
1402
  Format => 'int16u',
1403
1403
  Count => 4,
1404
1404
  },
1405
1405
  0x2311 => { #IB
1406
- Name => 'WB_GRGBLevelsLivingRoomWarmWhiteFluor',
1406
+ Name => 'WB_GRGBLevelsLivingRoomWarmWhiteFluor', # (EXIF FL_L)
1407
1407
  Format => 'int16u',
1408
1408
  Count => 4,
1409
1409
  },
@@ -1412,9 +1412,14 @@ my %faceCategories = (
1412
1412
  Format => 'int16u',
1413
1413
  Count => 4,
1414
1414
  },
1415
+ 0x2410 => { #IB
1416
+ Name => 'WB_GRGBLevelsFlash',
1417
+ Format => 'int16u',
1418
+ Count => 4,
1419
+ },
1415
1420
  # 0x2f00 => WB_GRGBLevelsCustom: int32u count, then count * (int16u GRGBGRGB), ref IB
1416
1421
  0x2ff0 => {
1417
- Name => 'WB_GRGBLevels',
1422
+ Name => 'WB_GRGBLevels', # (as shot)
1418
1423
  Format => 'int16u',
1419
1424
  Count => 4,
1420
1425
  },