Skip to content
Snippets Groups Projects
Commit 77652a6a authored by Diego Biurrun's avatar Diego Biurrun
Browse files

C files should #include the header files of the same name.

Originally committed as revision 16792 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 14a8acf1
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,7 @@
*/
#include "avutil.h"
#include "log.h"
int av_log_level = AV_LOG_INFO;
......
......@@ -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 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment