From 7345ac124e3b56a402b6a004d968d40b4ffeaa50 Mon Sep 17 00:00:00 2001 From: Andree Buschmann Date: Thu, 3 Feb 2011 08:28:23 +0000 Subject: Submit FS#11918: Add 2 more codec types to be able to differentiate between AAC / AAC-HE and MPC SV7 / SV8. Additionally handle ATARI soundfiles in get_codec_base_type() as intended. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29199 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/libm4a/demux.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'apps/codecs') diff --git a/apps/codecs/libm4a/demux.c b/apps/codecs/libm4a/demux.c index 8fc90c8092..e584c37858 100644 --- a/apps/codecs/libm4a/demux.c +++ b/apps/codecs/libm4a/demux.c @@ -257,7 +257,8 @@ static bool read_chunk_stsd(qtmovie_t *qtmovie, size_t chunk_len) stream_skip(qtmovie->stream, entry_remaining); } else if (qtmovie->res->format==MAKEFOURCC('m','p','4','a')) { - if (qtmovie->stream->ci->id3->codectype!=AFMT_MP4_AAC) { + if (qtmovie->stream->ci->id3->codectype!=AFMT_MP4_AAC && + qtmovie->stream->ci->id3->codectype!=AFMT_MP4_AAC_HE) { return false; } -- cgit v1.2.3