diff options
author | Dave Yeo <daveryeo@telus.net> | 2008-08-16 18:39:30 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2008-08-16 18:39:30 +0000 |
commit | e748e34dd6427271b779978a61156e47bfab3c8e (patch) | |
tree | 22d4b495b24da3a962984c41ae3f4b7a71f8b4d1 | |
parent | e9e3c9801ec7445652cae3b2569b737ec391973b (diff) | |
download | ffmpeg-e748e34dd6427271b779978a61156e47bfab3c8e.tar.gz |
struct timeval requires #include <sys/time.h>
patch by Dave Yeo daveryeo _at_ telus _dot_ net
Originally committed as revision 14793 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/os_support.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/os_support.c b/libavformat/os_support.c index 434d4b8693..e6dbc307dd 100644 --- a/libavformat/os_support.c +++ b/libavformat/os_support.c @@ -27,6 +27,7 @@ #include "avformat.h" #include <unistd.h> #include <fcntl.h> +#include <sys/time.h> #include "os_support.h" #ifdef CONFIG_NETWORK |