X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2FID3FS%2FAudioFile%2FOgg.pm;h=649b45061ece08b10dd7c6e8c28c8364a2ccccf8;hb=718f65e679aed209f98961cbdf655bfed44ca1a4;hp=a617f9fd894eaf0413aa47dfe2b9c325f77c0928;hpb=cf53a5fa299b5a88f238ea0d599c584103869a7c;p=id3fs.git diff --git a/lib/ID3FS/AudioFile/Ogg.pm b/lib/ID3FS/AudioFile/Ogg.pm index a617f9f..649b450 100644 --- a/lib/ID3FS/AudioFile/Ogg.pm +++ b/lib/ID3FS/AudioFile/Ogg.pm @@ -19,7 +19,7 @@ sub new sub get { - my ($self, $tag, $complain)=@_; + my ($self, $tag)=@_; for my $commenttype (@{$self->{comments}}) { if($commenttype =~ /$tag/i) @@ -41,17 +41,15 @@ sub get } } } - warn("$self->{path}: no $tag defined in Ogg comments\n") if($complain); return undef; } -sub artist { shift->get("Artist", 1); } -sub album { shift->get("Album", 1); } -sub audiotype { return "ogg"; } -sub haspic { return undef; } # FIXME -sub v1genre { return undef; } # ID3 only -# We don't care if year is not set -sub year { shift->get("Date", 0); } +sub artist { shift->get("Artist"); } +sub album { shift->get("Album"); } +sub audiotype { return "ogg"; } +sub haspic { return undef; } # FIXME +sub v1genre { return undef; } # ID3 only +sub year { shift->get("Date"); } sub tags {