Browse code

Directly #include some required headers.

Originally committed as revision 16780 to svn://svn.ffmpeg.org/ffmpeg/trunk

Diego Biurrun authored on 2009/01/26 04:11:10
Showing 5 changed files
... ...
@@ -26,7 +26,7 @@
26 26
  * external API header
27 27
  */
28 28
 
29
-
29
+#include <errno.h>
30 30
 #include "libavutil/avutil.h"
31 31
 
32 32
 #define LIBAVCODEC_VERSION_MAJOR 52
... ...
@@ -22,6 +22,7 @@
22 22
 #ifndef AVCODEC_BYTESTREAM_H
23 23
 #define AVCODEC_BYTESTREAM_H
24 24
 
25
+#include <string.h>
25 26
 #include "libavutil/common.h"
26 27
 #include "libavutil/intreadwrite.h"
27 28
 
... ...
@@ -30,6 +30,7 @@
30 30
 #ifndef AVCODEC_MPEGVIDEO_COMMON_H
31 31
 #define AVCODEC_MPEGVIDEO_COMMON_H
32 32
 
33
+#include <string.h>
33 34
 #include "avcodec.h"
34 35
 #include "dsputil.h"
35 36
 #include "mpegvideo.h"
... ...
@@ -21,6 +21,7 @@
21 21
 #ifndef AVFORMAT_MXF_H
22 22
 #define AVFORMAT_MXF_H
23 23
 
24
+#include <string.h>
24 25
 #include "avformat.h"
25 26
 #include "libavcodec/bytestream.h"
26 27
 
... ...
@@ -26,6 +26,7 @@
26 26
 #ifndef POSTPROCESS_POSTPROCESS_INTERNAL_H
27 27
 #define POSTPROCESS_POSTPROCESS_INTERNAL_H
28 28
 
29
+#include <string.h>
29 30
 #include "libavutil/avutil.h"
30 31
 #include "postprocess.h"
31 32