Browse Source

[dv] Check return value of avio_seek and avoid modifying state if it fails

tags/n0.9
Joakim Plate 14 years ago
parent
commit
1df00ac80f
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      libavformat/dv.c

+ 4
- 3
libavformat/dv.c View File

@@ -475,10 +475,11 @@ static int dv_read_seek(AVFormatContext *s, int stream_index,
DVDemuxContext *c = r->dv_demux;
int64_t offset = dv_frame_offset(s, c, timestamp, flags);

dv_offset_reset(c, offset / c->sys->frame_size);
if (avio_seek(s->pb, offset, SEEK_SET) < 0)
return -1;

offset = avio_seek(s->pb, offset, SEEK_SET);
return (offset < 0) ? offset : 0;
dv_offset_reset(c, offset / c->sys->frame_size);
return 0;
}

static int dv_read_close(AVFormatContext *s)


Loading…
Cancel
Save