Commit e4b8d05d authored by Baptiste Coudurier's avatar Baptiste Coudurier

return EOF in image2 demuxer

Originally committed as revision 19538 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 07fd1782
......@@ -260,6 +260,8 @@ static int img_read_packet(AVFormatContext *s1, AVPacket *pkt)
if (s1->loop_input && s->img_number > s->img_last) {
s->img_number = s->img_first;
}
if (s->img_number > s->img_last)
return AVERROR_EOF;
if (av_get_frame_filename(filename, sizeof(filename),
s->path, s->img_number)<0 && s->img_number > 1)
return AVERROR(EIO);
......
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