mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-11 17:55:21 +00:00
udp: Set ttl for read-write streams, too, not only for write-only ones
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
c700fdb00f
commit
2bfd92b330
@ -400,11 +400,12 @@ static int udp_open(URLContext *h, const char *uri, int flags)
|
||||
s->local_port = udp_port(&my_addr, len);
|
||||
|
||||
if (s->is_multicast) {
|
||||
if (!(h->flags & AVIO_FLAG_READ)) {
|
||||
if (h->flags & AVIO_FLAG_WRITE) {
|
||||
/* output */
|
||||
if (udp_set_multicast_ttl(udp_fd, s->ttl, (struct sockaddr *)&s->dest_addr) < 0)
|
||||
goto fail;
|
||||
} else {
|
||||
}
|
||||
if (h->flags & AVIO_FLAG_READ) {
|
||||
/* input */
|
||||
if (udp_join_multicast_group(udp_fd, (struct sockaddr *)&s->dest_addr) < 0)
|
||||
goto fail;
|
||||
|
Loading…
Reference in New Issue
Block a user