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:
parent
04b9ca2d95
commit
77268ec48f
1 changed files with 3 additions and 1 deletions
|
@ -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_.+/
|
||||||
|
|
Loading…
Reference in a new issue