fix pruning tags + only prune files/dirs under @ARGV
[id3fs.git] / lib / ID3FS / AudioFile / Ogg.pm
index 649b450..cdd9a9a 100644 (file)
@@ -1,3 +1,19 @@
+# id3fs - a FUSE-based filesystem for browsing audio metadata
+# Copyright (C) 2010  Ian Beckwith <ianb@erislabs.net>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
 package ID3FS::AudioFile::Ogg;
 
 use strict;
@@ -47,7 +63,7 @@ sub get
 sub artist    { shift->get("Artist"); }
 sub album     { shift->get("Album");  }
 sub audiotype { return "ogg";         }
-sub haspic    { return undef;         } # FIXME
+sub haspic    { return undef;         } # NEXTVERSION
 sub v1genre   { return undef;         } # ID3 only
 sub year      { shift->get("Date");   }