From 611b17d79b659d68ce4ac2ca9c6eaf509237aad0 Mon Sep 17 00:00:00 2001 From: Dave Yeo Date: Wed, 10 Mar 2010 07:43:56 +0000 Subject: [PATCH] Using struct timeval requires sys/time.h, fixes compilation on some OSes Patch by Dave Yeo, daveryeo at telus dot net Originally committed as revision 22425 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rtpproto.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/rtpproto.c b/libavformat/rtpproto.c index bb4aa31a1a..ac8c3dbd6d 100644 --- a/libavformat/rtpproto.c +++ b/libavformat/rtpproto.c @@ -36,6 +36,7 @@ #if HAVE_SYS_SELECT_H #include #endif +#include #define RTP_TX_BUF_SIZE (64 * 1024) #define RTP_RX_BUF_SIZE (128 * 1024)