mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
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.
(cherry picked from commit b995ec078f
)
This commit is contained in:
parent
b32f865969
commit
8fde71acd9
@ -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
Block a user