comparison rtpproto.c @ 3720:1968303c7566 libavformat

Surround '#include <sys/select>' by HAVE_SYS_SELECT_H. patch by Kurtnoise, kurtnoise free fr
author diego
date Thu, 14 Aug 2008 14:29:18 +0000
parents 30d4d95e068f
children c3102b189cb6
comparison
equal deleted inserted replaced
3719:6772cfc78d33 3720:1968303c7566
30 #include <unistd.h> 30 #include <unistd.h>
31 #include <stdarg.h> 31 #include <stdarg.h>
32 #include "network.h" 32 #include "network.h"
33 #include "os_support.h" 33 #include "os_support.h"
34 #include <fcntl.h> 34 #include <fcntl.h>
35 #ifdef HAVE_SYS_SELECT_H
35 #include <sys/select.h> 36 #include <sys/select.h>
37 #endif
36 38
37 #define RTP_TX_BUF_SIZE (64 * 1024) 39 #define RTP_TX_BUF_SIZE (64 * 1024)
38 #define RTP_RX_BUF_SIZE (128 * 1024) 40 #define RTP_RX_BUF_SIZE (128 * 1024)
39 41
40 typedef struct RTPContext { 42 typedef struct RTPContext {