From 16ba6a8ad14183d2f8947e58a8cb9bae519bc430 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Wed, 10 Jan 2018 15:51:27 +0100 Subject: [PATCH] avformat/wavdec: make fact chunk parsing for w64 more robust Signed-off-by: Paul B Mahol --- libavformat/wavdec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/wavdec.c b/libavformat/wavdec.c index b016185a1b..e280be4d44 100644 --- a/libavformat/wavdec.c +++ b/libavformat/wavdec.c @@ -822,6 +822,7 @@ static int w64_read_header(AVFormatContext *s) samples = avio_rl64(pb); if (samples > 0) st->duration = samples; + avio_skip(pb, FFALIGN(size, INT64_C(8)) - 32); } else if (!memcmp(guid, ff_w64_guid_data, 16)) { wav->data_end = avio_tell(pb) + size - 24;