Commit b69c2e0e authored by Joakim Plate's avatar Joakim Plate Committed by Justin Ruggles

yop: Check return value of avio_seek and avoid modifying state if it fails

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarJustin Ruggles <justin.ruggles@gmail.com>
parent e54165aa
......@@ -184,8 +184,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;
......@@ -196,9 +194,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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment