diff mdct.c @ 11444:6f1697664bf2 libavcodec

Replace many includes of libavutil/common.h with what is actually needed This reduces the number of false dependencies on header files and speeds up compilation.
author mru
date Tue, 09 Mar 2010 17:39:19 +0000
parents 4b3da727d832
children 7dd2a45249a9
line wrap: on
line diff
--- a/mdct.c	Tue Mar 09 16:17:56 2010 +0000
+++ b/mdct.c	Tue Mar 09 17:39:19 2010 +0000
@@ -19,6 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#include <stdlib.h>
+#include <string.h>
+#include "libavutil/common.h"
 #include "libavutil/mathematics.h"
 #include "fft.h"