Codecs: mp4: Skip unknown chunks

Needed for opening some m4b books (see FS#13049)

Change-Id: Id289451e6b2b8a7ad1f6b9f00ef512ab9692383d
This commit is contained in:
roman.artiukhin 2023-08-30 17:00:22 +03:00 committed by Solomon Peachy
parent ed369e1d47
commit a190d0ca9c

View file

@ -845,7 +845,8 @@ int qtmovie_read(stream_t *file, demux_res_t *demux_res)
break;
default:
//DEBUGF("(top) unknown chunk id: %c%c%c%c\n",SPLITFOURCC(chunk_id));
return 0;
stream_skip(qtmovie.stream, chunk_len - 8);
break;
}
}