Commit 4bf3bc6f authored by Piotr Bandurski's avatar Piotr Bandurski Committed by Paul B Mahol

sierravmd: signal EOF

parent e94f4294
...@@ -247,7 +247,7 @@ static int vmd_read_packet(AVFormatContext *s, ...@@ -247,7 +247,7 @@ static int vmd_read_packet(AVFormatContext *s,
vmd_frame *frame; vmd_frame *frame;
if (vmd->current_frame >= vmd->frame_count) if (vmd->current_frame >= vmd->frame_count)
return AVERROR(EIO); return AVERROR_EOF;
frame = &vmd->frame_table[vmd->current_frame]; frame = &vmd->frame_table[vmd->current_frame];
/* position the stream (will probably be there already) */ /* position the stream (will probably be there already) */
......
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