diff options
author | Martin Storsjö <martin@martin.st> | 2010-10-13 11:09:06 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-10-13 11:09:06 +0000 |
commit | 54b2a4238cca294e4d74583499c961956c6cdc6b (patch) | |
tree | 66aa376a7ebd5de454528f8724c091399fc36075 | |
parent | bbf874f19ba609b9926c9ee312a2576a5171f340 (diff) | |
download | ffmpeg-54b2a4238cca294e4d74583499c961956c6cdc6b.tar.gz |
sapdec: Include sys/time.h for struct timeval
This hopefully fixes compile errors on OS/2
Originally committed as revision 25466 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/sapdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/sapdec.c b/libavformat/sapdec.c index 19d524314a..701eae2ea4 100644 --- a/libavformat/sapdec.c +++ b/libavformat/sapdec.c @@ -28,6 +28,7 @@ #if HAVE_SYS_SELECT_H #include <sys/select.h> #endif +#include <sys/time.h> struct SAPState { URLContext *ann_fd; |