summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-08-21 20:53:34 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-08-21 20:53:34 +0000
commitc9caf9781befd2a40d4599ead126f3e6e480e739 (patch)
treeb0d268bbe9061be31b1a3495fa7d45befff71453
parentfe89d3695494fd80052b1a783d55abd47ab40f9b (diff)
downloadrockbox-c9caf9781befd2a40d4599ead126f3e6e480e739.tar.gz
rockbox-c9caf9781befd2a40d4599ead126f3e6e480e739.zip
Fixed title extracting for Ogg files. Fixed suggested by 'cosmocat' in the
Misticriver forum. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7375 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/songdb.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/songdb.pl b/tools/songdb.pl
index 40d23d780d..7154ba33d8 100755
--- a/tools/songdb.pl
+++ b/tools/songdb.pl
@@ -99,6 +99,9 @@ sub get_oggtag {
99 elsif($k =~ /^album$/i) { 99 elsif($k =~ /^album$/i) {
100 $n = 'ALBUM'; 100 $n = 'ALBUM';
101 } 101 }
102 elsif($k =~ /^title$/i) {
103 $n = 'TITLE';
104 }
102 $hash{$n}=$cmmt if($n); 105 $hash{$n}=$cmmt if($n);
103 } 106 }
104 } 107 }