line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Template::Plugin::AudioFile::Info; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
60797
|
use 5.006; |
|
1
|
|
|
|
|
4
|
|
4
|
1
|
|
|
1
|
|
5
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
22
|
|
5
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
31
|
|
6
|
|
|
|
|
|
|
|
7
|
1
|
|
|
1
|
|
541
|
use AudioFile::Info; |
|
1
|
|
|
|
|
8478
|
|
|
1
|
|
|
|
|
38
|
|
8
|
1
|
|
|
1
|
|
1535
|
use Template::Plugin; |
|
1
|
|
|
|
|
748
|
|
|
1
|
|
|
|
|
123
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
require Exporter; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
our @ISA = qw(Exporter AudioFile::Info Template::Plugin); |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
our $VERSION = '2.0.2'; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
sub new { |
17
|
2
|
|
|
2
|
1
|
9064
|
my ($class, $context, $file, $params) = @_; |
18
|
|
|
|
|
|
|
|
19
|
2
|
|
|
|
|
10
|
my $self = $class->SUPER::new($file, $params); |
20
|
|
|
|
|
|
|
|
21
|
2
|
|
|
|
|
897
|
return $self; |
22
|
|
|
|
|
|
|
} |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
1; |
25
|
|
|
|
|
|
|
__END__ |