use av_malloc instead of malloc

Originally committed as revision 1412 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Fabrice Bellard 2003-01-07 17:44:21 +00:00
parent ea0f841a54
commit d9823692f5
1 changed files with 2 additions and 2 deletions

View File

@ -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;