diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-07-30 11:09:25 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-07-30 11:09:25 +0200 |
commit | ff9a154157ecca30f585c5eb97f1cd600f500213 (patch) | |
tree | 288c681e55ec6bf6aadb69fa1345960a34fedd0a /libavformat/aviobuf.c | |
parent | 355121bcb5d921c1e50b34a6f0b8da6a2c8a734f (diff) | |
download | ffmpeg-ff9a154157ecca30f585c5eb97f1cd600f500213.tar.gz |
Add int64_t probesize2 instead of int probesize to AVFormatContext.
Allows to set a probesize >2G.
Tested-by: Oliver Fromme
Diffstat (limited to 'libavformat/aviobuf.c')
-rw-r--r-- | libavformat/aviobuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index 24c6b79097..c7e92032d2 100644 --- a/libavformat/aviobuf.c +++ b/libavformat/aviobuf.c @@ -767,7 +767,7 @@ int ffio_fdopen(AVIOContext **s, URLContext *h) return 0; } -int ffio_ensure_seekback(AVIOContext *s, int buf_size) +int ffio_ensure_seekback(AVIOContext *s, int64_t buf_size) { uint8_t *buffer; int max_buffer_size = s->max_packet_size ? |