Commit aa79fa9b authored by diego's avatar diego

Directly #include a bunch of indirectly #included headers.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16748 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9b37c808
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
* Miscellaneous math routines and tables. * Miscellaneous math routines and tables.
*/ */
#include <assert.h>
#include "common.h" #include "common.h"
#include "mathematics.h" #include "mathematics.h"
......
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
* default memory allocator for libavutil. * default memory allocator for libavutil.
*/ */
#include "config.h"
#include "common.h" #include "common.h"
/* here we can use OS dependent allocation functions */ /* here we can use OS dependent allocation functions */
...@@ -31,7 +32,9 @@ ...@@ -31,7 +32,9 @@
#undef free #undef free
#undef realloc #undef realloc
#include <limits.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h>
#if HAVE_MALLOC_H #if HAVE_MALLOC_H
#include <malloc.h> #include <malloc.h>
#endif #endif
......
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#ifndef AVUTIL_MEM_H #ifndef AVUTIL_MEM_H
#define AVUTIL_MEM_H #define AVUTIL_MEM_H
#include "config.h"
#include "common.h" #include "common.h"
#if defined(__ICC) || defined(__SUNPRO_C) #if defined(__ICC) || defined(__SUNPRO_C)
......
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
* @author Michael Niedermayer <michaelni@gmx.at> * @author Michael Niedermayer <michaelni@gmx.at>
*/ */
#include <assert.h>
//#include <math.h> //#include <math.h>
#include <limits.h> #include <limits.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment