gst/ffmpegcolorspace/mem.c: malloc() is in stdlib.h, not malloc.h
authorDavid Schleef <ds@schleef.org>
Tue, 25 May 2004 18:38:39 +0000 (18:38 +0000)
committerDavid Schleef <ds@schleef.org>
Tue, 25 May 2004 18:38:39 +0000 (18:38 +0000)
Original commit message from CVS:
* gst/ffmpegcolorspace/mem.c:  malloc() is in stdlib.h, not malloc.h

ChangeLog
gst/ffmpegcolorspace/mem.c

index 89e74943ce1c9921dc54087ad3266d1a4c125318..40e589f5033c716d13dffd248fe689ac82855cd7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-05-25  David Schleef  <ds@schleef.org>
+
+       * gst/ffmpegcolorspace/mem.c:  malloc() is in stdlib.h, not malloc.h
+
 2004-05-24  Benjamin Otte  <otte@gnome.org>
 
        * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
index 58862c418e5e673876b8c3faabe126ce4653a4df..77c326aed1ee17b68d9bf748c7204fee48a0b21b 100644 (file)
 
 #include "avcodec.h"
 
-/* here we can use OS dependant allocation functions */
-#undef malloc
-#undef free
-#undef realloc
-
-#ifdef HAVE_MALLOC_H
-#include <malloc.h>
-#endif
+#include <stdlib.h>
 
 /* you can redefine av_malloc and av_free in your project to use your
    memory allocator. You do not need to suppress this file because the