diff options
| author | Michael Giacomelli <giac2000@hotmail.com> | 2011-04-12 20:24:43 +0000 |
|---|---|---|
| committer | Michael Giacomelli <giac2000@hotmail.com> | 2011-04-12 20:24:43 +0000 |
| commit | 77268ec48f904636ccaf985732b61df77af2abe8 (patch) | |
| tree | af82726704748f263a5d5bde767ed8a0d4a5e267 /utils/parse_testcodec.rb | |
| parent | 04b9ca2d958cd24fb1937e0871e9e259f5a61c1a (diff) | |
| download | rockbox-77268ec48f904636ccaf985732b61df77af2abe8.zip rockbox-77268ec48f904636ccaf985732b61df77af2abe8.tar.gz rockbox-77268ec48f904636ccaf985732b61df77af2abe8.tar.bz2 rockbox-77268ec48f904636ccaf985732b61df77af2abe8.tar.xz | |
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
Diffstat (limited to 'utils/parse_testcodec.rb')
| -rwxr-xr-x | utils/parse_testcodec.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/parse_testcodec.rb b/utils/parse_testcodec.rb index 2f46c4c..6531b70 100755 --- a/utils/parse_testcodec.rb +++ b/utils/parse_testcodec.rb @@ -23,8 +23,10 @@ private def get_codec(filename) case filename + when /nero_hev2_.+/ + self.codec = "Nero AAC-HEv2 (SBR+PS)" when /.+aache.+/, /nero_he_.+/ - self.codec = "Nero AAC-HE" + self.codec = "Nero AAC-HE (SBR)" when /a52.+/ self.codec = "AC3 (A52)" when /ape_.+/ |