summaryrefslogtreecommitdiff
path: root/apps/codecs
diff options
context:
space:
mode:
authorMagnus Holmgren <magnushol@gmail.com>2009-11-22 16:37:36 +0000
committerMagnus Holmgren <magnushol@gmail.com>2009-11-22 16:37:36 +0000
commit6b6463c8b702ee4860a1c2ae63fa8b334e1eb5d5 (patch)
treeb09d35a86ded06ac581a2620f30ec55d4c713456 /apps/codecs
parentbbfe57377c429e7d91d04353c916fd404623ed24 (diff)
downloadrockbox-6b6463c8b702ee4860a1c2ae63fa8b334e1eb5d5.tar.gz
rockbox-6b6463c8b702ee4860a1c2ae63fa8b334e1eb5d5.zip
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
Diffstat (limited to 'apps/codecs')
-rw-r--r--apps/codecs/libm4a/demux.c3
1 files changed, 2 insertions, 1 deletions
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)
66 (type != MAKEFOURCC('M','4','B',' ')) && 66 (type != MAKEFOURCC('M','4','B',' ')) &&
67 (type != MAKEFOURCC('m','p','4','2')) && 67 (type != MAKEFOURCC('m','p','4','2')) &&
68 (type != MAKEFOURCC('3','g','p','6')) && 68 (type != MAKEFOURCC('3','g','p','6')) &&
69 (type != MAKEFOURCC('q','t',' ',' '))) 69 (type != MAKEFOURCC('q','t',' ',' ')) &&
70 (type != MAKEFOURCC('i','s','o','m')))
70 { 71 {
71 DEBUGF("not M4A file\n"); 72 DEBUGF("not M4A file\n");
72 return; 73 return;