summaryrefslogtreecommitdiff
path: root/libavformat/smacker.c
diff options
context:
space:
mode:
authorAlexei Svitkine <alexei.svitkine@gmail.com>2010-06-24 06:55:53 +0000
committerMartin Storsjö <martin@martin.st>2010-06-24 06:55:53 +0000
commit3bb96f914e9f70a752b60f08aa217c717695c571 (patch)
tree17423035b240353938c1ad1ed6f10604586e5f2b /libavformat/smacker.c
parent31ed3f1f1de42e7179ddd903733848c652489331 (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
Diffstat (limited to 'libavformat/smacker.c')
-rw-r--r--libavformat/smacker.c2
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) {