Re: [FFmpeg-devel] [PATCH 1/2] avformat/hlsenc: Modularized playlist creation to allow reuse

2017-11-22 Thread Jeyapal, Karthick
>On 11/22/17, 2:18 PM, "Hendrik Leppkes" wrote: >>On Wed, Nov 22, 2017 at 9:35 AM, Jeyapal, Karthick >>wrote: >>>On 11/22/17, 1:47 PM, "刘歧" wrote: […] >>> move the APIs to an C source file, and use ff_ prefix, refer to: >>>

Re: [FFmpeg-devel] [PATCH 1/2] avformat/hlsenc: Modularized playlist creation to allow reuse

2017-11-22 Thread Hendrik Leppkes
On Wed, Nov 22, 2017 at 9:35 AM, Jeyapal, Karthick wrote: >>On 11/22/17, 1:47 PM, "刘歧" wrote: >> >>> 在 2017年11月22日,14:53,Karthick J 写道: >>> >>> --- >>> libavformat/hlsenc.c | 130 +++--- >>>

Re: [FFmpeg-devel] [PATCH 1/2] avformat/hlsenc: Modularized playlist creation to allow reuse

2017-11-22 Thread Jeyapal, Karthick
>On 11/22/17, 1:47 PM, "刘歧" wrote: > >> 在 2017年11月22日,14:53,Karthick J 写道: >> >> --- >> libavformat/hlsenc.c | 130 +++--- >> libavformat/hlsenc.h | 158 >> +++ >> 2

Re: [FFmpeg-devel] [PATCH 1/2] avformat/hlsenc: Modularized playlist creation to allow reuse

2017-11-22 Thread 刘歧
> 在 2017年11月22日,14:53,Karthick J 写道: > > --- > libavformat/hlsenc.c | 130 +++--- > libavformat/hlsenc.h | 158 +++ > 2 files changed, 177 insertions(+), 111 deletions(-) > create mode 100644

[FFmpeg-devel] [PATCH 1/2] avformat/hlsenc: Modularized playlist creation to allow reuse

2017-11-21 Thread Karthick J
--- libavformat/hlsenc.c | 130 +++--- libavformat/hlsenc.h | 158 +++ 2 files changed, 177 insertions(+), 111 deletions(-) create mode 100644 libavformat/hlsenc.h diff --git a/libavformat/hlsenc.c