Skip to content

Commit

Permalink
Add missing #includes to fix 'make checkheaders'.
Browse files Browse the repository at this point in the history
Originally committed as revision 11087 to svn://svn.ffmpeg.org/ffmpeg/trunk
  • Loading branch information
DonDiego committed Nov 24, 2007
1 parent 536333a commit f0a838e
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cmdutils.h
Expand Up @@ -22,6 +22,8 @@
#ifndef FFMPEG_CMDUTILS_H #ifndef FFMPEG_CMDUTILS_H
#define FFMPEG_CMDUTILS_H #define FFMPEG_CMDUTILS_H


#include <inttypes.h>

typedef struct { typedef struct {
const char *name; const char *name;
int flags; int flags;
Expand Down
3 changes: 3 additions & 0 deletions libavcodec/intrax8.h
Expand Up @@ -19,6 +19,9 @@
#ifndef FFMPEG_INTRAX8_H #ifndef FFMPEG_INTRAX8_H
#define FFMPEG_INTRAX8_H #define FFMPEG_INTRAX8_H


#include "bitstream.h"
#include "mpegvideo.h"

typedef struct{ typedef struct{
VLC * j_ac_vlc[4];//they point to the static j_mb_vlc VLC * j_ac_vlc[4];//they point to the static j_mb_vlc
VLC * j_orient_vlc; VLC * j_orient_vlc;
Expand Down
2 changes: 2 additions & 0 deletions libavformat/asfcrypt.h
Expand Up @@ -22,6 +22,8 @@
#ifndef FFMPEG_ASFCRYPT_H #ifndef FFMPEG_ASFCRYPT_H
#define FFMPEG_ASFCRYPT_H #define FFMPEG_ASFCRYPT_H


#include <inttypes.h>

void ff_asfcrypt_dec(const uint8_t key[20], uint8_t *data, int len); void ff_asfcrypt_dec(const uint8_t key[20], uint8_t *data, int len);


#endif /* FFMPEG_ASFCRYPT_H */ #endif /* FFMPEG_ASFCRYPT_H */
2 changes: 2 additions & 0 deletions libavformat/rtp_aac.h
Expand Up @@ -20,6 +20,8 @@
#ifndef FFMPEG_RTP_AAC_H #ifndef FFMPEG_RTP_AAC_H
#define 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); void ff_rtp_send_aac(AVFormatContext *s1, const uint8_t *buff, int size);


#endif /* FFMPEG_RTP_AAC_H */ #endif /* FFMPEG_RTP_AAC_H */
2 changes: 2 additions & 0 deletions libavformat/rtp_mpv.h
Expand Up @@ -20,6 +20,8 @@
#ifndef FFMPEG_RTP_MPV_H #ifndef FFMPEG_RTP_MPV_H
#define 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); void ff_rtp_send_mpegvideo(AVFormatContext *s1, const uint8_t *buf1, int size);


#endif /* FFMPEG_RTP_MPV_H */ #endif /* FFMPEG_RTP_MPV_H */
2 changes: 2 additions & 0 deletions libavutil/des.h
Expand Up @@ -22,6 +22,8 @@
#ifndef FFMPEG_DES_H #ifndef FFMPEG_DES_H
#define FFMPEG_DES_H #define FFMPEG_DES_H


#include <inttypes.h>

/** /**
* \brief en- or decrypt an 64-bit block of data with DES * \brief en- or decrypt an 64-bit block of data with DES
* \param in data to process. * \param in data to process.
Expand Down
2 changes: 2 additions & 0 deletions libavutil/rc4.h
Expand Up @@ -21,6 +21,8 @@
#ifndef FFMPEG_RC4_H #ifndef FFMPEG_RC4_H
#define 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); void ff_rc4_enc(const uint8_t *key, int keylen, uint8_t *data, int datalen);


#endif /* FFMPEG_RC4_H */ #endif /* FFMPEG_RC4_H */

0 comments on commit f0a838e

Please sign in to comment.