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
This commit is contained in:
Michael Giacomelli 2011-04-12 20:24:43 +00:00
parent 04b9ca2d95
commit 77268ec48f

View file

@ -23,8 +23,10 @@ private
def get_codec(filename) def get_codec(filename)
case filename case filename
when /nero_hev2_.+/
self.codec = "Nero AAC-HEv2 (SBR+PS)"
when /.+aache.+/, /nero_he_.+/ when /.+aache.+/, /nero_he_.+/
self.codec = "Nero AAC-HE" self.codec = "Nero AAC-HE (SBR)"
when /a52.+/ when /a52.+/
self.codec = "AC3 (A52)" self.codec = "AC3 (A52)"
when /ape_.+/ when /ape_.+/