[FFmpeg-devel] [PATCH v2 2/2] lavf/udp: fix the commets for defalt UDP socket recvbuf size

Marton Balint cus at passwd.hu
Sat Jul 11 20:10:46 EEST 2020



On Sat, 11 Jul 2020, Jun Zhao wrote:

> From: Jun Zhao <barryjzhao at tencent.com>
>
> 15d160cc0b2 increased the UDP socket receiving buffer size
> (64K ->384K), but missed to update this comments.
>
> Signed-off-by: Jun Zhao <barryjzhao at tencent.com>
> ---
> libavformat/udp.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavformat/udp.c b/libavformat/udp.c
> index ad6992c..30d8041 100644
> --- a/libavformat/udp.c
> +++ b/libavformat/udp.c
> @@ -852,7 +852,7 @@ static int udp_open(URLContext *h, const char *uri, int flags)
>             goto fail;
>         }
>     } else {
> -        /* set udp recv buffer size to the requested value (default 64K) */
> +        /* set udp recv buffer size to the requested value (default UDP_RX_BUF_SIZE) */
>         tmp = s->buffer_size;
>         if (setsockopt(udp_fd, SOL_SOCKET, SO_RCVBUF, &tmp, sizeof(tmp)) < 0) {
>             ff_log_net_error(h, AV_LOG_WARNING, "setsockopt(SO_RECVBUF)");

LGTM, thanks.

Marton


More information about the ffmpeg-devel mailing list