OSDN Git Service

add necessary #includes in headers
authorMåns Rullgård <mans@mansr.com>
Sat, 3 May 2008 13:29:39 +0000 (13:29 +0000)
committerMåns Rullgård <mans@mansr.com>
Sat, 3 May 2008 13:29:39 +0000 (13:29 +0000)
Originally committed as revision 13043 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/aac_ac3_parser.h
libavcodec/acelp_math.h
libavcodec/lsp.h
libavutil/fifo.h

index 37a94c8..2d60646 100644 (file)
@@ -25,6 +25,7 @@
 
 #include <stdint.h>
 #include "avcodec.h"
+#include "parser.h"
 
 typedef struct AACAC3ParseContext {
     int frame_size;
index 95be5f6..ffc70c4 100644 (file)
@@ -23,6 +23,8 @@
 #ifndef FFMPEG_ACELP_MATH_H
 #define FFMPEG_ACELP_MATH_H
 
+#include <stdint.h>
+
 /**
  * \brief fixed-point implementation of cosine in [0; PI) domain
  * \param arg fixed-point cosine argument, 0 <= arg < 0x4000
index 6222edb..c704084 100644 (file)
@@ -22,6 +22,9 @@
 
 #ifndef FFMPEG_LSP_H
 #define FFMPEG_LSP_H
+
+#include <stdint.h>
+
 /**
   (I.F) means fixed-point value with F fractional and I integer bits
 */
index 3dd27bd..f5fb144 100644 (file)
@@ -25,6 +25,7 @@
 #define FFMPEG_FIFO_H
 
 #include <stdint.h>
+#include "common.h"
 
 typedef struct AVFifoBuffer {
     uint8_t *buffer;