comparison rtpproto.c @ 1754:1f7a6dc01100 libavformat

move networking #includes into separate file patch by Ramiro Polla angustia =a= arrozcru =d= no-ip =d= org
author mru
date Sun, 04 Feb 2007 17:05:44 +0000
parents 92afee454599
children eb16c64144ee
comparison
equal deleted inserted replaced
1753:d0a97c73ee97 1754:1f7a6dc01100
20 */ 20 */
21 #include "avformat.h" 21 #include "avformat.h"
22 22
23 #include <unistd.h> 23 #include <unistd.h>
24 #include <stdarg.h> 24 #include <stdarg.h>
25 #include <sys/types.h> 25 #include "network.h"
26 #include <sys/socket.h>
27 #include <netinet/in.h>
28 #include <arpa/inet.h>
29 #include <netdb.h>
30 #include <fcntl.h> 26 #include <fcntl.h>
31 27
32 #define RTP_TX_BUF_SIZE (64 * 1024) 28 #define RTP_TX_BUF_SIZE (64 * 1024)
33 #define RTP_RX_BUF_SIZE (128 * 1024) 29 #define RTP_RX_BUF_SIZE (128 * 1024)
34 30