diff options
| author | Magnus Holmgren <magnushol@gmail.com> | 2009-11-22 16:37:36 +0000 |
|---|---|---|
| committer | Magnus Holmgren <magnushol@gmail.com> | 2009-11-22 16:37:36 +0000 |
| commit | 6b6463c8b702ee4860a1c2ae63fa8b334e1eb5d5 (patch) | |
| tree | b09d35a86ded06ac581a2620f30ec55d4c713456 /apps/codecs/libm4a | |
| parent | bbfe57377c429e7d91d04353c916fd404623ed24 (diff) | |
| download | rockbox-6b6463c8b702ee4860a1c2ae63fa8b334e1eb5d5.zip rockbox-6b6463c8b702ee4860a1c2ae63fa8b334e1eb5d5.tar.gz rockbox-6b6463c8b702ee4860a1c2ae63fa8b334e1eb5d5.tar.bz2 rockbox-6b6463c8b702ee4860a1c2ae63fa8b334e1eb5d5.tar.xz | |
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/libm4a')
| -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 61ff16c..00fd313 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; |