summaryrefslogtreecommitdiff
path: root/libavformat/yop.c
diff options
context:
space:
mode:
authorJoakim Plate <elupus@ecce.se>2011-09-14 19:43:38 +0200
committerJoakim Plate <elupus@ecce.se>2011-09-14 19:53:45 +0200
commit5d7053680479a75562258c010715761c4285fd7f (patch)
tree1fb40c6a7daf4457f58015f013c5ab3cd0924f32 /libavformat/yop.c
parent7bcd81299a83b28ee8266079646470dd3e02f2ef (diff)
[yop] Check return value of avio_seek and avoid modifying state if it fails
Diffstat (limited to 'libavformat/yop.c')
-rw-r--r--libavformat/yop.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/libavformat/yop.c b/libavformat/yop.c
index da4f050ec0..9e548f0d66 100644
--- a/libavformat/yop.c
+++ b/libavformat/yop.c
@@ -183,8 +183,6 @@ static int yop_read_seek(AVFormatContext *s, int stream_index,
int64_t frame_pos, pos_min, pos_max;
int frame_count;
- av_free_packet(&yop->video_packet);
-
if (!stream_index)
return -1;
@@ -195,9 +193,13 @@ static int yop_read_seek(AVFormatContext *s, int stream_index,
timestamp = FFMAX(0, FFMIN(frame_count, timestamp));
frame_pos = timestamp * yop->frame_size + pos_min;
+
+ if (avio_seek(s->pb, frame_pos, SEEK_SET) < 0)
+ return -1;
+
+ av_free_packet(&yop->video_packet);
yop->odd_frame = timestamp & 1;
- avio_seek(s->pb, frame_pos, SEEK_SET);
return 0;
}