diff options
| author | Alexei Svitkine <[email protected]> | 2010-06-24 06:55:53 +0000 |
|---|---|---|
| committer | Martin Storsjö <[email protected]> | 2010-06-24 06:55:53 +0000 |
| commit | 3bb96f914e9f70a752b60f08aa217c717695c571 (patch) | |
| tree | 17423035b240353938c1ad1ed6f10604586e5f2b | |
| parent | 31ed3f1f1de42e7179ddd903733848c652489331 (diff) | |
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
| -rw-r--r-- | libavformat/smacker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/smacker.c b/libavformat/smacker.c index 0dcc286556..898dbd2ded 100644 --- a/libavformat/smacker.c +++ b/libavformat/smacker.c @@ -236,7 +236,7 @@ static int smacker_read_packet(AVFormatContext *s, AVPacket *pkt) int pos; 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(smk->curstream < 0) { |
