]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/bink.c
mxfdec: Move FooterPartition to MXFContext and make sure it's never set to zero
[ffmpeg] / libavformat / bink.c
index a54765ad1893b9f9873b264452d2b59c3b1d3d93..3cd82ac42f847976d7278258e4fdc0629bf959ae 100644 (file)
@@ -256,7 +256,9 @@ static int read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, in
         return -1;
 
     /* seek to the first frame */
-    avio_seek(s->pb, vst->index_entries[0].pos, SEEK_SET);
+    if (avio_seek(s->pb, vst->index_entries[0].pos, SEEK_SET) < 0)
+        return -1;
+
     bink->video_pts = 0;
     memset(bink->audio_pts, 0, sizeof(bink->audio_pts));
     bink->current_track = -1;