mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/vocdec: return AVERROR_EOF when EOF is reached
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
4b948dcadb
commit
fa7e9f9401
|
@ -75,7 +75,7 @@ ff_voc_get_packet(AVFormatContext *s, AVPacket *pkt, AVStream *st, int max_size)
|
|||
while (!voc->remaining_size) {
|
||||
type = avio_r8(pb);
|
||||
if (type == VOC_TYPE_EOF)
|
||||
return AVERROR(EIO);
|
||||
return AVERROR_EOF;
|
||||
voc->remaining_size = avio_rl24(pb);
|
||||
if (!voc->remaining_size) {
|
||||
if (!s->pb->seekable)
|
||||
|
|
Loading…
Reference in New Issue