Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
6501dcfb
Commit
6501dcfb
authored
Jun 19, 2012
by
Mans Rullgard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unnecessary inclusions of [sys/]time.h
Signed-off-by:
Mans Rullgard
<
mans@mansr.com
>
parent
4e5a5148
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
0 additions
and
16 deletions
+0
-16
avconv.c
avconv.c
+0
-1
avserver.c
avserver.c
+0
-1
dv1394.c
libavdevice/dv1394.c
+0
-2
fbdev.c
libavdevice/fbdev.c
+0
-1
oss_audio.c
libavdevice/oss_audio.c
+0
-2
v4l2.c
libavdevice/v4l2.c
+0
-1
rtpproto.c
libavformat/rtpproto.c
+0
-1
rtsp.c
libavformat/rtsp.c
+0
-1
rtspenc.c
libavformat/rtspenc.c
+0
-1
sapdec.c
libavformat/sapdec.c
+0
-1
sctp.c
libavformat/sctp.c
+0
-1
tcp.c
libavformat/tcp.c
+0
-1
udp.c
libavformat/udp.c
+0
-1
parseutils.c
libavutil/parseutils.c
+0
-1
No files found.
avconv.c
View file @
6501dcfb
...
...
@@ -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>
...
...
avserver.c
View file @
6501dcfb
...
...
@@ -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>
...
...
libavdevice/dv1394.c
View file @
6501dcfb
...
...
@@ -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"
...
...
libavdevice/fbdev.c
View file @
6501dcfb
...
...
@@ -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>
...
...
libavdevice/oss_audio.c
View file @
6501dcfb
...
...
@@ -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"
...
...
libavdevice/v4l2.c
View file @
6501dcfb
...
...
@@ -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"
...
...
libavformat/rtpproto.c
View file @
6501dcfb
...
...
@@ -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)
...
...
libavformat/rtsp.c
View file @
6501dcfb
...
...
@@ -30,7 +30,6 @@
#include "avformat.h"
#include "avio_internal.h"
#include <sys/time.h>
#if HAVE_POLL_H
#include <poll.h>
#endif
...
...
libavformat/rtspenc.c
View file @
6501dcfb
...
...
@@ -21,7 +21,6 @@
#include "avformat.h"
#include <sys/time.h>
#if HAVE_POLL_H
#include <poll.h>
#endif
...
...
libavformat/sapdec.c
View file @
6501dcfb
...
...
@@ -30,7 +30,6 @@
#if HAVE_POLL_H
#include <poll.h>
#endif
#include <sys/time.h>
struct
SAPState
{
URLContext
*
ann_fd
;
...
...
libavformat/sctp.c
View file @
6501dcfb
...
...
@@ -39,7 +39,6 @@
#include <netinet/in.h>
#include <netinet/sctp.h>
#include <sys/time.h>
#include <unistd.h>
#include "config.h"
...
...
libavformat/tcp.c
View file @
6501dcfb
...
...
@@ -28,7 +28,6 @@
#if HAVE_POLL_H
#include <poll.h>
#endif
#include <sys/time.h>
typedef
struct
TCPContext
{
int
fd
;
...
...
libavformat/udp.c
View file @
6501dcfb
...
...
@@ -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
...
...
libavutil/parseutils.c
View file @
6501dcfb
...
...
@@ -21,7 +21,6 @@
* misc parsing utilities
*/
#include <sys/time.h>
#include <time.h>
#include "avstring.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment