Browse code

add necessary #includes in headers

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

Måns Rullgård authored on 2008/05/03 22:29:39
Showing 4 changed files
... ...
@@ -25,6 +25,7 @@
25 25
 
26 26
 #include <stdint.h>
27 27
 #include "avcodec.h"
28
+#include "parser.h"
28 29
 
29 30
 typedef struct AACAC3ParseContext {
30 31
     int frame_size;
... ...
@@ -23,6 +23,8 @@
23 23
 #ifndef FFMPEG_ACELP_MATH_H
24 24
 #define FFMPEG_ACELP_MATH_H
25 25
 
26
+#include <stdint.h>
27
+
26 28
 /**
27 29
  * \brief fixed-point implementation of cosine in [0; PI) domain
28 30
  * \param arg fixed-point cosine argument, 0 <= arg < 0x4000
... ...
@@ -22,6 +22,9 @@
22 22
 
23 23
 #ifndef FFMPEG_LSP_H
24 24
 #define FFMPEG_LSP_H
25
+
26
+#include <stdint.h>
27
+
25 28
 /**
26 29
   (I.F) means fixed-point value with F fractional and I integer bits
27 30
 */
... ...
@@ -25,6 +25,7 @@
25 25
 #define FFMPEG_FIFO_H
26 26
 
27 27
 #include <stdint.h>
28
+#include "common.h"
28 29
 
29 30
 typedef struct AVFifoBuffer {
30 31
     uint8_t *buffer;