mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 04:30:02 +00:00
avformat/http: change seek_ret to int64
Reviewed-by: "Ronald S. Bultje" <rsbultje@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
f5273197dc
commit
ebda8216dc
@ -1220,7 +1220,8 @@ static int64_t http_seek_internal(URLContext *h, int64_t off, int whence, int fo
|
||||
static int http_read_stream(URLContext *h, uint8_t *buf, int size)
|
||||
{
|
||||
HTTPContext *s = h->priv_data;
|
||||
int err, new_location, read_ret, seek_ret;
|
||||
int err, new_location, read_ret;
|
||||
int64_t seek_ret;
|
||||
|
||||
if (!s->hd)
|
||||
return AVERROR_EOF;
|
||||
|
Loading…
Reference in New Issue
Block a user