diff options
author | Dave Yeo <daveryeo@telus.net> | 2007-11-27 11:42:09 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-11-27 11:42:09 +0000 |
commit | 93115b82f07772584f33c5f4c59bcdfa042eb564 (patch) | |
tree | e6031e2a010a737c16771a5997ae9cc989c63f78 | |
parent | d2f5fe7cc71b7dfba2eacf1ee0f247213dede7ab (diff) | |
download | ffmpeg-93115b82f07772584f33c5f4c59bcdfa042eb564.tar.gz |
Add #include "os_support.h" to restore OS/2 support.
patch by Dave Yeo, daveryeo telus net
Originally committed as revision 11096 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | ffserver.c | 1 | ||||
-rw-r--r-- | libavformat/rtpproto.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ffserver.c b/ffserver.c index 4f072286c6..c240c48907 100644 --- a/ffserver.c +++ b/ffserver.c @@ -28,6 +28,7 @@ #include "avformat.h" #include "rtsp.h" #include "rtp.h" +#include "os_support.h" #include <stdarg.h> #include <unistd.h> diff --git a/libavformat/rtpproto.c b/libavformat/rtpproto.c index 870273f8cc..d1d5a92477 100644 --- a/libavformat/rtpproto.c +++ b/libavformat/rtpproto.c @@ -24,6 +24,7 @@ #include <unistd.h> #include <stdarg.h> #include "network.h" +#include "os_support.h" #include <fcntl.h> #define RTP_TX_BUF_SIZE (64 * 1024) |