Re: [FFmpeg-devel] [PATCH 2/2] avformat/dashenc: Persistent HTTP connections supported as an option

2017-12-16 Thread Karthick Jeyapal
On 12/15/17 9:36 PM, Karthick J wrote: From: Karthick Jeyapal <kjeya...@akamai.com> --- libavformat/dashenc.c | 67 +-- 1 file changed, 54 insertions(+), 13 deletions(-) diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c

Re: [FFmpeg-devel] [PATCH 1/4] avformat/hlsenc: fix first fragment mp4 do not split bug

2017-12-18 Thread Karthick Jeyapal
On 12/18/17 2:17 PM, Steven Liu wrote: fix ticket id: 6888 Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 72 1 file changed, 62 insertions(+), 10 deletions(-) diff --git a/libavformat/hlsenc.c

Re: [FFmpeg-devel] [PATCH 2/4] avformat/hlsenc: reindent after previous commits

2017-12-18 Thread Karthick Jeyapal
On 12/18/17 2:17 PM, Steven Liu wrote: Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index f51fec1030..0eebcb4462 100644 ---

[FFmpeg-devel] Fwd: Re: [PATCH 4/4] avformat/hlsenc: add http options to m3u8 hlsenc

2017-12-18 Thread Karthick Jeyapal
On 12/18/17 2:17 PM, Steven Liu wrote: Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 0cb75ff198..636b7db183 100644 ---

Re: [FFmpeg-devel] [PATCH 3/4] avformat/hlsenc: use hlsenc_io_* APIs

2017-12-18 Thread Karthick Jeyapal
On 12/19/17 9:29 AM, 刘歧 wrote: On 19 Dec 2017, at 11:55, Karthick Jeyapal <kjeya...@akamai.com> wrote: On 12/18/17 2:17 PM, Steven Liu wrote: Signed-off-by: Steven Liu <l...@chinaffmpeg.org> --- libavformat/hlsenc.c | 23 --- 1 file changed, 12 inser

Re: [FFmpeg-devel] [PATCH 3/4] avformat/hlsenc: use hlsenc_io_* APIs

2017-12-18 Thread Karthick Jeyapal
On 12/18/17 2:17 PM, Steven Liu wrote: Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 23 --- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 0eebcb4462..0cb75ff198 100644 ---

Re: [FFmpeg-devel] [PATCH 3/4] avformat/hlsenc: use hlsenc_io_* APIs

2017-12-18 Thread Karthick Jeyapal
On 12/19/17 11:32 AM, 刘歧 wrote: On 19 Dec 2017, at 12:11, Karthick Jeyapal <kjeya...@akamai.com> wrote: On 12/19/17 9:29 AM, 刘歧 wrote: On 19 Dec 2017, at 11:55, Karthick Jeyapal <kjeya...@akamai.com> wrote: On 12/18/17 2:17 PM, Steven Liu wrote: Signed-off-by: S

Re: [FFmpeg-devel] [PATCH 3/3] avformat/hlsenc: Extend persistent http connections to playlists

2017-12-15 Thread Karthick Jeyapal
On 12/14/17 1:46 PM, 刘歧 wrote: On 14 Dec 2017, at 16:07, Karthick Jeyapal <kjeya...@akamai.com> wrote: On Nov 30, 2017, at 2:36 PM, Karthick J <kjeya...@akamai.com> wrote: From: Karthick Jeyapal <kjeya...@akamai.com> Before this patch persistent http connectio

Re: [FFmpeg-devel] [PATCH 3/3] avformat/hlsenc: Extend persistent http connections to playlists

2017-12-15 Thread Karthick Jeyapal
On 12/15/17 7:58 PM, Steven Liu wrote: Patchset LGTM, i will push it after 24 hours if there are no objections. Thanks for the reply. But that patchset doesn’t apply with the latest master anymore. I have rebased this patchset and sent a new version v2. Patchset pushed, BTW, Your

Re: [FFmpeg-devel] [PATCH 3/3] avformat/hlsenc: Extend persistent http connections to playlists

2017-12-14 Thread Karthick Jeyapal
> On Nov 30, 2017, at 2:36 PM, Karthick J <kjeya...@akamai.com> wrote: > > > From: Karthick Jeyapal <kjeya...@akamai.com> > > > Before this patch persistent http connections would work only for media > segments. > The playlists were still opening a

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: Fix a memory leak when http_persistent is 1

2017-12-20 Thread Karthick Jeyapal
On 12/21/17 9:11 AM, 刘歧 wrote: On 19 Dec 2017, at 16:49, 刘歧 <l...@chinaffmpeg.org> wrote: On 19 Dec 2017, at 14:58, Karthick J <kjeya...@akamai.com> wrote: From: Karthick Jeyapal <kjeya...@akamai.com> --- libavformat/hlsenc.c | 2 ++ 1 file changed, 2 inserti

Re: [FFmpeg-devel] [PATCH] avformat/dashenc: Fix the EXT-X-TARGETDURATION as per the hls specification

2017-12-21 Thread Karthick Jeyapal
On 12/21/17 7:45 PM, Carl Eugen Hoyos wrote: 2017-12-21 11:09 GMT+01:00 Karthick J : if (target_duration <= duration) -target_duration = hls_get_int_from_double(duration); +target_duration = lrint(duration); If this patch