]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/wavdec.c
avdevice/decklink_dec: capture timecode to metadata when requested
[ffmpeg] / libavformat / wavdec.c
index b016185a1b733056c12533bcf906aeaac640e466..e280be4d44e650895db7a5ef7473960c9a4efa61 100644 (file)
@@ -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;