/usr/share/perl5/Image/ExifTool/JVC.pm is in libimage-exiftool-perl 10.80-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | #------------------------------------------------------------------------------
# File: JVC.pm
#
# Description: JVC EXIF maker notes tags
#
# Revisions: 12/21/2005 - P. Harvey Created
#------------------------------------------------------------------------------
package Image::ExifTool::JVC;
use strict;
use vars qw($VERSION);
use Image::ExifTool qw(:DataAccess :Utils);
use Image::ExifTool::Exif;
$VERSION = '1.03';
sub ProcessJVCText($$$);
# JVC EXIF-based maker notes
%Image::ExifTool::JVC::Main = (
WRITE_PROC => \&Image::ExifTool::Exif::WriteExif,
CHECK_PROC => \&Image::ExifTool::Exif::CheckExif,
GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
NOTES => 'JVC EXIF maker note tags.',
#0x0001 - almost always '2', but '3' for GR-DV700 samples
0x0002 => { #PH
Name => 'CPUVersions',
# remove trailing nulls/spaces and split at remaining nulls/spaces
ValueConv => '$_=$val; s/(\s*\0)+$//; s/(\s*\0)+/, /g; $_',
},
0x0003 => { #PH
Name => 'Quality',
PrintConv => {
0 => 'Low',
1 => 'Normal',
2 => 'Fine',
},
},
);
# JVC text-based maker notes
%Image::ExifTool::JVC::Text = (
GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
PROCESS_PROC => \&ProcessJVCText,
NOTES => 'JVC/Victor text-based maker note tags.',
VER => 'MakerNoteVersion', #PH
QTY => { #PH
Name => 'Quality',
PrintConv => {
STND => 'Normal',
STD => 'Normal',
FINE => 'Fine',
},
},
);
#------------------------------------------------------------------------------
# Process JVC text-based maker notes
# Inputs: 0) ExifTool object reference
# 1) Reference to directory information hash
# 2) Pointer to tag table for this directory
# Returns: 1 on success, otherwise returns 0 and sets a Warning
sub ProcessJVCText($$$)
{
my ($et, $dirInfo, $tagTablePtr) = @_;
my $dataPt = $$dirInfo{DataPt};
my $dirStart = $$dirInfo{DirStart} || 0;
my $dataLen = $$dirInfo{DataLen};
my $dirLen = $$dirInfo{DirLen} || $dataLen - $dirStart;
my $verbose = $et->Options('Verbose');
my $data = substr($$dataPt, $dirStart, $dirLen);
# validate text maker notes
unless ($data =~ /^VER:/) {
$et->Warn('Bad JVC text maker notes');
return 0;
}
while ($data =~ m/([A-Z]+):(.{3,4})/sg) {
my ($tag, $val) = ($1, $2);
my $tagInfo = $et->GetTagInfo($tagTablePtr, $tag);
$et->VerboseInfo($tag, $tagInfo,
Table => $tagTablePtr,
Value => $val,
) if $verbose;
unless ($tagInfo) {
next unless $$et{OPTIONS}{Unknown};
$tagInfo = {
Name => "JVC_Text_$tag",
Unknown => 1,
PrintConv => 'length($val) > 60 ? substr($val,0,55) . "[...]" : $val',
};
# add tag information to table
AddTagToTable($tagTablePtr, $tag, $tagInfo);
}
$et->FoundTag($tagInfo, $val);
}
return 1;
}
1; # end
__END__
=head1 NAME
Image::ExifTool::JVC - JVC EXIF maker notes tags
=head1 SYNOPSIS
This module is loaded automatically by Image::ExifTool when required.
=head1 DESCRIPTION
This module contains routines used by Image::ExifTool to interpret JVC maker
notes.
=head1 AUTHOR
Copyright 2003-2018, Phil Harvey (phil at owl.phy.queensu.ca)
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=head1 SEE ALSO
L<Image::ExifTool::TagNames/JVC Tags>,
L<Image::ExifTool(3pm)|Image::ExifTool>
=cut
|