diff options
author | François Revol <revol@free.fr> | 2003-07-24 13:30:27 +0000 |
---|---|---|
committer | François Revol <revol@free.fr> | 2003-07-24 13:30:27 +0000 |
commit | 438fcb754f47ee30036e7f7819341de7fb7c5d54 (patch) | |
tree | 74a135672da1aa7bb82ec2a5a7e713b0c3aa716a /libavformat/rtsp.c | |
parent | be3564edada1b0a3ab2d4e768e87b8af93f2c40f (diff) | |
download | ffmpeg-438fcb754f47ee30036e7f7819341de7fb7c5d54.tar.gz |
OSX and BeOS networking fix (socklen_t)
Originally committed as revision 2077 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.c')
-rw-r--r-- | libavformat/rtsp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 98225cdccd..5b2a207195 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -18,6 +18,7 @@ */ #include "avformat.h" +#include <unistd.h> /* for select() prototype */ #include <sys/time.h> #include <netinet/in.h> #include <sys/socket.h> |