]> git.sesse.net Git - ffmpeg/commitdiff
segafilm: Fix current_sample after seeking and avio_seek return type
authorMichael Niedermayer <michael@niedermayer.cc>
Fri, 13 Nov 2015 12:32:13 +0000 (13:32 +0100)
committerVittorio Giovara <vittorio.giovara@gmail.com>
Sat, 14 Nov 2015 02:39:44 +0000 (03:39 +0100)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavformat/segafilm.c

index 256c474d47b4aeac0868922a48ddeabf4f9b7408..5516019d77fb026cacd3da9ccfb48c690bd3da74 100644 (file)
@@ -296,13 +296,14 @@ static int film_read_seek(AVFormatContext *s, int stream_index, int64_t timestam
 {
     FilmDemuxContext *film = s->priv_data;
     AVStream *st = s->streams[stream_index];
+    int64_t pos;
     int ret = av_index_search_timestamp(st, timestamp, flags);
     if (ret < 0)
         return ret;
 
-    ret = avio_seek(s->pb, st->index_entries[ret].pos, SEEK_SET);
-    if (ret < 0)
-        return ret;
+    pos = avio_seek(s->pb, st->index_entries[ret].pos, SEEK_SET);
+    if (pos < 0)
+        return pos;
 
     film->current_sample = ret;