Re: [FFmpeg-devel] [PATCH] avformat/tcp: enable TCP_NODELAY by default

2017-11-14 Thread Jeyapal, Karthick
>On 11/14/17, 2:47 AM, "Aman Gupta" wrote: > >>On Mon, Nov 13, 2017 at 12:37 PM, Nicolas George wrote: >> >> Why? >> > >To potentially reduce latency, particularly when using a protocol that >builds on top of tcp like http. Yes. Apart from the latency, overall throughput could also increase in a

Re: [FFmpeg-devel] [PATCH] avformat/tcp: enable TCP_NODELAY by default

2017-11-13 Thread Aman Gupta
On Mon, Nov 13, 2017 at 12:37 PM, Nicolas George wrote: > Le tridi 23 brumaire, an CCXXVI, Aman Gupta a écrit : > > From: Aman Gupta > > > > --- > > libavformat/network.h | 1 + > > libavformat/tcp.c | 5 + > > 2 files changed, 6 insertions(+) > > Why? > To potentially reduce latency,

Re: [FFmpeg-devel] [PATCH] avformat/tcp: enable TCP_NODELAY by default

2017-11-13 Thread Nicolas George
Le tridi 23 brumaire, an CCXXVI, Aman Gupta a écrit : > From: Aman Gupta > > --- > libavformat/network.h | 1 + > libavformat/tcp.c | 5 + > 2 files changed, 6 insertions(+) Why? Regards, -- Nicolas George signature.asc Description: Digital signature _

[FFmpeg-devel] [PATCH] avformat/tcp: enable TCP_NODELAY by default

2017-11-13 Thread Aman Gupta
From: Aman Gupta --- libavformat/network.h | 1 + libavformat/tcp.c | 5 + 2 files changed, 6 insertions(+) diff --git a/libavformat/network.h b/libavformat/network.h index f83c796a95..b78e3ad6ed 100644 --- a/libavformat/network.h +++ b/libavformat/network.h @@ -59,6 +59,7 @@ int ff_net