* [FFmpeg-devel] [PATCH] avformat/libsrt: use SRT_EPOLL_IN for waiting for an incoming connection
@ 2024-02-20 21:44 Marton Balint
2024-02-24 21:18 ` Marton Balint
0 siblings, 1 reply; 2+ messages in thread
From: Marton Balint @ 2024-02-20 21:44 UTC (permalink / raw)
To: ffmpeg-devel; +Cc: Marton Balint
This is the proper poll mode for waiting for an incoming connection according
to the SRT API docs.
Fixes ticket #9142.
Signed-off-by: Marton Balint <cus@passwd.hu>
---
libavformat/libsrt.c | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
diff --git a/libavformat/libsrt.c b/libavformat/libsrt.c
index 56acb6e741..0edea9266d 100644
--- a/libavformat/libsrt.c
+++ b/libavformat/libsrt.c
@@ -250,7 +250,7 @@ static int libsrt_listen(int eid, int fd, const struct sockaddr *addr, socklen_t
if (srt_listen(fd, 1))
return libsrt_neterrno(h);
- ret = libsrt_network_wait_fd_timeout(h, eid, 1, timeout, &h->interrupt_callback);
+ ret = libsrt_network_wait_fd_timeout(h, eid, 0, timeout, &h->interrupt_callback);
if (ret < 0)
return ret;
@@ -391,7 +391,7 @@ static int libsrt_setup(URLContext *h, const char *uri, int flags)
char hostname[1024],proto[1024],path[1024];
char portstr[10];
int64_t open_timeout = 0;
- int eid, write_eid;
+ int eid;
av_url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname),
&port, path, sizeof(path), uri);
@@ -455,18 +455,21 @@ static int libsrt_setup(URLContext *h, const char *uri, int flags)
if (libsrt_socket_nonblock(fd, 1) < 0)
av_log(h, AV_LOG_DEBUG, "libsrt_socket_nonblock failed\n");
- ret = write_eid = libsrt_epoll_create(h, fd, 1);
- if (ret < 0)
- goto fail1;
if (s->mode == SRT_MODE_LISTENER) {
+ int read_eid = ret = libsrt_epoll_create(h, fd, 0);
+ if (ret < 0)
+ goto fail1;
// multi-client
- ret = libsrt_listen(write_eid, fd, cur_ai->ai_addr, cur_ai->ai_addrlen, h, s->listen_timeout);
- srt_epoll_release(write_eid);
+ ret = libsrt_listen(read_eid, fd, cur_ai->ai_addr, cur_ai->ai_addrlen, h, s->listen_timeout);
+ srt_epoll_release(read_eid);
if (ret < 0)
goto fail1;
srt_close(fd);
fd = ret;
} else {
+ int write_eid = ret = libsrt_epoll_create(h, fd, 1);
+ if (ret < 0)
+ goto fail1;
if (s->mode == SRT_MODE_RENDEZVOUS) {
if (srt_bind(fd, cur_ai->ai_addr, cur_ai->ai_addrlen)) {
ret = libsrt_neterrno(h);
--
2.35.3
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avformat/libsrt: use SRT_EPOLL_IN for waiting for an incoming connection
2024-02-20 21:44 [FFmpeg-devel] [PATCH] avformat/libsrt: use SRT_EPOLL_IN for waiting for an incoming connection Marton Balint
@ 2024-02-24 21:18 ` Marton Balint
0 siblings, 0 replies; 2+ messages in thread
From: Marton Balint @ 2024-02-24 21:18 UTC (permalink / raw)
To: FFmpeg development discussions and patches
On Tue, 20 Feb 2024, Marton Balint wrote:
> This is the proper poll mode for waiting for an incoming connection according
> to the SRT API docs.
>
> Fixes ticket #9142.
Will apply.
Regards,
Marton
>
> Signed-off-by: Marton Balint <cus@passwd.hu>
> ---
> libavformat/libsrt.c | 17 ++++++++++-------
> 1 file changed, 10 insertions(+), 7 deletions(-)
>
> diff --git a/libavformat/libsrt.c b/libavformat/libsrt.c
> index 56acb6e741..0edea9266d 100644
> --- a/libavformat/libsrt.c
> +++ b/libavformat/libsrt.c
> @@ -250,7 +250,7 @@ static int libsrt_listen(int eid, int fd, const struct sockaddr *addr, socklen_t
> if (srt_listen(fd, 1))
> return libsrt_neterrno(h);
>
> - ret = libsrt_network_wait_fd_timeout(h, eid, 1, timeout, &h->interrupt_callback);
> + ret = libsrt_network_wait_fd_timeout(h, eid, 0, timeout, &h->interrupt_callback);
> if (ret < 0)
> return ret;
>
> @@ -391,7 +391,7 @@ static int libsrt_setup(URLContext *h, const char *uri, int flags)
> char hostname[1024],proto[1024],path[1024];
> char portstr[10];
> int64_t open_timeout = 0;
> - int eid, write_eid;
> + int eid;
>
> av_url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname),
> &port, path, sizeof(path), uri);
> @@ -455,18 +455,21 @@ static int libsrt_setup(URLContext *h, const char *uri, int flags)
> if (libsrt_socket_nonblock(fd, 1) < 0)
> av_log(h, AV_LOG_DEBUG, "libsrt_socket_nonblock failed\n");
>
> - ret = write_eid = libsrt_epoll_create(h, fd, 1);
> - if (ret < 0)
> - goto fail1;
> if (s->mode == SRT_MODE_LISTENER) {
> + int read_eid = ret = libsrt_epoll_create(h, fd, 0);
> + if (ret < 0)
> + goto fail1;
> // multi-client
> - ret = libsrt_listen(write_eid, fd, cur_ai->ai_addr, cur_ai->ai_addrlen, h, s->listen_timeout);
> - srt_epoll_release(write_eid);
> + ret = libsrt_listen(read_eid, fd, cur_ai->ai_addr, cur_ai->ai_addrlen, h, s->listen_timeout);
> + srt_epoll_release(read_eid);
> if (ret < 0)
> goto fail1;
> srt_close(fd);
> fd = ret;
> } else {
> + int write_eid = ret = libsrt_epoll_create(h, fd, 1);
> + if (ret < 0)
> + goto fail1;
> if (s->mode == SRT_MODE_RENDEZVOUS) {
> if (srt_bind(fd, cur_ai->ai_addr, cur_ai->ai_addrlen)) {
> ret = libsrt_neterrno(h);
> --
> 2.35.3
>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel@ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
>
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-02-24 21:19 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-20 21:44 [FFmpeg-devel] [PATCH] avformat/libsrt: use SRT_EPOLL_IN for waiting for an incoming connection Marton Balint
2024-02-24 21:18 ` Marton Balint
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
ffmpegdev@gitmailbox.com
public-inbox-index ffmpegdev
Example config snippet for mirrors.
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git