summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2011-04-12 20:24:43 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2011-04-12 20:24:43 +0000
commit77268ec48f904636ccaf985732b61df77af2abe8 (patch)
treeaf82726704748f263a5d5bde767ed8a0d4a5e267
parent04b9ca2d958cd24fb1937e0871e9e259f5a61c1a (diff)
downloadrockbox-77268ec48f904636ccaf985732b61df77af2abe8.tar.gz
rockbox-77268ec48f904636ccaf985732b61df77af2abe8.zip
Update parse_testcodec to parse AAC-HE files with parametric stereo.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29707 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xutils/parse_testcodec.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/parse_testcodec.rb b/utils/parse_testcodec.rb
index 2f46c4ceca..6531b70152 100755
--- a/utils/parse_testcodec.rb
+++ b/utils/parse_testcodec.rb
@@ -23,8 +23,10 @@ private
23 23
24 def get_codec(filename) 24 def get_codec(filename)
25 case filename 25 case filename
26 when /nero_hev2_.+/
27 self.codec = "Nero AAC-HEv2 (SBR+PS)"
26 when /.+aache.+/, /nero_he_.+/ 28 when /.+aache.+/, /nero_he_.+/
27 self.codec = "Nero AAC-HE" 29 self.codec = "Nero AAC-HE (SBR)"
28 when /a52.+/ 30 when /a52.+/
29 self.codec = "AC3 (A52)" 31 self.codec = "AC3 (A52)"
30 when /ape_.+/ 32 when /ape_.+/