[FFmpeg-cvslog] r11011 - trunk/libavformat/udp.c
lucabe
subversion
Wed Nov 14 08:35:36 CET 2007
Author: lucabe
Date: Wed Nov 14 08:35:36 2007
New Revision: 11011
Log:
Remove some ifdefs by using the "dest_addr_len" field in both the IPv4-only
code and the protocol-independent code
Modified:
trunk/libavformat/udp.c
Modified: trunk/libavformat/udp.c
==============================================================================
--- trunk/libavformat/udp.c (original)
+++ trunk/libavformat/udp.c Wed Nov 14 08:35:36 2007
@@ -38,8 +38,8 @@ typedef struct {
struct sockaddr_in dest_addr;
#else
struct sockaddr_storage dest_addr;
- size_t dest_addr_len;
#endif
+ size_t dest_addr_len;
} UDPContext;
#define UDP_TX_BUF_SIZE 32768
@@ -234,6 +234,7 @@ int udp_set_remote_url(URLContext *h, co
return AVERROR(EIO);
s->dest_addr.sin_family = AF_INET;
s->dest_addr.sin_port = htons(port);
+ s->dest_addr_len = sizeof(s->dest_addr);
return 0;
#endif
}
@@ -441,11 +442,7 @@ static int udp_write(URLContext *h, uint
for(;;) {
ret = sendto (s->udp_fd, buf, size, 0,
(struct sockaddr *) &s->dest_addr,
-#ifndef CONFIG_IPV6
- sizeof (s->dest_addr));
-#else
s->dest_addr_len);
-#endif
if (ret < 0) {
if (ff_neterrno() != FF_NETERROR(EINTR) &&
ff_neterrno() != FF_NETERROR(EAGAIN))
More information about the ffmpeg-cvslog
mailing list