Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: Added option to add EXT-X-INDEPENDENT-SEGMENTS tag

2017-11-23 Thread Jeyapal, Karthick
On 11/23/17, 4:13 PM, "Carl Eugen Hoyos" wrote: > >2017-11-23 6:05 GMT+01:00 Karthick J : > >> +if (hls->flags & HLS_SPLIT_BY_TIME) { >> +// Independent segments cannot be guaranteed when splitting by time >> +hls->flags &= ~HLS_INDEPENDENT_SEGMENTS; > >Shouldn't this show a wa

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: Added option to add EXT-X-INDEPENDENT-SEGMENTS tag

2017-11-23 Thread Carl Eugen Hoyos
2017-11-23 6:05 GMT+01:00 Karthick J : > +if (hls->flags & HLS_SPLIT_BY_TIME) { > +// Independent segments cannot be guaranteed when splitting by time > +hls->flags &= ~HLS_INDEPENDENT_SEGMENTS; Shouldn't this show a warning? Carl Eugen ___

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: Added option to add EXT-X-INDEPENDENT-SEGMENTS tag

2017-11-23 Thread Aman Gupta
On Wed, Nov 22, 2017 at 9:06 PM Karthick J wrote: > --- > doc/muxers.texi | 4 > libavformat/hlsenc.c | 14 ++ > 2 files changed, 18 insertions(+) > > diff --git a/doc/muxers.texi b/doc/muxers.texi > index 0bb8ad2..9d9ca31 100644 > --- a/doc/muxers.texi > +++ b/doc/muxers.