Commit 06a43bae authored by Michael Niedermayer's avatar Michael Niedermayer

av_find_stream_info: change read_size to 64bit

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 9ea6c148
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment