diff options
author | Erik Hovland <erik@hovland.org> | 2008-05-29 13:40:43 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-05-29 13:40:43 +0000 |
commit | f094b6627db5d7e32bf03361ec060fa28b59564c (patch) | |
tree | e4f76cefc012920622b61962c8b6eb42f670d38b | |
parent | 1489db821c3d76069c1186de5bddcdc288db0d2c (diff) | |
download | ffmpeg-f094b6627db5d7e32bf03361ec060fa28b59564c.tar.gz |
Remove unnecessary header #includes.
Extracted from a patch by Erik Hovland, erik hovland org.
Originally committed as revision 13531 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | ffmpeg.c | 1 | ||||
-rw-r--r-- | ffplay.c | 1 | ||||
-rw-r--r-- | ffserver.c | 1 | ||||
-rw-r--r-- | libavformat/siff.c | 1 | ||||
-rw-r--r-- | libavformat/smacker.c | 1 | ||||
-rw-r--r-- | libavformat/sol.c | 1 | ||||
-rw-r--r-- | vhook/watermark.c | 1 |
7 files changed, 0 insertions, 7 deletions
@@ -55,7 +55,6 @@ #undef time //needed because HAVE_AV_CONFIG_H is defined on top #include <time.h> -#include "version.h" #include "cmdutils.h" #undef NDEBUG @@ -27,7 +27,6 @@ #include "libavdevice/avdevice.h" #include "libswscale/swscale.h" -#include "version.h" #include "cmdutils.h" #include <SDL.h> diff --git a/ffserver.c b/ffserver.c index e12e98e3fe..9a232ed0f4 100644 --- a/ffserver.c +++ b/ffserver.c @@ -50,7 +50,6 @@ #include <dlfcn.h> #endif -#include "version.h" #include "ffserver.h" #include "cmdutils.h" diff --git a/libavformat/siff.c b/libavformat/siff.c index 00b4eaa9dd..c8f892b8d5 100644 --- a/libavformat/siff.c +++ b/libavformat/siff.c @@ -20,7 +20,6 @@ */ #include "avformat.h" -#include "riff.h" enum SIFFTags{ TAG_SIFF = MKTAG('S', 'I', 'F', 'F'), diff --git a/libavformat/smacker.c b/libavformat/smacker.c index 8066c26f01..460ed0c93b 100644 --- a/libavformat/smacker.c +++ b/libavformat/smacker.c @@ -25,7 +25,6 @@ #include "libavutil/bswap.h" #include "avformat.h" -#include "riff.h" #define SMACKER_PAL 0x01 #define SMACKER_FLAG_RING_FRAME 0x01 diff --git a/libavformat/sol.c b/libavformat/sol.c index 0896c0aca8..f2eedc7fe7 100644 --- a/libavformat/sol.c +++ b/libavformat/sol.c @@ -26,7 +26,6 @@ #include "libavutil/bswap.h" #include "avformat.h" #include "raw.h" -#include "riff.h" /* if we don't know the size in advance */ #define AU_UNKNOWN_SIZE ((uint32_t)(~0)) diff --git a/vhook/watermark.c b/vhook/watermark.c index 74f5095313..1d4be28f6c 100644 --- a/vhook/watermark.c +++ b/vhook/watermark.c @@ -62,7 +62,6 @@ #include "libavformat/avformat.h" #include "libavformat/framehook.h" #include "libswscale/swscale.h" -#include "cmdutils.h" static int sws_flags = SWS_BICUBIC; |