summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorexiftool <exiftool@users.sourceforge.net>2019-09-30 13:18:17 -0400
committerexiftool <exiftool@users.sourceforge.net>2019-09-30 13:18:17 -0400
commit567ad45f7bc684682fdc5d97ac757948f529a056 (patch)
treef0ca134e6837b5a1f019d39985ab98bd77dca76f /lib
parent9898c3a8409c0a5dab59b70055b2ac2a8eefb8b7 (diff)
Update to 11.67
Diffstat (limited to 'lib')
-rw-r--r--lib/Image/ExifTool.pm2
-rw-r--r--lib/Image/ExifTool/QuickTimeStream.pl4
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/Image/ExifTool.pm b/lib/Image/ExifTool.pm
index 535d901c..c240113f 100644
--- a/lib/Image/ExifTool.pm
+++ b/lib/Image/ExifTool.pm
@@ -27,7 +27,7 @@ use vars qw($VERSION $RELEASE @ISA @EXPORT_OK %EXPORT_TAGS $AUTOLOAD @fileTypes
%mimeType $swapBytes $swapWords $currentByteOrder %unpackStd
%jpegMarker %specialTags %fileTypeLookup);
-$VERSION = '11.66';
+$VERSION = '11.67';
$RELEASE = '';
@ISA = qw(Exporter);
%EXPORT_TAGS = (
diff --git a/lib/Image/ExifTool/QuickTimeStream.pl b/lib/Image/ExifTool/QuickTimeStream.pl
index a647807f..df15088c 100644
--- a/lib/Image/ExifTool/QuickTimeStream.pl
+++ b/lib/Image/ExifTool/QuickTimeStream.pl
@@ -1692,8 +1692,8 @@ sub ProcessINSVTrailer($)
($a[7] eq 'E' or $a[7] eq 'W');
$$et{DOC_NUM} = ++$$et{DOC_COUNT};
$a[$_] = GetDouble(\$a[$_], 0) foreach 4,6,8,9,10;
- $a[4] *= -abs($a[4]) if $a[5] eq 'S'; # (abs just in case it was already signed)
- $a[6] *= -abs($a[6]) if $a[7] eq 'W';
+ $a[4] = -abs($a[4]) if $a[5] eq 'S'; # (abs just in case it was already signed)
+ $a[6] = -abs($a[6]) if $a[7] eq 'W';
$et->HandleTag($tagTbl, GPSDateTime => Image::ExifTool::ConvertUnixTime($a[0]) . 'Z');
$et->HandleTag($tagTbl, GPSLatitude => $a[4]);
$et->HandleTag($tagTbl, GPSLongitude => $a[6]);