From 95137bbbb472d1c0abf1181cbdfdc6eda4341c20 Mon Sep 17 00:00:00 2001
From: Diego Biurrun <diego@biurrun.de>
Date: Sat, 4 Oct 2008 11:20:02 +0000
Subject: [PATCH] =?UTF-8?q?Fix=20'make=20checkheaders',=20based=20on=20a?=
 =?UTF-8?q?=20patch=20by=20Diego=20Petten=C3=B2,=20flameeyes=20gmail=20com?=
 =?UTF-8?q?.?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Originally committed as revision 15552 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 cmdutils.h             | 3 +++
 libavcodec/aacpsy.h    | 2 +-
 libavcodec/ra288.h     | 2 ++
 libavformat/internal.h | 2 ++
 libavformat/rdt.h      | 4 ++++
 5 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/cmdutils.h b/cmdutils.h
index 2cc2ee26c7e..beba333236e 100644
--- a/cmdutils.h
+++ b/cmdutils.h
@@ -23,6 +23,9 @@
 #define FFMPEG_CMDUTILS_H
 
 #include <inttypes.h>
+#include "libavcodec/avcodec.h"
+#include "libavformat/avformat.h"
+#include "libswscale/swscale.h"
 
 /**
  * program name, defined by the program for show_version().
diff --git a/libavcodec/aacpsy.h b/libavcodec/aacpsy.h
index f0142677eee..05c93cddeb9 100644
--- a/libavcodec/aacpsy.h
+++ b/libavcodec/aacpsy.h
@@ -24,7 +24,7 @@
 
 #include "avcodec.h"
 #include "aac.h"
-#include "lowpass.h"
+//#include "lowpass.h"
 
 enum AACPsyModelType{
     AAC_PSY_TEST,              ///< a sample model to exercise encoder
diff --git a/libavcodec/ra288.h b/libavcodec/ra288.h
index df96b40299b..d7fd4b54f99 100644
--- a/libavcodec/ra288.h
+++ b/libavcodec/ra288.h
@@ -22,6 +22,8 @@
 #ifndef AVCODEC_RA288_H
 #define AVCODEC_RA288_H
 
+#include <stdint.h>
+
 static const float amptable[8]={
      0.515625,  0.90234375,  1.57910156,  2.76342773,
     -0.515625, -0.90234375, -1.57910156, -2.76342773
diff --git a/libavformat/internal.h b/libavformat/internal.h
index 4397b532600..a96f365e347 100644
--- a/libavformat/internal.h
+++ b/libavformat/internal.h
@@ -21,6 +21,8 @@
 #ifndef AVFORMAT_INTERNAL_H
 #define AVFORMAT_INTERNAL_H
 
+#include <stdint.h>
+
 char *ff_data_to_hex(char *buf, const uint8_t *src, int size);
 
 #endif /* AVFORMAT_INTERNAL_H */
diff --git a/libavformat/rdt.h b/libavformat/rdt.h
index 9f5d1c9c512..aa6cbaac3cd 100644
--- a/libavformat/rdt.h
+++ b/libavformat/rdt.h
@@ -22,6 +22,10 @@
 #ifndef AVFORMAT_RDT_H
 #define AVFORMAT_RDT_H
 
+#include <stdint.h>
+#include "avformat.h"
+#include "rtp.h"
+
 typedef struct RDTDemuxContext RDTDemuxContext;
 
 RDTDemuxContext *ff_rdt_parse_open(AVFormatContext *ic, AVStream *st,
-- 
GitLab