Revert r14497
authorMichael Niedermayer <michaelni@gmx.at>
Fri, 1 Aug 2008 22:29:29 +0000 (22:29 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 1 Aug 2008 22:29:29 +0000 (22:29 +0000)
Log:
Add missing header #includes.
Policy violation (change not approved by maintainer)
and while discussions where ongoing and no consensus has been reached.

Originally committed as revision 14500 to svn://svn.ffmpeg.org/ffmpeg/trunk

12 files changed:
libavformat/avformat.h
libavformat/ffm.h
libavformat/nut.h
libavformat/oggdec.h
libavformat/os_support.h
libavformat/raw.h
libavformat/rm.h
libavformat/rtp.h
libavformat/rtp_aac.h
libavformat/rtp_h264.h
libavformat/rtp_mpv.h
libavformat/swf.h

index 529bf24..c658686 100644 (file)
@@ -35,7 +35,6 @@
 
 #define LIBAVFORMAT_IDENT       "Lavf" AV_STRINGIFY(LIBAVFORMAT_VERSION)
 
-#include <stdint.h>
 #include <time.h>
 #include <stdio.h>  /* FILE */
 #include "libavcodec/avcodec.h"
index 1ede49a..52a8409 100644 (file)
@@ -22,9 +22,7 @@
 #ifndef FFMPEG_FFM_H
 #define FFMPEG_FFM_H
 
-#include <stdint.h>
 #include "avformat.h"
-#include "avio.h"
 
 /* The FFM file is made of blocks of fixed size */
 #define FFM_HEADER_SIZE 14
index 23ddcaa..6acebc3 100644 (file)
@@ -22,7 +22,6 @@
 #ifndef FFMPEG_NUT_H
 #define FFMPEG_NUT_H
 
-#include <stdint.h>
 //#include <limits.h>
 //#include "libavutil/adler32.h"
 //#include "libavcodec/mpegaudio.h"
index 09407d2..4e88d0e 100644 (file)
@@ -25,7 +25,6 @@
 #ifndef FFMPEG_OGGDEC_H
 #define FFMPEG_OGGDEC_H
 
-#include <stdint.h>
 #include "avformat.h"
 
 typedef struct ogg_codec {
index 4c32ad5..34970e3 100644 (file)
@@ -27,8 +27,6 @@
  * miscellaneous OS support macros and functions.
  */
 
-#include "config.h"
-
 #ifdef __MINGW32__
 #  define WIN32_LEAN_AND_MEAN
 #  include <windows.h>
index d83bf3a..3d851c8 100644 (file)
@@ -22,7 +22,6 @@
 #ifndef FFMPEG_RAW_H
 #define FFMPEG_RAW_H
 
-#include <stdint.h>
 #include "avformat.h"
 
 int pcm_read_seek(AVFormatContext *s,
index 0fea729..2f7f8df 100644 (file)
@@ -22,7 +22,6 @@
 #ifndef FFMPEG_RM_H
 #define FFMPEG_RM_H
 
-#include <stdint.h>
 #include "avformat.h"
 
 
index 1603471..36affed 100644 (file)
@@ -21,7 +21,6 @@
 #ifndef FFMPEG_RTP_H
 #define FFMPEG_RTP_H
 
-#include <stdint.h>
 #include "libavcodec/avcodec.h"
 #include "avformat.h"
 
index d4cbb59..24b41cc 100644 (file)
@@ -20,7 +20,6 @@
 #ifndef FFMPEG_RTP_AAC_H
 #define FFMPEG_RTP_AAC_H
 
-#include <stdint.h>
 #include "avformat.h"
 
 void ff_rtp_send_aac(AVFormatContext *s1, const uint8_t *buff, int size);
index db23f79..0f23e52 100644 (file)
@@ -22,7 +22,6 @@
 #ifndef FFMPEG_RTP_H264_H
 #define FFMPEG_RTP_H264_H
 
-#include <stdint.h>
 #include "rtp_internal.h"
 
 extern RTPDynamicProtocolHandler ff_h264_dynamic_handler;
index c17939b..36e649a 100644 (file)
@@ -20,7 +20,6 @@
 #ifndef FFMPEG_RTP_MPV_H
 #define FFMPEG_RTP_MPV_H
 
-#include <stdint.h>
 #include "avformat.h"
 
 void ff_rtp_send_mpegvideo(AVFormatContext *s1, const uint8_t *buf1, int size);
index 4ae2b90..8249f7d 100644 (file)
@@ -25,7 +25,6 @@
 
 #include "libavutil/fifo.h"
 #include "avformat.h"
-#include "avio.h"
 #include "riff.h"    /* for CodecTag */
 
 /* should have a generic way to indicate probable size */