From d9823692f58a0fc757fb4209b309659ebdd0fd2f Mon Sep 17 00:00:00 2001 From: Fabrice Bellard Date: Tue, 7 Jan 2003 17:44:21 +0000 Subject: use av_malloc instead of malloc Originally committed as revision 1412 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mdct.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/mdct.c') diff --git a/libavcodec/mdct.c b/libavcodec/mdct.c index 0f70ed850c..91a927cb09 100644 --- a/libavcodec/mdct.c +++ b/libavcodec/mdct.c @@ -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; -- cgit v1.2.3