mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/psxstr: fix demuxing I/O error at EOF
This second patch fixes the following error at the end of a .STR stream conversion: [in#0/psxstr @ 0000000000681e80] Error during demuxing: I/O error It's been a bit of trial and error as I've never used ffmpeg, but returning AVERROR_EOF appears to be the way to go (doesn't complain anymore). Signed-off-by: aybe <aybe@users.noreply.github.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
21ed52916d
commit
f89a6e7576
|
@ -166,8 +166,12 @@ static int str_read_packet(AVFormatContext *s,
|
||||||
AVStream *st;
|
AVStream *st;
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
|
int read = avio_read(pb, sector, RAW_CD_SECTOR_SIZE);
|
||||||
|
|
||||||
if (avio_read(pb, sector, RAW_CD_SECTOR_SIZE) != RAW_CD_SECTOR_SIZE)
|
if (read == AVERROR_EOF)
|
||||||
|
return AVERROR_EOF;
|
||||||
|
|
||||||
|
if (read != RAW_CD_SECTOR_SIZE)
|
||||||
return AVERROR(EIO);
|
return AVERROR(EIO);
|
||||||
|
|
||||||
channel = sector[0x11];
|
channel = sector[0x11];
|
||||||
|
|
Loading…
Reference in New Issue