diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-03-20 17:23:23 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-20 17:23:23 +0100 |
commit | 06a43baecd2c21c1c27d9c8fdd199ce27be028ec (patch) | |
tree | fe29244a19824bfbcb42ca271082ea08065c0826 /libavformat/utils.c | |
parent | 9ea6c14820da382281092660cbf2b502ab6f3403 (diff) | |
download | ffmpeg-06a43baecd2c21c1c27d9c8fdd199ce27be028ec.tar.gz |
av_find_stream_info: change read_size to 64bit
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index a43238bd20..13de68a238 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2733,7 +2733,8 @@ int av_find_stream_info(AVFormatContext *ic) int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options) { - int i, count, ret, read_size, j; + int i, count, ret, j; + int64_t read_size; AVStream *st; AVPacket pkt1, *pkt; int64_t old_offset = avio_tell(ic->pb); |