From 7c43009358e2f8179ea20388713cc754fa67262b Mon Sep 17 00:00:00 2001 From: =?utf8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Sat, 3 May 2008 13:29:39 +0000 Subject: [PATCH] add necessary #includes in headers Originally committed as revision 13043 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/aac_ac3_parser.h | 1 + libavcodec/acelp_math.h | 2 ++ libavcodec/lsp.h | 3 +++ libavutil/fifo.h | 1 + 4 files changed, 7 insertions(+) diff --git a/libavcodec/aac_ac3_parser.h b/libavcodec/aac_ac3_parser.h index 37a94c8d5..2d60646a8 100644 --- a/libavcodec/aac_ac3_parser.h +++ b/libavcodec/aac_ac3_parser.h @@ -25,6 +25,7 @@ #include #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 95be5f62e..ffc70c4ce 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 + /** * \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 6222edb5f..c7040848a 100644 --- a/libavcodec/lsp.h +++ b/libavcodec/lsp.h @@ -22,6 +22,9 @@ #ifndef FFMPEG_LSP_H #define FFMPEG_LSP_H + +#include + /** (I.F) means fixed-point value with F fractional and I integer bits */ diff --git a/libavutil/fifo.h b/libavutil/fifo.h index 3dd27bd1f..f5fb14421 100644 --- a/libavutil/fifo.h +++ b/libavutil/fifo.h @@ -25,6 +25,7 @@ #define FFMPEG_FIFO_H #include +#include "common.h" typedef struct AVFifoBuffer { uint8_t *buffer; -- 2.11.0