changeset 2779:149800f1778e libavformat

Add missing #includes to fix 'make checkheaders'.
author diego
date Sat, 24 Nov 2007 10:08:02 +0000
parents 50e2307414ee
children 0b9d29522781
files asfcrypt.h rtp_aac.h rtp_mpv.h
diffstat 3 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/asfcrypt.h	Sat Nov 24 07:09:32 2007 +0000
+++ b/asfcrypt.h	Sat Nov 24 10:08:02 2007 +0000
@@ -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 */
--- a/rtp_aac.h	Sat Nov 24 07:09:32 2007 +0000
+++ b/rtp_aac.h	Sat Nov 24 10:08:02 2007 +0000
@@ -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 */
--- a/rtp_mpv.h	Sat Nov 24 07:09:32 2007 +0000
+++ b/rtp_mpv.h	Sat Nov 24 10:08:02 2007 +0000
@@ -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 */