Commit 1e3336de authored by Laurent Aimar's avatar Laurent Aimar Committed by Janne Grunau

mpc8: Fix return value on EOF

Signed-off-by: 's avatarJanne Grunau <janne-libav@jannau.net>
parent 95010d18
......@@ -264,7 +264,7 @@ static int mpc8_read_packet(AVFormatContext *s, AVPacket *pkt)
return AVERROR(EIO);
mpc8_handle_chunk(s, tag, pos, size);
}
return 0;
return AVERROR_EOF;
}
static int mpc8_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment