diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2002-05-18 23:11:09 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2002-05-18 23:11:09 +0000 |
commit | 1ea4f593658c8b161a0a725252058b49c16a6b29 (patch) | |
tree | 5bf96a2a7242b8a0c227a196a3368188a77f9d8e /libav/au.c | |
parent | 065422677a17ddb3d84a3b85b5064eb7df7e2c8a (diff) | |
download | ffmpeg-1ea4f593658c8b161a0a725252058b49c16a6b29.tar.gz |
use av memory handling functions
Originally committed as revision 528 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/au.c')
-rw-r--r-- | libav/au.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libav/au.c b/libav/au.c index 5f57ce2372..797f36472e 100644 --- a/libav/au.c +++ b/libav/au.c @@ -128,7 +128,7 @@ static int au_read_header(AVFormatContext *s, } /* now we are ready: build format streams */ - st = malloc(sizeof(AVStream)); + st = av_malloc(sizeof(AVStream)); if (!st) return -1; s->nb_streams = 1; |