From f0a838e52505fb48d15fb23554107cbd282f8132 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sat, 24 Nov 2007 10:08:02 +0000 Subject: [PATCH] Add missing #includes to fix 'make checkheaders'. Originally committed as revision 11087 to svn://svn.ffmpeg.org/ffmpeg/trunk --- cmdutils.h | 2 ++ libavcodec/intrax8.h | 3 +++ libavformat/asfcrypt.h | 2 ++ libavformat/rtp_aac.h | 2 ++ libavformat/rtp_mpv.h | 2 ++ libavutil/des.h | 2 ++ libavutil/rc4.h | 2 ++ 7 files changed, 15 insertions(+) diff --git a/cmdutils.h b/cmdutils.h index 3d75cfc5dd..102e0403de 100644 --- a/cmdutils.h +++ b/cmdutils.h @@ -22,6 +22,8 @@ #ifndef FFMPEG_CMDUTILS_H #define FFMPEG_CMDUTILS_H +#include + typedef struct { const char *name; int flags; diff --git a/libavcodec/intrax8.h b/libavcodec/intrax8.h index 2a60328e3c..fd8e36ccc4 100644 --- a/libavcodec/intrax8.h +++ b/libavcodec/intrax8.h @@ -19,6 +19,9 @@ #ifndef FFMPEG_INTRAX8_H #define FFMPEG_INTRAX8_H +#include "bitstream.h" +#include "mpegvideo.h" + typedef struct{ VLC * j_ac_vlc[4];//they point to the static j_mb_vlc VLC * j_orient_vlc; diff --git a/libavformat/asfcrypt.h b/libavformat/asfcrypt.h index 4b82ae50a6..dcd9c1da7d 100644 --- a/libavformat/asfcrypt.h +++ b/libavformat/asfcrypt.h @@ -22,6 +22,8 @@ #ifndef FFMPEG_ASFCRYPT_H #define FFMPEG_ASFCRYPT_H +#include + void ff_asfcrypt_dec(const uint8_t key[20], uint8_t *data, int len); #endif /* FFMPEG_ASFCRYPT_H */ diff --git a/libavformat/rtp_aac.h b/libavformat/rtp_aac.h index f89edf1eb7..24b41cc425 100644 --- a/libavformat/rtp_aac.h +++ b/libavformat/rtp_aac.h @@ -20,6 +20,8 @@ #ifndef FFMPEG_RTP_AAC_H #define FFMPEG_RTP_AAC_H +#include "avformat.h" + void ff_rtp_send_aac(AVFormatContext *s1, const uint8_t *buff, int size); #endif /* FFMPEG_RTP_AAC_H */ diff --git a/libavformat/rtp_mpv.h b/libavformat/rtp_mpv.h index 4a7568d754..36e649a891 100644 --- a/libavformat/rtp_mpv.h +++ b/libavformat/rtp_mpv.h @@ -20,6 +20,8 @@ #ifndef FFMPEG_RTP_MPV_H #define FFMPEG_RTP_MPV_H +#include "avformat.h" + void ff_rtp_send_mpegvideo(AVFormatContext *s1, const uint8_t *buf1, int size); #endif /* FFMPEG_RTP_MPV_H */ diff --git a/libavutil/des.h b/libavutil/des.h index 66dac3b9d7..e0de03e246 100644 --- a/libavutil/des.h +++ b/libavutil/des.h @@ -22,6 +22,8 @@ #ifndef FFMPEG_DES_H #define FFMPEG_DES_H +#include + /** * \brief en- or decrypt an 64-bit block of data with DES * \param in data to process. diff --git a/libavutil/rc4.h b/libavutil/rc4.h index 5e4f086f97..e06e12e9e7 100644 --- a/libavutil/rc4.h +++ b/libavutil/rc4.h @@ -21,6 +21,8 @@ #ifndef FFMPEG_RC4_H #define FFMPEG_RC4_H +#include + void ff_rc4_enc(const uint8_t *key, int keylen, uint8_t *data, int datalen); #endif /* FFMPEG_RC4_H */