From 6b6463c8b702ee4860a1c2ae63fa8b334e1eb5d5 Mon Sep 17 00:00:00 2001 From: Magnus Holmgren Date: Sun, 22 Nov 2009 16:37:36 +0000 Subject: Add support for the MP4 file type 'isom'. Based on FS#10790 with an additional fix, making the sample file play. Also updated some debug prints. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23708 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/libm4a/demux.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'apps/codecs/libm4a') diff --git a/apps/codecs/libm4a/demux.c b/apps/codecs/libm4a/demux.c index 61ff16c0d9..00fd3132aa 100644 --- a/apps/codecs/libm4a/demux.c +++ b/apps/codecs/libm4a/demux.c @@ -66,7 +66,8 @@ static void read_chunk_ftyp(qtmovie_t *qtmovie, size_t chunk_len) (type != MAKEFOURCC('M','4','B',' ')) && (type != MAKEFOURCC('m','p','4','2')) && (type != MAKEFOURCC('3','g','p','6')) && - (type != MAKEFOURCC('q','t',' ',' '))) + (type != MAKEFOURCC('q','t',' ',' ')) && + (type != MAKEFOURCC('i','s','o','m'))) { DEBUGF("not M4A file\n"); return; -- cgit v1.2.3