[FFmpeg-cvslog] av_find_stream_info: change read_size to 64bit
Michael Niedermayer
git at videolan.org
Wed Mar 20 17:58:30 CET 2013
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Mar 20 17:23:23 2013 +0100| [06a43baecd2c21c1c27d9c8fdd199ce27be028ec] | committer: Michael Niedermayer
av_find_stream_info: change read_size to 64bit
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=06a43baecd2c21c1c27d9c8fdd199ce27be028ec
---
libavformat/utils.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavformat/utils.c b/libavformat/utils.c
index a43238b..13de68a 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);
More information about the ffmpeg-cvslog
mailing list