diff options
-rw-r--r-- | apps/codecs/libalac/demux.c | 3 | ||||
-rw-r--r-- | docs/CREDITS | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/apps/codecs/libalac/demux.c b/apps/codecs/libalac/demux.c index 634dc01ee7..23f6d82622 100644 --- a/apps/codecs/libalac/demux.c +++ b/apps/codecs/libalac/demux.c @@ -497,7 +497,8 @@ static void read_chunk_trak(qtmovie_t *qtmovie, size_t chunk_len) default: // fprintf(stderr, "(trak) unknown chunk id: %c%c%c%c\n", // SPLITFOURCC(sub_chunk_id)); - return; + stream_skip(qtmovie->stream, sub_chunk_len - 8); + break; } size_remaining -= sub_chunk_len; diff --git a/docs/CREDITS b/docs/CREDITS index 5db682eb72..2171cc3228 100644 --- a/docs/CREDITS +++ b/docs/CREDITS @@ -135,3 +135,4 @@ David Dent Frank Dischner Liberman Shachar Stephan Wezel +Alyssa Milburn |