summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2008-05-03 13:29:39 +0000
committerMåns Rullgård <mans@mansr.com>2008-05-03 13:29:39 +0000
commit7c43009358e2f8179ea20388713cc754fa67262b (patch)
tree171333ed8b39229904781124b9825ac085f68167
parent690bfceb204147d28d8a51b573b518d8e059462d (diff)
add necessary #includes in headers
Originally committed as revision 13043 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/aac_ac3_parser.h1
-rw-r--r--libavcodec/acelp_math.h2
-rw-r--r--libavcodec/lsp.h3
-rw-r--r--libavutil/fifo.h1
4 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/aac_ac3_parser.h b/libavcodec/aac_ac3_parser.h
index 37a94c8d50..2d60646a8d 100644
--- a/libavcodec/aac_ac3_parser.h
+++ b/libavcodec/aac_ac3_parser.h
@@ -25,6 +25,7 @@
#include <stdint.h>
#include "avcodec.h"
+#include "parser.h"
typedef struct AACAC3ParseContext {
int frame_size;
diff --git a/libavcodec/acelp_math.h b/libavcodec/acelp_math.h
index 95be5f62e3..ffc70c4ce5 100644
--- a/libavcodec/acelp_math.h
+++ b/libavcodec/acelp_math.h
@@ -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
diff --git a/libavcodec/lsp.h b/libavcodec/lsp.h
index 6222edb5fe..c7040848a5 100644
--- a/libavcodec/lsp.h
+++ b/libavcodec/lsp.h
@@ -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
*/
diff --git a/libavutil/fifo.h b/libavutil/fifo.h
index 3dd27bd1ff..f5fb144211 100644
--- a/libavutil/fifo.h
+++ b/libavutil/fifo.h
@@ -25,6 +25,7 @@
#define FFMPEG_FIFO_H
#include <stdint.h>
+#include "common.h"
typedef struct AVFifoBuffer {
uint8_t *buffer;