changeset 6735:459fe563a4dc libavcodec

add necessary #includes in headers
author mru
date Sat, 03 May 2008 13:29:39 +0000
parents df467cebd0d3
children 56a758caf05c
files aac_ac3_parser.h acelp_math.h lsp.h
diffstat 3 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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 <stdint.h>
 #include "avcodec.h"
+#include "parser.h"
 
 typedef struct AACAC3ParseContext {
     int frame_size;
--- 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 <stdint.h>
+
 /**
  * \brief fixed-point implementation of cosine in [0; PI) domain
  * \param arg fixed-point cosine argument, 0 <= arg < 0x4000
--- 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 <stdint.h>
+
 /**
   (I.F) means fixed-point value with F fractional and I integer bits
 */