diff options
author | Dave Yeo <daveryeo@telus.net> | 2010-03-10 07:44:51 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-03-10 07:44:51 +0000 |
commit | cbfa66d0cf652f65a7daa9e17d5c41e00399a150 (patch) | |
tree | 2bab84c956e7891892a99e647b1fb83e20d13cb2 | |
parent | 611b17d79b659d68ce4ac2ca9c6eaf509237aad0 (diff) | |
download | ffmpeg-cbfa66d0cf652f65a7daa9e17d5c41e00399a150.tar.gz |
Include os_support.h which has a fallback declaration of socklen_t
This fixes compilation on some OSes
Patch by Dave Yeo, daveryeo at telus dot net
Originally committed as revision 22426 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 8ade1c64ec..57406a11d2 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -30,6 +30,7 @@ #endif #include <strings.h> #include "network.h" +#include "os_support.h" #include "rtsp.h" #include "rtpdec.h" |