# HG changeset patch # User diego # Date 1232923243 0 # Node ID 51e8796fe8fc6ed9d36b3b7227483cd2e77ef8c5 # Parent d4b82de2ce47296ca02213159a68e4e97c9f1dba C files should #include the header files of the same name. diff -r d4b82de2ce47 -r 51e8796fe8fc log.c --- a/log.c Sun Jan 25 22:05:26 2009 +0000 +++ b/log.c Sun Jan 25 22:40:43 2009 +0000 @@ -25,6 +25,7 @@ */ #include "avutil.h" +#include "log.h" int av_log_level = AV_LOG_INFO; diff -r d4b82de2ce47 -r 51e8796fe8fc mem.c --- a/mem.c Sun Jan 25 22:05:26 2009 +0000 +++ b/mem.c Sun Jan 25 22:40:43 2009 +0000 @@ -33,6 +33,8 @@ #include #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 */