mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 04:30:02 +00:00
avformat/mpc8: do not return error on stream end
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
759381d96b
commit
a8a751ce9a
@ -297,7 +297,7 @@ static int mpc8_read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
return 0;
|
||||
}
|
||||
if(tag == TAG_STREAMEND)
|
||||
return AVERROR(EIO);
|
||||
return AVERROR_EOF;
|
||||
mpc8_handle_chunk(s, tag, pos, size);
|
||||
}
|
||||
return AVERROR_EOF;
|
||||
|
Loading…
Reference in New Issue
Block a user