提交 fa73604f 编写于 作者: A Aurelien Jacobs

don't use ast before checking it's not NULL

Originally committed as revision 6771 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 9e2424ce
......@@ -829,9 +829,9 @@ static int swf_read_header(AVFormatContext *s, AVFormatParameters *ap)
get_le16(pb);
}
ast = av_new_stream(s, 1);
av_set_pts_info(ast, 24, 1, 1000); /* 24 bit pts in ms */
if (!ast)
return -ENOMEM;
av_set_pts_info(ast, 24, 1, 1000); /* 24 bit pts in ms */
if (v & 0x01)
ast->codec->channels = 2;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册