forked from len0rd/rockbox
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
This commit is contained in:
parent
bbfe57377c
commit
6b6463c8b7
2 changed files with 17 additions and 8 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue