mirror of https://git.ffmpeg.org/ffmpeg.git
lavf/bluray: translate a read of 0 to EOF
Yet another case of forgotten 0 =! EOF translation. The libbluray documentation specifically mentions that a read of 0 is EOF. Reported by Fyr on IRC.
This commit is contained in:
parent
053ee996a0
commit
b995ec078f
|
@ -198,7 +198,7 @@ static int bluray_read(URLContext *h, unsigned char *buf, int size)
|
|||
|
||||
len = bd_read(bd->bd, buf, size);
|
||||
|
||||
return len;
|
||||
return len == 0 ? AVERROR_EOF : len;
|
||||
}
|
||||
|
||||
static int64_t bluray_seek(URLContext *h, int64_t pos, int whence)
|
||||
|
|
Loading…
Reference in New Issue