Browse code

Add missing header #includes.

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

Diego Biurrun authored on 2008/08/02 01:29:26
Showing 12 changed files
... ...
@@ -35,6 +35,7 @@
35 35
 
36 36
 #define LIBAVFORMAT_IDENT       "Lavf" AV_STRINGIFY(LIBAVFORMAT_VERSION)
37 37
 
38
+#include <stdint.h>
38 39
 #include <time.h>
39 40
 #include <stdio.h>  /* FILE */
40 41
 #include "libavcodec/avcodec.h"
... ...
@@ -22,7 +22,9 @@
22 22
 #ifndef FFMPEG_FFM_H
23 23
 #define FFMPEG_FFM_H
24 24
 
25
+#include <stdint.h>
25 26
 #include "avformat.h"
27
+#include "avio.h"
26 28
 
27 29
 /* The FFM file is made of blocks of fixed size */
28 30
 #define FFM_HEADER_SIZE 14
... ...
@@ -22,6 +22,7 @@
22 22
 #ifndef FFMPEG_NUT_H
23 23
 #define FFMPEG_NUT_H
24 24
 
25
+#include <stdint.h>
25 26
 //#include <limits.h>
26 27
 //#include "libavutil/adler32.h"
27 28
 //#include "libavcodec/mpegaudio.h"
... ...
@@ -25,6 +25,7 @@
25 25
 #ifndef FFMPEG_OGGDEC_H
26 26
 #define FFMPEG_OGGDEC_H
27 27
 
28
+#include <stdint.h>
28 29
 #include "avformat.h"
29 30
 
30 31
 typedef struct ogg_codec {
... ...
@@ -27,6 +27,8 @@
27 27
  * miscellaneous OS support macros and functions.
28 28
  */
29 29
 
30
+#include "config.h"
31
+
30 32
 #ifdef __MINGW32__
31 33
 #  define WIN32_LEAN_AND_MEAN
32 34
 #  include <windows.h>
... ...
@@ -22,6 +22,7 @@
22 22
 #ifndef FFMPEG_RAW_H
23 23
 #define FFMPEG_RAW_H
24 24
 
25
+#include <stdint.h>
25 26
 #include "avformat.h"
26 27
 
27 28
 int pcm_read_seek(AVFormatContext *s,
... ...
@@ -22,6 +22,7 @@
22 22
 #ifndef FFMPEG_RM_H
23 23
 #define FFMPEG_RM_H
24 24
 
25
+#include <stdint.h>
25 26
 #include "avformat.h"
26 27
 
27 28
 
... ...
@@ -21,6 +21,7 @@
21 21
 #ifndef FFMPEG_RTP_H
22 22
 #define FFMPEG_RTP_H
23 23
 
24
+#include <stdint.h>
24 25
 #include "libavcodec/avcodec.h"
25 26
 #include "avformat.h"
26 27
 
... ...
@@ -20,6 +20,7 @@
20 20
 #ifndef FFMPEG_RTP_AAC_H
21 21
 #define FFMPEG_RTP_AAC_H
22 22
 
23
+#include <stdint.h>
23 24
 #include "avformat.h"
24 25
 
25 26
 void ff_rtp_send_aac(AVFormatContext *s1, const uint8_t *buff, int size);
... ...
@@ -22,6 +22,7 @@
22 22
 #ifndef FFMPEG_RTP_H264_H
23 23
 #define FFMPEG_RTP_H264_H
24 24
 
25
+#include <stdint.h>
25 26
 #include "rtp_internal.h"
26 27
 
27 28
 extern RTPDynamicProtocolHandler ff_h264_dynamic_handler;
... ...
@@ -20,6 +20,7 @@
20 20
 #ifndef FFMPEG_RTP_MPV_H
21 21
 #define FFMPEG_RTP_MPV_H
22 22
 
23
+#include <stdint.h>
23 24
 #include "avformat.h"
24 25
 
25 26
 void ff_rtp_send_mpegvideo(AVFormatContext *s1, const uint8_t *buf1, int size);
... ...
@@ -25,6 +25,7 @@
25 25
 
26 26
 #include "libavutil/fifo.h"
27 27
 #include "avformat.h"
28
+#include "avio.h"
28 29
 #include "riff.h"    /* for CodecTag */
29 30
 
30 31
 /* should have a generic way to indicate probable size */