diff options
author | Marton Balint <cus@passwd.hu> | 2020-01-14 19:18:01 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2020-01-25 23:16:47 +0100 |
commit | 15d160cc0b23f531a3f7f3f4c9eb463b179227f3 (patch) | |
tree | 181dba0d62df7226254e5cede032d31126077886 /libavformat/udp.c | |
parent | 67f39b32db2b68eabcc51519a2430687439f1cf5 (diff) | |
download | ffmpeg-15d160cc0b23f531a3f7f3f4c9eb463b179227f3.tar.gz |
avformat/udp: increase the default buffer size of a receiving socket to 384K
It is a common mistake that people only increase fifo_size when they experience
drops, unfortunately this does not help for higher bitrate (> 100 Mbps) streams
when the reader thread simply might not receive the packets in time (especially
under high CPU load) if the default 64 KB of kernel buffer size is used.
New default is determined so that common linux systems can set this buffer size
without tuning kernel parameters.
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavformat/udp.c')
-rw-r--r-- | libavformat/udp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/udp.c b/libavformat/udp.c index 7e59d51cc6..dce4cf76c7 100644 --- a/libavformat/udp.c +++ b/libavformat/udp.c @@ -71,6 +71,7 @@ #endif #define UDP_TX_BUF_SIZE 32768 +#define UDP_RX_BUF_SIZE 393216 #define UDP_MAX_PKT_SIZE 65536 #define UDP_HEADER_SIZE 8 @@ -636,7 +637,7 @@ static int udp_open(URLContext *h, const char *uri, int flags) is_output = !(flags & AVIO_FLAG_READ); if (s->buffer_size < 0) - s->buffer_size = is_output ? UDP_TX_BUF_SIZE : UDP_MAX_PKT_SIZE; + s->buffer_size = is_output ? UDP_TX_BUF_SIZE : UDP_RX_BUF_SIZE; if (s->sources) { if (ff_ip_parse_sources(h, s->sources, &s->filters) < 0) |