mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-17 20:17:55 +02:00
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
This commit is contained in:
parent
31ed3f1f1d
commit
3bb96f914e
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user