[Ffmpeg-cvslog] r7582 - trunk/libavformat/udp.c
mmu_man
subversion
Thu Jan 18 18:48:21 CET 2007
Author: mmu_man
Date: Thu Jan 18 18:48:21 2007
New Revision: 7582
Modified:
trunk/libavformat/udp.c
Log:
The long awaited BeOS cleanup, phase 1.1: removed useless ifdef, changed check for net_server to IP_MULTICAST_TTL.
Modified: trunk/libavformat/udp.c
==============================================================================
--- trunk/libavformat/udp.c (original)
+++ trunk/libavformat/udp.c Thu Jan 18 18:48:21 2007
@@ -359,7 +359,7 @@
getsockname(udp_fd, (struct sockaddr *)&my_addr1, &len);
s->local_port = ntohs(my_addr1.sin_port);
-#ifndef CONFIG_BEOS_NETSERVER
+#ifdef IP_MULTICAST_TTL
if (s->is_multicast) {
if (h->flags & URL_WRONLY) {
/* output */
@@ -387,7 +387,6 @@
udp_fd = udp_ipv6_set_local(h);
if (udp_fd < 0)
goto fail;
-#ifndef CONFIG_BEOS_NETSERVER
if (s->is_multicast) {
if (h->flags & URL_WRONLY) {
if (udp_ipv6_set_multicast_ttl(udp_fd, s->ttl, (struct sockaddr *)&s->dest_addr) < 0)
@@ -398,7 +397,6 @@
}
}
#endif
-#endif
if (is_output) {
/* limit the tx buf size to limit latency */
More information about the ffmpeg-cvslog
mailing list