Skip to content
Snippets Groups Projects
Commit 3bb96f91 authored by Alexei Svitkine's avatar Alexei Svitkine Committed by Martin Storsjö
Browse files

Correctly return EOF for smacker videos

Patch by Alexei Svitkine, alexei dot svitkine at gmail

Originally committed as revision 23749 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 31ed3f1f
No related branches found
No related tags found
No related merge requests found
...@@ -236,7 +236,7 @@ static int smacker_read_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -236,7 +236,7 @@ static int smacker_read_packet(AVFormatContext *s, AVPacket *pkt)
int pos; int pos;
if (url_feof(s->pb) || smk->cur_frame >= smk->frames) if (url_feof(s->pb) || smk->cur_frame >= smk->frames)
return AVERROR(EIO); return AVERROR_EOF;
/* if we demuxed all streams, pass another frame */ /* if we demuxed all streams, pass another frame */
if(smk->curstream < 0) { if(smk->curstream < 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment