diff options
Diffstat (limited to 'apps/codecs/libm4a/demux.c')
-rw-r--r-- | apps/codecs/libm4a/demux.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; } |