[FFmpeg-cvslog] r22425 - trunk/libavformat/rtpproto.c
mstorsjo
subversion
Wed Mar 10 08:43:57 CET 2010
Author: mstorsjo
Date: Wed Mar 10 08:43:56 2010
New Revision: 22425
Log:
Using struct timeval requires sys/time.h, fixes compilation on some OSes
Modified:
trunk/libavformat/rtpproto.c
Modified: trunk/libavformat/rtpproto.c
==============================================================================
--- trunk/libavformat/rtpproto.c Wed Mar 10 06:25:06 2010 (r22424)
+++ trunk/libavformat/rtpproto.c Wed Mar 10 08:43:56 2010 (r22425)
@@ -36,6 +36,7 @@
#if HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
+#include <sys/time.h>
#define RTP_TX_BUF_SIZE (64 * 1024)
#define RTP_RX_BUF_SIZE (128 * 1024)
More information about the ffmpeg-cvslog
mailing list