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/avio_internal.h | |
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/avio_internal.h')
-rw-r--r-- | libavformat/avio_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avio_internal.h b/libavformat/avio_internal.h index bb2512707a..5864048811 100644 --- a/libavformat/avio_internal.h +++ b/libavformat/avio_internal.h @@ -95,7 +95,7 @@ int ffio_set_buf_size(AVIOContext *s, int buf_size); * within the current pos and pos+buf_size is possible. * Once the stream position moves outside this window this guarantee is lost. */ -int ffio_ensure_seekback(AVIOContext *s, int buf_size); +int ffio_ensure_seekback(AVIOContext *s, int64_t buf_size); int ffio_limit(AVIOContext *s, int size); |