C files should #include the header files of the same name.
authorDiego Biurrun <diego@biurrun.de>
Sun, 25 Jan 2009 22:40:43 +0000 (22:40 +0000)
committerDiego Biurrun <diego@biurrun.de>
Sun, 25 Jan 2009 22:40:43 +0000 (22:40 +0000)
Originally committed as revision 16792 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavutil/log.c
libavutil/mem.c

index 9248752..5fec332 100644 (file)
@@ -25,6 +25,7 @@
  */
 
 #include "avutil.h"
+#include "log.h"
 
 int av_log_level = AV_LOG_INFO;
 
index 45cd986..5413010 100644 (file)
@@ -33,6 +33,8 @@
 #include <malloc.h>
 #endif
 
+#include "mem.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
    linker will do it automatically */