提交 d9823692 编写于 作者: F Fabrice Bellard

use av_malloc instead of malloc

Originally committed as revision 1412 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 ea0f841a
......@@ -31,10 +31,10 @@ int ff_mdct_init(MDCTContext *s, int nbits, int inverse)
s->nbits = nbits;
s->n = n;
n4 = n >> 2;
s->tcos = malloc(n4 * sizeof(FFTSample));
s->tcos = av_malloc(n4 * sizeof(FFTSample));
if (!s->tcos)
goto fail;
s->tsin = malloc(n4 * sizeof(FFTSample));
s->tsin = av_malloc(n4 * sizeof(FFTSample));
if (!s->tsin)
goto fail;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册