mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/rmdec: Check codec_data_size
Fixes infinite loop Fixes Ticket4154 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
eac5c7b837
commit
a6f730730b
|
@ -312,6 +312,9 @@ ff_rm_read_mdpr_codecdata (AVFormatContext *s, AVIOContext *pb,
|
||||||
int64_t codec_pos;
|
int64_t codec_pos;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
if (codec_data_size < 0)
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
|
|
||||||
avpriv_set_pts_info(st, 64, 1, 1000);
|
avpriv_set_pts_info(st, 64, 1, 1000);
|
||||||
codec_pos = avio_tell(pb);
|
codec_pos = avio_tell(pb);
|
||||||
v = avio_rb32(pb);
|
v = avio_rb32(pb);
|
||||||
|
|
Loading…
Reference in New Issue