Re: [FFmpeg-devel] [PATCH] avutil/mem: fix wrong comment

2016-07-18 Thread Michael Niedermayer
On Tue, Jul 19, 2016 at 12:03:19AM +0800, Zhao Zhili wrote: > --- > libavutil/mem.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB No great genius has ever existed without some touch

Re: [FFmpeg-devel] [PATCH] avcodec/alsdec: implement floating point decoding

2016-07-18 Thread Michael Niedermayer
On Mon, Jul 18, 2016 at 11:42:48PM +0530, Umair Khan wrote: > On Sun, Jul 17, 2016 at 3:38 PM, Michael Niedermayer > wrote: > > On Sun, Jul 17, 2016 at 11:54:49AM +0200, Michael Niedermayer wrote: > >> On Sun, Jul 17, 2016 at 09:00:48AM +0530, Umair Khan wrote: > >> > Hi,

[FFmpeg-devel] [PATCH] avformat: Add multi protocol

2016-07-18 Thread Michael Niedermayer
TODO: docs, version bump, TODO: option passing support (as seperate commit/patch) Signed-off-by: Michael Niedermayer --- libavformat/Makefile|1 + libavformat/multi.c | 134 +++ libavformat/protocols.c |1 + 3

[FFmpeg-devel] [PATCH] libopenmpt: add subsong support

2016-07-18 Thread Josh de Kock
--- libavformat/libopenmpt.c | 8 1 file changed, 8 insertions(+) diff --git a/libavformat/libopenmpt.c b/libavformat/libopenmpt.c index 58a02be..4190510 100644 --- a/libavformat/libopenmpt.c +++ b/libavformat/libopenmpt.c @@ -36,6 +36,7 @@ typedef struct OpenMPTContext { /*

Re: [FFmpeg-devel] [PATCH] avformat: Add multi protocol

2016-07-18 Thread Steven Liu
LGTM But why don't add rtmp? Michael Niedermayer 于2016年7月18日 周一下午8:45写道: > TODO: docs, version bump, > TODO: option passing support (as seperate commit/patch) > > Signed-off-by: Michael Niedermayer > --- > libavformat/Makefile|1 + >

[FFmpeg-devel] [PATCH 2/2] doc/muxers: improve hlsenc description

2016-07-18 Thread Steven Liu
Signed-off-by: Moritz Barsnick --- doc/muxers.texi | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/muxers.texi b/doc/muxers.texi index 66539c1..5873269 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -396,8 +396,8 @@ which can be

Re: [FFmpeg-devel] [PATCH] libopenmpt: add subsong support

2016-07-18 Thread Jörn Heusipp
On 07/18/2016 02:59 PM, Josh de Kock wrote: libavformat/libopenmpt.c | 8 1 file changed, 8 insertions(+) +{"subsong", "set subsong",OFFSET(subsong), AV_OPT_TYPE_INT,{.i64 = 0}, 0, 1000, A|D}, 1. -1 is a valid

Re: [FFmpeg-devel] [PATCH] avformat: Add multi protocol

2016-07-18 Thread Nicolas George
Le primidi 1er thermidor, an CCXXIV, Michael Niedermayer a écrit : > TODO: docs, version bump, > TODO: option passing support (as seperate commit/patch) > > Signed-off-by: Michael Niedermayer > --- > libavformat/Makefile|1 + > libavformat/multi.c | 134 >

[FFmpeg-devel] [PATCH 1/2] doc/muxers: add hls_flags option description

2016-07-18 Thread Steven Liu
Signed-off-by: Steven Liu Reviewed-by: Moritz Barsnick --- doc/muxers.texi | 11 +++ 1 file changed, 11 insertions(+) diff --git a/doc/muxers.texi b/doc/muxers.texi index 1b99c7e..66539c1 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -495,6

Re: [FFmpeg-devel] [PATCH] avformat: Add multi protocol

2016-07-18 Thread Moritz Barsnick
On Mon, Jul 18, 2016 at 14:42:22 +0200, Michael Niedermayer wrote: > \ No newline at end of file Not recommended, I guess. ;-) ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] [PATCH] avutil/mem: fix wrong comment

2016-07-18 Thread Zhao Zhili
--- libavutil/mem.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavutil/mem.h b/libavutil/mem.h index 9dd9099..ae0fae1 100644 --- a/libavutil/mem.h +++ b/libavutil/mem.h @@ -339,8 +339,8 @@ void *av_dynarray2_add(void **tab_ptr, int *nb_ptr, size_t elem_size, static

Re: [FFmpeg-devel] [PATCHv2] libopenmpt: add subsong support

2016-07-18 Thread Nicolas George
Le primidi 1er thermidor, an CCXXIV, Josh de Kock a écrit : > --- > libavformat/libopenmpt.c | 14 ++ > 1 file changed, 14 insertions(+) > > diff --git a/libavformat/libopenmpt.c b/libavformat/libopenmpt.c > index 58a02be..286a908 100644 > --- a/libavformat/libopenmpt.c > +++

[FFmpeg-devel] [PATCH] avutil/mem: fix outdated comment

2016-07-18 Thread Zhao Zhili
--- libavutil/mem.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavutil/mem.h b/libavutil/mem.h index d25b322..9dd9099 100644 --- a/libavutil/mem.h +++ b/libavutil/mem.h @@ -99,14 +99,14 @@ av_alloc_size(1, 2) static inline void *av_malloc_array(size_t nmemb,

Re: [FFmpeg-devel] [PATCH] fate: add test for avfft

2016-07-18 Thread Petru Rares Sincraian
Hi, Here is the rest of the test. I changed the tabs to spaces, sorry for this. Thanks, Petru Rares. From: ffmpeg-devel on behalf of Michael Niedermayer Sent: Saturday, July 16, 2016 3:22:24 PM To:

[FFmpeg-devel] [PATCHv2] libopenmpt: add subsong support

2016-07-18 Thread Josh de Kock
--- libavformat/libopenmpt.c | 14 ++ 1 file changed, 14 insertions(+) diff --git a/libavformat/libopenmpt.c b/libavformat/libopenmpt.c index 58a02be..286a908 100644 --- a/libavformat/libopenmpt.c +++ b/libavformat/libopenmpt.c @@ -36,6 +36,7 @@ typedef struct OpenMPTContext {

Re: [FFmpeg-devel] Regarding License Purchase

2016-07-18 Thread Carl Eugen Hoyos
Umesh Nepali indianic.com> writes: > There is an android application in which i have to compress > video to upload on server. Which Android application? Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] Regarding License Purchase

2016-07-18 Thread Paul B Mahol
On 7/18/16, Umesh Nepali wrote: > Hello Everybody > > > There is an android application in which i have to compress video to upload > on server.By using FFmpeg library i have implement successfully but this was > only for 15 days trial version. So i just want to

Re: [FFmpeg-devel] [PATCH 1/3] avformat/oggparsevp8: fix pts calculation on pages ending with an invisible frame

2016-07-18 Thread James Almer
On 7/12/2016 6:36 PM, James Almer wrote: > Signed-off-by: James Almer > --- > libavformat/oggparsevp8.c | 6 +- > 1 file changed, 5 insertions(+), 1 deletion(-) Ping for patchset. ___ ffmpeg-devel mailing list

[FFmpeg-devel] Regarding License Purchase

2016-07-18 Thread Umesh Nepali
Hello Everybody There is an android application in which i have to compress video to upload on server.By using FFmpeg library i have implement successfully but this was only for 15 days trial version. So i just want to purchase official license key for commercial purpose. And also want to

Re: [FFmpeg-devel] [PATCH 2/3] libvpx: remove pre-1.4.0 checks for vp9

2016-07-18 Thread James Zern
On Fri, Jul 15, 2016 at 7:30 PM, James Almer wrote: > On 7/15/2016 10:15 PM, James Zern wrote: >> Signed-off-by: James Zern >> --- >> libavcodec/libvpx.c | 12 +--- >> 1 file changed, 1 insertion(+), 11 deletions(-) >> >> diff --git

Re: [FFmpeg-devel] [PATCH] avcodec/alsdec: implement floating point decoding

2016-07-18 Thread Thilo Borgmann
Am 18.07.16 um 20:12 schrieb Umair Khan: > On Sun, Jul 17, 2016 at 3:38 PM, Michael Niedermayer > wrote: >> On Sun, Jul 17, 2016 at 11:54:49AM +0200, Michael Niedermayer wrote: >>> On Sun, Jul 17, 2016 at 09:00:48AM +0530, Umair Khan wrote: Hi, On Sun, Jul

Re: [FFmpeg-devel] [PATCH] avcodec/alsdec: implement floating point decoding

2016-07-18 Thread Umair Khan
On Sun, Jul 17, 2016 at 3:38 PM, Michael Niedermayer wrote: > On Sun, Jul 17, 2016 at 11:54:49AM +0200, Michael Niedermayer wrote: >> On Sun, Jul 17, 2016 at 09:00:48AM +0530, Umair Khan wrote: >> > Hi, >> > >> > On Sun, Jul 17, 2016 at 12:25 AM, Thilo Borgmann

Re: [FFmpeg-devel] [PATCH 1/3] configure: require libvpx-1.4.0 for vp9 support

2016-07-18 Thread James Zern
On Sun, Jul 17, 2016 at 3:05 AM, Nicolas George wrote: > L'octidi 28 messidor, an CCXXIV, James Zern a écrit : >> this will simplify libvpxenc/dec.c and ensure a more stable vp9 encoder >> is present. >> >> Signed-off-by: James Zern >> --- >> configure | 8

Re: [FFmpeg-devel] [PATCH] avformat/matroskaenc: Write duration early during mkv_write_header

2016-07-18 Thread Soft Works
Hendrik and Michael, thanks for looking into my patch! >> if (!strcmp(s->oformat->name, "webm")) >> mkv->mode = MODE_WEBM; >> @@ -1594,6 +1620,18 @@ static int mkv_write_header(AVFormatContext *s) >> mkv->duration_offset = avio_tell(pb); >> if (!mkv->is_live) { >>

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: add myself for libopenmpt

2016-07-18 Thread Michael Niedermayer
On Sun, Jul 17, 2016 at 04:59:03PM +0100, Josh de Kock wrote: > --- > MAINTAINERS | 1 + > 1 file changed, 1 insertion(+) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB If a bugfix only changes things apparently unrelated to the bug with no

Re: [FFmpeg-devel] [PATCH 0/4] libavcodec/dnxhdenc: add support for dnxhr encoding

2016-07-18 Thread Carl Eugen Hoyos
Mark Reid gmail.com> writes: > On Sun, Jul 17, 2016 at 11:06 AM, Carl Eugen Hoyos wrote: > > Mark Reid gmail.com> writes: > > > >> The following patch series adds support for dnxhr encoding. > >> I added dnxhr as a profile to the dnxhd encoder. > > > > Is there also a raw format that our

Re: [FFmpeg-devel] [PATCH] fate: add test for avfft

2016-07-18 Thread Michael Niedermayer
On Mon, Jul 18, 2016 at 03:27:12PM +, Petru Rares Sincraian wrote: > Hi, > > > Here is the rest of the test. I changed the tabs to spaces, sorry for this. it seems this doesnt build make distclean ; ./configure && make -j12 fate tests/api/api-seek-test.c: In function ‘main’:

Re: [FFmpeg-devel] [PATCH] fate/als: add floating point decoding test

2016-07-18 Thread Michael Niedermayer
On Sun, Jul 17, 2016 at 04:28:29PM +0200, Thilo Borgmann wrote: > Am 17.07.16 um 16:22 schrieb Michael Niedermayer: > > On Sun, Jul 17, 2016 at 07:25:31PM +0530, Umair Khan wrote: > >> On Sun, Jul 17, 2016 at 1:50 PM, Thilo Borgmann > >> wrote: > >>> Hi, > >>> > From

Re: [FFmpeg-devel] [PATCH 0/4] libavcodec/dnxhdenc: add support for dnxhr encoding

2016-07-18 Thread Mark Reid
On Sun, Jul 17, 2016 at 11:06 AM, Carl Eugen Hoyos wrote: > Mark Reid gmail.com> writes: > >> The following patch series adds support for dnxhr encoding. >> I added dnxhr as a profile to the dnxhd encoder. > > Is there also a raw format that our demuxer currently does > not

Re: [FFmpeg-devel] [PATCH 0/4] libavcodec/dnxhdenc: add support for dnxhr encoding

2016-07-18 Thread Mark Reid
On Mon, Jul 18, 2016 at 3:12 PM, Carl Eugen Hoyos wrote: > Mark Reid gmail.com> writes: > >> On Sun, Jul 17, 2016 at 11:06 AM, Carl Eugen Hoyos wrote: >> > Mark Reid gmail.com> writes: >> > >> >> The following patch series adds support for dnxhr encoding. >> >> I added dnxhr

[FFmpeg-devel] [PATCH] avformat/matroskaenc: Write duration early during mkv_write_header (Rev #2)

2016-07-18 Thread Soft Works
>From a04ec6e7ad1a96013ea1f49fa790abc6e6281ca3 Mon Sep 17 00:00:00 2001 From: softworkz Date: Sun, 17 Jul 2016 04:19:41 +0200 Subject: [PATCH] avformat/matroskaenc: Write duration early during mkv_write_header (Rev #2) Revised patch: Fixes doubled header writing, checked

Re: [FFmpeg-devel] [PATCH] avformat/matroskaenc: Write duration early during mkv_write_header

2016-07-18 Thread Soft Works
Hi, >> We don't use CamelCase for anything but structs. Don't you see the variable >> above and basically everywhere? >> Change it to metadata_duration. > And reduce its scope while at it. You can declare it in the same block > you're using it. I apologize - I'm new to this project and have to

[FFmpeg-devel] [PATCH] avformat/matroskaenc: Write duration early during mkv_write_header (Rev #3)

2016-07-18 Thread Soft Works
>From 7d6d6a7775fef707ea1e8e705acc3362f20b6b89 Mon Sep 17 00:00:00 2001 From: softworkz Date: Sun, 17 Jul 2016 04:19:41 +0200 Subject: [PATCH] avformat/matroskaenc: Write duration early during mkv_write_header (Rev #3) Rev #2: Fixes doubled header writing, checked FATE

[FFmpeg-devel] [PATCH v4] libavformat/movenc: add dnxhr compatibility for apple players

2016-07-18 Thread Mark Reid
To test you need to set -vtag flag ffmpeg -i lb_uhd.mxf -vcodec copy -vtag AVdh out.mov here are some samples: https://dl.dropboxusercontent.com/u/170952/ffmpeg_samples/mxf/UHD/lb_uhd.mxf https://dl.dropboxusercontent.com/u/170952/ffmpeg_samples/mxf/UHD/hqx_uhd.mxf --- libavformat/movenc.c |

Re: [FFmpeg-devel] [PATCH] avcodec/alsdec: implement floating point decoding

2016-07-18 Thread Umair Khan
On Tue, Jul 19, 2016 at 3:08 AM, Michael Niedermayer wrote: > On Mon, Jul 18, 2016 at 11:42:48PM +0530, Umair Khan wrote: >> On Sun, Jul 17, 2016 at 3:38 PM, Michael Niedermayer >> wrote: >> > On Sun, Jul 17, 2016 at 11:54:49AM +0200, Michael

Re: [FFmpeg-devel] [PATCH 1/3] avformat/oggparsevp8: fix pts calculation on pages ending with an invisible frame

2016-07-18 Thread Michael Niedermayer
On Mon, Jul 18, 2016 at 01:56:29PM -0300, James Almer wrote: > On 7/12/2016 6:36 PM, James Almer wrote: > > Signed-off-by: James Almer > > --- > > libavformat/oggparsevp8.c | 6 +- > > 1 file changed, 5 insertions(+), 1 deletion(-) > > Ping for patchset. you are the

Re: [FFmpeg-devel] [PATCH] avformat/matroskaenc: Write duration early during mkv_write_header

2016-07-18 Thread Rostislav Pehlivanov
On 18 July 2016 at 01:34, Soft Works wrote: > This commit addresses the following scenario: > > we are using ffmpeg to transcode or remux mkv (or something else) to mkv. > The result is being streamed on-the-fly to an HTML5 client (streaming > starts while ffmpeg is still

Re: [FFmpeg-devel] [PATCH 1/4] libavformat/movenc: add dnxhr compatibility for apple players

2016-07-18 Thread Michael Niedermayer
On Mon, Jul 18, 2016 at 05:39:46PM -0700, Mark Reid wrote: > On Jul 18, 2016 5:11 PM, "Michael Niedermayer" > wrote: > > > > On Mon, Jul 18, 2016 at 04:37:49PM -0700, Mark Reid wrote: > > > On Sun, Jul 17, 2016 at 4:35 AM, Michael Niedermayer > > >

Re: [FFmpeg-devel] [PATCH 1/3] configure: require libvpx-1.4.0 for vp9 support

2016-07-18 Thread James Zern
On Mon, Jul 18, 2016 at 12:00 PM, James Zern wrote: > On Sun, Jul 17, 2016 at 3:05 AM, Nicolas George wrote: >> L'octidi 28 messidor, an CCXXIV, James Zern a écrit : >>> this will simplify libvpxenc/dec.c and ensure a more stable vp9 encoder >>> is present. >>>

Re: [FFmpeg-devel] [PATCH 1/4] libavformat/movenc: add dnxhr compatibility for apple players

2016-07-18 Thread Mark Reid
On Mon, Jul 18, 2016 at 6:27 PM, Michael Niedermayer wrote: > On Mon, Jul 18, 2016 at 05:39:46PM -0700, Mark Reid wrote: >> On Jul 18, 2016 5:11 PM, "Michael Niedermayer" >> wrote: >> > >> > On Mon, Jul 18, 2016 at 04:37:49PM -0700, Mark Reid

Re: [FFmpeg-devel] [PATCH] avformat/matroskaenc: Write duration early during mkv_write_header (Rev #2)

2016-07-18 Thread James Almer
On 7/18/2016 9:29 PM, Soft Works wrote: > From a04ec6e7ad1a96013ea1f49fa790abc6e6281ca3 Mon Sep 17 00:00:00 2001 > From: softworkz > Date: Sun, 17 Jul 2016 04:19:41 +0200 > Subject: [PATCH] avformat/matroskaenc: Write duration early during > mkv_write_header (Rev #2) > >

Re: [FFmpeg-devel] [PATCH] libavcodec/dnxhd: add support more dnxhr header prefixes

2016-07-18 Thread Mark Reid
On Sat, Jul 16, 2016 at 7:16 AM, Michael Niedermayer wrote: > On Mon, Jul 11, 2016 at 07:07:21PM -0700, Mark Reid wrote: >> --- >> libavcodec/dnxhddata.h | 15 +++ >> libavcodec/dnxhddec.c | 2 +- >> 2 files changed, 12 insertions(+), 5 deletions(-) > >

Re: [FFmpeg-devel] [PATCH 1/4] libavformat/movenc: add dnxhr compatibility for apple players

2016-07-18 Thread Michael Niedermayer
On Mon, Jul 18, 2016 at 04:37:49PM -0700, Mark Reid wrote: > On Sun, Jul 17, 2016 at 4:35 AM, Michael Niedermayer > wrote: > > On Sat, Jul 16, 2016 at 07:37:36PM -0700, Mark Reid wrote: > >> --- > >> libavcodec/dnxhddec.c | 3 +++ > >> libavformat/movenc.c | 19

Re: [FFmpeg-devel] [PATCH 0/4] libavcodec/dnxhdenc: add support for dnxhr encoding

2016-07-18 Thread Mark Reid
On Mon, Jul 18, 2016 at 3:50 PM, Carl Eugen Hoyos wrote: > Mark Reid gmail.com> writes: > >> I meant add the extension to the raw muxer. Yes it would trival. > > Sounds like a good idea. okay will do, I'll send a patch > >> The raw dnxhd demuxer has support for the format.

Re: [FFmpeg-devel] [PATCH 1/4] libavformat/movenc: add dnxhr compatibility for apple players

2016-07-18 Thread Mark Reid
On Jul 18, 2016 5:11 PM, "Michael Niedermayer" wrote: > > On Mon, Jul 18, 2016 at 04:37:49PM -0700, Mark Reid wrote: > > On Sun, Jul 17, 2016 at 4:35 AM, Michael Niedermayer > > wrote: > > > On Sat, Jul 16, 2016 at 07:37:36PM -0700, Mark Reid

Re: [FFmpeg-devel] [PATCH] avformat/matroskaenc: Write duration early during mkv_write_header

2016-07-18 Thread James Almer
On 7/18/2016 9:37 PM, Rostislav Pehlivanov wrote: > On 18 July 2016 at 01:34, Soft Works wrote: > >> This commit addresses the following scenario: >> >> we are using ffmpeg to transcode or remux mkv (or something else) to mkv. >> The result is being streamed on-the-fly to

Re: [FFmpeg-devel] Regarding License Purchase

2016-07-18 Thread compn
On Mon, 18 Jul 2016 18:55:13 +0530 Umesh Nepali wrote: > Hello Everybody > > > There is an android application in which i have to compress video to > upload on server.By using FFmpeg library i have implement > successfully but this was only for 15 days trial

Re: [FFmpeg-devel] [PATCH 0/4] libavcodec/dnxhdenc: add support for dnxhr encoding

2016-07-18 Thread Carl Eugen Hoyos
Mark Reid gmail.com> writes: > I meant add the extension to the raw muxer. Yes it would trival. Sounds like a good idea. > The raw dnxhd demuxer has support for the format. support was added > couple months ago in commit 8395b6e. Sorry for the confusion, Carl Eugen

Re: [FFmpeg-devel] [PATCH] avfilter: Add max stats to PSNR log

2016-07-18 Thread Michael Niedermayer
On Fri, Jul 15, 2016 at 11:31:35AM -0700, Lucas Cooper wrote: > This allows retroactive aggregation of the PSNR statistics (e.g. > calculating average PSNR for entire video or a segment of the video). > --- > libavfilter/vf_psnr.c | 5 + > 1 file changed, 5 insertions(+) > > diff --git

Re: [FFmpeg-devel] [PATCH 1/4] libavformat/movenc: add dnxhr compatibility for apple players

2016-07-18 Thread Mark Reid
On Sun, Jul 17, 2016 at 4:35 AM, Michael Niedermayer wrote: > On Sat, Jul 16, 2016 at 07:37:36PM -0700, Mark Reid wrote: >> --- >> libavcodec/dnxhddec.c | 3 +++ >> libavformat/movenc.c | 19 ++- >> 2 files changed, 17 insertions(+), 5 deletions(-) > >

Re: [FFmpeg-devel] [PATCH] avformat/matroskaenc: Write duration early during mkv_write_header

2016-07-18 Thread Michael Niedermayer
On Mon, Jul 18, 2016 at 12:34:50AM +, Soft Works wrote: > This commit addresses the following scenario: > > we are using ffmpeg to transcode or remux mkv (or something else) to mkv. The > result is being streamed on-the-fly to an HTML5 client (streaming starts > while ffmpeg is still

Re: [FFmpeg-devel] [PATCH] configure: add support for new CPUs

2016-07-18 Thread Michael Niedermayer
On Sun, Jul 17, 2016 at 07:15:30PM -0300, James Almer wrote: > Add new -march values for Intel and AMD CPUs introduced with GCC 5 and 6, and > improve SunCC flags accordingly. > > Signed-off-by: James Almer > --- > configure | 7 --- > 1 file changed, 4 insertions(+), 3

Re: [FFmpeg-devel] [PATCH] avformat/matroskaenc: Write duration early during mkv_write_header

2016-07-18 Thread Hendrik Leppkes
On Mon, Jul 18, 2016 at 2:34 AM, Soft Works wrote: > This commit addresses the following scenario: > > we are using ffmpeg to transcode or remux mkv (or something else) to mkv. The > result is being streamed on-the-fly to an HTML5 client (streaming starts > while ffmpeg

Re: [FFmpeg-devel] [PATCH 1/2] refine the doc of hlsenc

2016-07-18 Thread Moritz Barsnick
Hi, generally speaking, should it also be mentioned how hls_flags are used (or at least that it takes the flags syntax)? On Tue, Jul 12, 2016 at 21:35:46 +0800, Steven Liu wrote: > [PATCH 1/2] refine the doc of hlsenc Should probably be: [PATCH ...] doc/muxers: improve hlsenc description >