OSDN Git Service

Add missing #includes to fix 'make checkheaders'.
authorDiego Biurrun <diego@biurrun.de>
Sat, 24 Nov 2007 10:08:02 +0000 (10:08 +0000)
committerDiego Biurrun <diego@biurrun.de>
Sat, 24 Nov 2007 10:08:02 +0000 (10:08 +0000)
Originally committed as revision 11087 to svn://svn.ffmpeg.org/ffmpeg/trunk

cmdutils.h
libavcodec/intrax8.h
libavformat/asfcrypt.h
libavformat/rtp_aac.h
libavformat/rtp_mpv.h
libavutil/des.h
libavutil/rc4.h

index 3d75cfc..102e040 100644 (file)
@@ -22,6 +22,8 @@
 #ifndef FFMPEG_CMDUTILS_H
 #define FFMPEG_CMDUTILS_H
 
+#include <inttypes.h>
+
 typedef struct {
     const char *name;
     int flags;
index 2a60328..fd8e36c 100644 (file)
@@ -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;
index 4b82ae5..dcd9c1d 100644 (file)
@@ -22,6 +22,8 @@
 #ifndef FFMPEG_ASFCRYPT_H
 #define FFMPEG_ASFCRYPT_H
 
+#include <inttypes.h>
+
 void ff_asfcrypt_dec(const uint8_t key[20], uint8_t *data, int len);
 
 #endif /* FFMPEG_ASFCRYPT_H */
index f89edf1..24b41cc 100644 (file)
@@ -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 */
index 4a7568d..36e649a 100644 (file)
@@ -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 */
index 66dac3b..e0de03e 100644 (file)
@@ -22,6 +22,8 @@
 #ifndef FFMPEG_DES_H
 #define FFMPEG_DES_H
 
+#include <inttypes.h>
+
 /**
  * \brief en- or decrypt an 64-bit block of data with DES
  * \param in data to process.
index 5e4f086..e06e12e 100644 (file)
@@ -21,6 +21,8 @@
 #ifndef FFMPEG_RC4_H
 #define FFMPEG_RC4_H
 
+#include <inttypes.h>
+
 void ff_rc4_enc(const uint8_t *key, int keylen, uint8_t *data, int datalen);
 
 #endif /* FFMPEG_RC4_H */