mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
dont ignore MAX_READ_SIZE
Originally committed as revision 6341 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
398f5d3f1d
commit
5fb83c3844
@ -1811,13 +1811,12 @@ int av_find_stream_info(AVFormatContext *ic)
|
|||||||
ret = count;
|
ret = count;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} else {
|
}
|
||||||
/* we did not get all the codec info, but we read too much data */
|
/* we did not get all the codec info, but we read too much data */
|
||||||
if (read_size >= MAX_READ_SIZE) {
|
if (read_size >= MAX_READ_SIZE) {
|
||||||
ret = count;
|
ret = count;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/* NOTE: a new stream can be added there if no header in file
|
/* NOTE: a new stream can be added there if no header in file
|
||||||
(AVFMTCTX_NOHEADER) */
|
(AVFMTCTX_NOHEADER) */
|
||||||
|
Loading…
Reference in New Issue
Block a user