提交 50a6c318 编写于 作者: R Reimar Döffinger

Avoid crash if there is a rtjpeg quant header but no video stream in file

Originally committed as revision 5305 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 2d5545c3
......@@ -65,7 +65,7 @@ static int get_codec_data(ByteIOContext *pb, AVStream *vst,
subtype = get_byte(pb);
url_fskip(pb, 6);
size = PKTSIZE(get_le32(pb));
if (subtype == 'R') {
if (vst && subtype == 'R') {
vst->codec->extradata_size = size;
vst->codec->extradata = av_malloc(size);
get_buffer(pb, vst->codec->extradata, size);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册