Remove unnecessary inclusions of [sys/]time.h
authorMans Rullgard <mans@mansr.com>
Tue, 19 Jun 2012 21:08:35 +0000 (22:08 +0100)
committerMans Rullgard <mans@mansr.com>
Wed, 20 Jun 2012 10:46:46 +0000 (11:46 +0100)
Signed-off-by: Mans Rullgard <mans@mansr.com>
14 files changed:
avconv.c
avserver.c
libavdevice/dv1394.c
libavdevice/fbdev.c
libavdevice/oss_audio.c
libavdevice/v4l2.c
libavformat/rtpproto.c
libavformat/rtsp.c
libavformat/rtspenc.c
libavformat/sapdec.c
libavformat/sctp.c
libavformat/tcp.c
libavformat/udp.c
libavutil/parseutils.c

index 9da8d8a..7abf10d 100644 (file)
--- a/avconv.c
+++ b/avconv.c
@@ -55,7 +55,6 @@
 
 #if HAVE_SYS_RESOURCE_H
 #include <sys/types.h>
-#include <sys/time.h>
 #include <sys/resource.h>
 #elif HAVE_GETPROCESSTIMES
 #include <windows.h>
index 5777a08..6050965 100644 (file)
@@ -51,7 +51,6 @@
 #include <poll.h>
 #endif
 #include <errno.h>
-#include <sys/time.h>
 #include <time.h>
 #include <sys/wait.h>
 #include <signal.h>
index f48d2b1..2bb65b6 100644 (file)
@@ -26,8 +26,6 @@
 #include <poll.h>
 #include <sys/ioctl.h>
 #include <sys/mman.h>
-#include <sys/time.h>
-#include <time.h>
 
 #include "libavutil/log.h"
 #include "libavutil/opt.h"
index f79893a..d789d41 100644 (file)
@@ -32,7 +32,6 @@
 #include <unistd.h>
 #include <fcntl.h>
 #include <sys/ioctl.h>
-#include <sys/time.h>
 #include <sys/mman.h>
 #include <time.h>
 #include <linux/fb.h>
index e592c32..60432c5 100644 (file)
@@ -33,8 +33,6 @@
 #include <unistd.h>
 #include <fcntl.h>
 #include <sys/ioctl.h>
-#include <sys/time.h>
-#include <sys/select.h>
 
 #include "libavutil/log.h"
 #include "libavutil/opt.h"
index b9941d2..2154b63 100644 (file)
@@ -42,7 +42,6 @@
 #else
 #include <linux/videodev2.h>
 #endif
-#include <time.h>
 #include "libavutil/imgutils.h"
 #include "libavutil/log.h"
 #include "libavutil/opt.h"
index 881a188..e70b89e 100644 (file)
@@ -39,7 +39,6 @@
 #if HAVE_POLL_H
 #include <sys/poll.h>
 #endif
-#include <sys/time.h>
 
 #define RTP_TX_BUF_SIZE  (64 * 1024)
 #define RTP_RX_BUF_SIZE  (128 * 1024)
index a70ea04..76b5df8 100644 (file)
@@ -30,7 +30,6 @@
 #include "avformat.h"
 #include "avio_internal.h"
 
-#include <sys/time.h>
 #if HAVE_POLL_H
 #include <poll.h>
 #endif
index ad6e485..c7fb2fa 100644 (file)
@@ -21,7 +21,6 @@
 
 #include "avformat.h"
 
-#include <sys/time.h>
 #if HAVE_POLL_H
 #include <poll.h>
 #endif
index 46a4b96..e377cef 100644 (file)
@@ -30,7 +30,6 @@
 #if HAVE_POLL_H
 #include <poll.h>
 #endif
-#include <sys/time.h>
 
 struct SAPState {
     URLContext *ann_fd;
index 817b004..07de498 100644 (file)
@@ -39,7 +39,6 @@
 
 #include <netinet/in.h>
 #include <netinet/sctp.h>
-#include <sys/time.h>
 #include <unistd.h>
 
 #include "config.h"
index f1bad84..e77e4c5 100644 (file)
@@ -28,7 +28,6 @@
 #if HAVE_POLL_H
 #include <poll.h>
 #endif
-#include <sys/time.h>
 
 typedef struct TCPContext {
     int fd;
index 0eaed1b..39db263 100644 (file)
@@ -35,7 +35,6 @@
 #include "network.h"
 #include "os_support.h"
 #include "url.h"
-#include <sys/time.h>
 
 #ifndef IPV6_ADD_MEMBERSHIP
 #define IPV6_ADD_MEMBERSHIP IPV6_JOIN_GROUP
index ed147ee..34f45eb 100644 (file)
@@ -21,7 +21,6 @@
  * misc parsing utilities
  */
 
-#include <sys/time.h>
 #include <time.h>
 
 #include "avstring.h"