diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-25 22:40:43 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-25 22:40:43 +0000 |
commit | 77652a6aaff5c06267803f3770f8a613c7252171 (patch) | |
tree | 76230d836ce5e7d5ebb6a760ea73a0fd9d868bdc | |
parent | 14a8acf108d24de2794229f755773c2b7459ba67 (diff) | |
download | ffmpeg-77652a6aaff5c06267803f3770f8a613c7252171.tar.gz |
C files should #include the header files of the same name.
Originally committed as revision 16792 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/log.c | 1 | ||||
-rw-r--r-- | libavutil/mem.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/libavutil/log.c b/libavutil/log.c index 9248752a55..5fec3328c0 100644 --- a/libavutil/log.c +++ b/libavutil/log.c @@ -25,6 +25,7 @@ */ #include "avutil.h" +#include "log.h" int av_log_level = AV_LOG_INFO; diff --git a/libavutil/mem.c b/libavutil/mem.c index 45cd986ee1..5413010680 100644 --- a/libavutil/mem.c +++ b/libavutil/mem.c @@ -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 */ |