# HG changeset patch # User mru # Date 1209821379 0 # Node ID 459fe563a4dc6f4007727c30c76310d10f08aac9 # Parent df467cebd0d3562fbc365a1d96643b9b99fae38b add necessary #includes in headers diff -r df467cebd0d3 -r 459fe563a4dc aac_ac3_parser.h --- a/aac_ac3_parser.h Sat May 03 03:47:26 2008 +0000 +++ b/aac_ac3_parser.h Sat May 03 13:29:39 2008 +0000 @@ -25,6 +25,7 @@ #include #include "avcodec.h" +#include "parser.h" typedef struct AACAC3ParseContext { int frame_size; diff -r df467cebd0d3 -r 459fe563a4dc acelp_math.h --- a/acelp_math.h Sat May 03 03:47:26 2008 +0000 +++ b/acelp_math.h Sat May 03 13:29:39 2008 +0000 @@ -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 -r df467cebd0d3 -r 459fe563a4dc lsp.h --- a/lsp.h Sat May 03 03:47:26 2008 +0000 +++ b/lsp.h Sat May 03 13:29:39 2008 +0000 @@ -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 */