Re: [FFmpeg-devel] [PATCH 1/2] matroskadec: Add support for parsing live header files

2015-04-05 Thread James Almer
On 04/04/15 7:54 PM, Michael Niedermayer wrote: > On Tue, Mar 31, 2015 at 04:51:57PM -0700, Vignesh Venkatasubramanian wrote: >> This patch adds support for parsing live files (produced by >> -f webm_chunk) which contains only the headers but no packets. This >> is only used when using -f webm_dash

Re: [FFmpeg-devel] [GSoC] Proof-of-concept HTTP Server

2015-04-05 Thread Nicolas George
Le tridi 13 germinal, an CCXXIII, Stephan Holljes a écrit : > From c01ec773448a76485895171cbfb296657d56da97 Mon Sep 17 00:00:00 2001 > From: Stephan Holljes > Date: Thu, 2 Apr 2015 22:49:07 +0200 > Subject: [PATCH] libavformat/http.c: Add proof-of-concept http server. > > Signed-off-by: Stephan H

Re: [FFmpeg-devel] [GSoC] Proof-of-concept HTTP Server

2015-04-05 Thread Michael Niedermayer
On Sun, Apr 05, 2015 at 10:26:15AM +0200, Nicolas George wrote: > Le tridi 13 germinal, an CCXXIII, Stephan Holljes a écrit : > > From c01ec773448a76485895171cbfb296657d56da97 Mon Sep 17 00:00:00 2001 > > From: Stephan Holljes > > Date: Thu, 2 Apr 2015 22:49:07 +0200 > > Subject: [PATCH] libavform

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/error_resilience: Avoid race with updating the error_count

2015-04-05 Thread Michael Niedermayer
On Sat, Apr 04, 2015 at 04:56:47PM +0100, Derek Buitenhuis wrote: > On 4/4/2015 11:36 AM, Michael Niedermayer wrote: > > Signed-off-by: Michael Niedermayer > > --- > > libavcodec/error_resilience.c | 13 +++-- > > libavcodec/error_resilience.h |3 ++- > > 2 files changed, 9 insertio

Re: [FFmpeg-devel] [PATCH] avfilter: handle error in query_formats() in bunch of filters

2015-04-05 Thread Michael Niedermayer
On Sat, Apr 04, 2015 at 10:33:44AM +, Paul B Mahol wrote: [...] > diff --git a/libavfilter/vf_cropdetect.c b/libavfilter/vf_cropdetect.c > index e8492cd..485ae69 100644 > --- a/libavfilter/vf_cropdetect.c > +++ b/libavfilter/vf_cropdetect.c > @@ -62,8 +62,10 @@ static int query_formats(AVFilter

Re: [FFmpeg-devel] [PATCH 4/4] mpeg4: suggest mpeg4_unpack_bframes bsf instead of avidemux/VirtualDub

2015-04-05 Thread Michael Niedermayer
On Fri, Apr 03, 2015 at 07:15:15PM +0200, Andreas Cadhalpun wrote: > Signed-off-by: Andreas Cadhalpun > --- > libavcodec/mpeg4videodec.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Tho

Re: [FFmpeg-devel] [PATCH] examples/avio_list_dir: init/deinit network

2015-04-05 Thread Michael Niedermayer
On Fri, Apr 03, 2015 at 11:56:03PM +0200, Lukasz Marek wrote: > Signed-off-by: Lukasz Marek > --- > doc/examples/avio_list_dir.c | 9 ++--- > 1 file changed, 6 insertions(+), 3 deletions(-) LGTM [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Dictatorship

[FFmpeg-devel] [PATCH] libavformat/http.c: Make http-listen work as an input stream.

2015-04-05 Thread Stephan Holljes
With this patch http can be used to listen for POST data to be used as an input stream. Signed-off-by: Stephan Holljes --- libavformat/http.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libavformat/http.c b/libavformat/http.c index 3276737..8961981 100644 --- a/li

[FFmpeg-devel] [ANNOUNCE] Outreachy (former OPW) application deadline

2015-04-05 Thread Reynaldo H. Verdejo Pinochet
Hi everyone OPW/Outreachy internships for this round are starting in May and we are about to hit the deadline for applications set for Tuesday next week. If you are interested on applying, please take a look at the main page for the program and the list of participating organizations here: https

Re: [FFmpeg-devel] [PATCH] avfilter: handle error in query_formats() in bunch of filters

2015-04-05 Thread Paul B Mahol
On 4/5/15, Michael Niedermayer wrote: > On Sat, Apr 04, 2015 at 10:33:44AM +, Paul B Mahol wrote: > [...] >> diff --git a/libavfilter/vf_cropdetect.c b/libavfilter/vf_cropdetect.c >> index e8492cd..485ae69 100644 >> --- a/libavfilter/vf_cropdetect.c >> +++ b/libavfilter/vf_cropdetect.c >> @@ -

Re: [FFmpeg-devel] [PATCH 3/4] avcodec: add unpack packed B-frames bitstream filter

2015-04-05 Thread Andreas Cadhalpun
On 05.04.2015 04:23, Michael Niedermayer wrote: > maybe you want to add a fate test ? Sure, patch attached. > i can upload a small sample to the fate samples if you have one I just created one from the sample linked in ticket #2913 (attached): $ ffmpeg -i pegasus-1958-chiptune.avi -c:v copy -ma

[FFmpeg-devel] [PATCH] chorus filter

2015-04-05 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 32 libavfilter/Makefile | 1 + libavfilter/af_chorus.c | 370 +++ libavfilter/allfilters.c | 1 + 4 files changed, 404 insertions(+) create mode 100644 libavfilter/af_chorus.c

Re: [FFmpeg-devel] [PATCH] avfilter: handle error in query_formats() in bunch of filters

2015-04-05 Thread Michael Niedermayer
On Sun, Apr 05, 2015 at 06:57:02PM +0200, Paul B Mahol wrote: > On 4/5/15, Michael Niedermayer wrote: > > On Sat, Apr 04, 2015 at 10:33:44AM +, Paul B Mahol wrote: > > [...] > >> diff --git a/libavfilter/vf_cropdetect.c b/libavfilter/vf_cropdetect.c > >> index e8492cd..485ae69 100644 > >> ---

Re: [FFmpeg-devel] [PATCH 3/4] avcodec: add unpack packed B-frames bitstream filter

2015-04-05 Thread Michael Niedermayer
On Sun, Apr 05, 2015 at 07:15:20PM +0200, Andreas Cadhalpun wrote: > On 05.04.2015 04:23, Michael Niedermayer wrote: > > maybe you want to add a fate test ? > > Sure, patch attached. > > > i can upload a small sample to the fate samples if you have one > > I just created one from the sample lin

[FFmpeg-devel] [PATCH] swr/resample: use av_clip functions

2015-04-05 Thread James Almer
Signed-off-by: James Almer --- libswresample/resample_template.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libswresample/resample_template.c b/libswresample/resample_template.c index 7e80ef9..d71efd6 100644 --- a/libswresample/resample_template.c +++ b/libswresample

[FFmpeg-devel] [PATCH 0/3] Lower HLS Overhead

2015-04-05 Thread Derek Buitenhuis
Derek Buitenhuis (3): mpegtsenc: Allow user to set SDT retransmission period mpegtsenc: Allow user to set PAT/PMT retransmission period hlsenc: Only write PAT/PMT once per segment libavformat/hlsenc.c| 10 +- libavformat/mpegtsenc.c | 20 ++-- libavformat/version

[FFmpeg-devel] [PATCH 1/3] mpegtsenc: Allow user to set SDT retransmission period

2015-04-05 Thread Derek Buitenhuis
Signed-off-by: Derek Buitenhuis --- libavformat/mpegtsenc.c | 10 +++--- libavformat/version.h | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c index ae0593d..861da95 100644 --- a/libavformat/mpegtsenc.c +++ b/libavfor

[FFmpeg-devel] [PATCH 3/3] hlsenc: Only write PAT/PMT once per segment

2015-04-05 Thread Derek Buitenhuis
This saves a lot of muxing overhead, especially on lower bitrate segments. Signed-off-by: Derek Buitenhuis --- libavformat/hlsenc.c | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 7885351..013780a 100644 --- a/libavf

[FFmpeg-devel] [PATCH 2/3] mpegtsenc: Allow user to set PAT/PMT retransmission period

2015-04-05 Thread Derek Buitenhuis
Signed-off-by: Derek Buitenhuis --- libavformat/mpegtsenc.c | 10 +++--- libavformat/version.h | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c index 861da95..e1158f8 100644 --- a/libavformat/mpegtsenc.c +++ b/libavfor

Re: [FFmpeg-devel] [PATCH] swr/resample: use av_clip functions

2015-04-05 Thread James Almer
On 05/04/15 3:26 PM, James Almer wrote: > Signed-off-by: James Almer > --- > libswresample/resample_template.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libswresample/resample_template.c > b/libswresample/resample_template.c > index 7e80ef9..d71efd6 100644 > -

Re: [FFmpeg-devel] [PATCH 1/3] mpegtsenc: Allow user to set SDT retransmission period

2015-04-05 Thread James Almer
On 05/04/15 3:37 PM, Derek Buitenhuis wrote: > diff --git a/libavformat/version.h b/libavformat/version.h > index 1c78df2..55287ae 100644 > --- a/libavformat/version.h > +++ b/libavformat/version.h > @@ -30,7 +30,7 @@ > #include "libavutil/version.h" > > #define LIBAVFORMAT_VERSION_MAJOR 56 > -

Re: [FFmpeg-devel] [PATCH 1/3] mpegtsenc: Allow user to set SDT retransmission period

2015-04-05 Thread Derek Buitenhuis
On 4/5/2015 7:44 PM, James Almer wrote: > Shouldn't this be a micro bump? It's just a new AVOption for a specific muxer. > Or at most bump minor only once for both SDT and PAT/PMT options. I have no opinion on the matter myself. - Derek ___ ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 3/3] hlsenc: Only write PAT/PMT once per segment

2015-04-05 Thread Derek Buitenhuis
On 4/5/2015 7:37 PM, Derek Buitenhuis wrote: > This saves a lot of muxing overhead, especially on lower bitrate > segments. > > Signed-off-by: Derek Buitenhuis > --- > libavformat/hlsenc.c | 10 +- > 1 file changed, 9 insertions(+), 1 deletion(-) This patch will get a v2 in a little whi

Re: [FFmpeg-devel] [ANNOUNCE] Outreachy (former OPW) application deadline

2015-04-05 Thread Reynaldo H. Verdejo Pinochet
On 04/05/2015 01:46 PM, Reynaldo H. Verdejo Pinochet wrote: > Hi everyone > > OPW/Outreachy internships for this round are starting > in May and we are about to hit the deadline for applications > set for Tuesday next week. > [..] Deadline for applications has just been extended to April 10. B

Re: [FFmpeg-devel] [PATCH] swr/resample: use av_clip functions

2015-04-05 Thread Michael Niedermayer
On Sun, Apr 05, 2015 at 03:26:49PM -0300, James Almer wrote: > Signed-off-by: James Almer > --- > libswresample/resample_template.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB The

Re: [FFmpeg-devel] [PATCH 1/3] mpegtsenc: Allow user to set SDT retransmission period

2015-04-05 Thread Michael Niedermayer
On Sun, Apr 05, 2015 at 02:37:06PM -0400, Derek Buitenhuis wrote: > Signed-off-by: Derek Buitenhuis > --- > libavformat/mpegtsenc.c | 10 +++--- > libavformat/version.h | 2 +- > 2 files changed, 8 insertions(+), 4 deletions(-) > > diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegts

Re: [FFmpeg-devel] [PATCH] chorus filter

2015-04-05 Thread Michael Niedermayer
On Sun, Apr 05, 2015 at 05:50:47PM +, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > doc/filters.texi | 32 > libavfilter/Makefile | 1 + > libavfilter/af_chorus.c | 370 > +++ > libavfilter/allfilters.c | 1 + > 4

Re: [FFmpeg-devel] [PATCH] libavformat/http.c: Make http-listen work as an input stream.

2015-04-05 Thread Michael Niedermayer
On Sun, Apr 05, 2015 at 05:58:39PM +0200, Stephan Holljes wrote: > With this patch http can be used to listen for POST data to be used as an > input stream. > > Signed-off-by: Stephan Holljes > --- > libavformat/http.c | 7 +-- > 1 file changed, 5 insertions(+), 2 deletions(-) > > diff --g

Re: [FFmpeg-devel] [PATCH] swr/resample: use av_clip functions

2015-04-05 Thread Timothy Gu
On Sun, Apr 5, 2015 at 11:40 AM James Almer wrote: > On 05/04/15 3:26 PM, James Almer wrote: > > Signed-off-by: James Almer > > --- > > libswresample/resample_template.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/libswresample/resample_template.c b/libswr

Re: [FFmpeg-devel] [PATCH 1/3] mpegtsenc: Allow user to set SDT retransmission period

2015-04-05 Thread Derek Buitenhuis
On 4/5/2015 11:34 PM, Michael Niedermayer wrote: > this is missing documentation about the units in which sdt_period is. > as is this depends on "mux_rate > 1" > if its intended to stay that way, then this should be documented Yes it depends on muxrate. I'll rework these soon. - Derek __

Re: [FFmpeg-devel] [PATCH 3/3] lavf/libsmbclient: implement directory listing callbacks

2015-04-05 Thread Michael Niedermayer
On Fri, Apr 03, 2015 at 08:01:02PM +0200, Lukasz Marek wrote: > On 3 April 2015 at 03:54, Mariusz Szczepańczyk > wrote: > > > --- > > libavformat/libsmbclient.c | 108 > > + > > 1 file changed, 108 insertions(+) > > > > LGTM, I don't push yet as there

Re: [FFmpeg-devel] [PATCH] Dolby Digital dynamic range compression (drc_scale) is now 0 by default

2015-04-05 Thread Michael Niedermayer
On Mon, Mar 30, 2015 at 04:28:24PM +0200, Michael Niedermayer wrote: > On Mon, Mar 30, 2015 at 11:37:10AM +0200, Wiebe Cazemier wrote: > > - Original Message - > > > From: "Kieran Kunhya" > > > To: "Wiebe Cazemier" > > > Sent: Monday, 30 March, 2015 10:47:49 AM > > > Subject: Re: [FFmpeg-

Re: [FFmpeg-devel] [PATCH] libavformat/http.c: Make http-listen work as an input stream.

2015-04-05 Thread Stephan Holljes
On Mon, Apr 6, 2015 at 1:02 AM, Michael Niedermayer wrote: > On Sun, Apr 05, 2015 at 05:58:39PM +0200, Stephan Holljes wrote: >> With this patch http can be used to listen for POST data to be used as an >> input stream. >> >> Signed-off-by: Stephan Holljes >> --- >> libavformat/http.c | 7 +

[FFmpeg-devel] Areas needing work

2015-04-05 Thread Michael Niedermayer
Hi all There are various areas in the project that are not maintained as well as they should be, heres a certainly not comlpete list, dont hesitate to reply and add to it. If someone wants to pick something up and contribute that is VERY welcome * Post merge review&cleanup, changes merged from l

Re: [FFmpeg-devel] [PATCH] Dolby Digital dynamic range compression (drc_scale) is now 0 by default

2015-04-05 Thread Wiebe Cazemier
- Original Message - > From: "Michael Niedermayer" > To: "FFmpeg development discussions and patches" > Cc: "Wiebe Cazemier" , "madshi" > Sent: Monday, 6 April, 2015 3:20:46 AM > Subject: Re: [FFmpeg-devel] [PATCH] Dolby Digital dynamic range compression > (drc_scale) is now 0 by defaul

Re: [FFmpeg-devel] [PATCH 1/3] mpegtsenc: Allow user to set SDT retransmission period

2015-04-05 Thread JULIAN GARDNER
> > From: Derek Buitenhuis >To: ffmpeg-devel@ffmpeg.org >Sent: Monday, 6 April 2015, 2:15 >Subject: Re: [FFmpeg-devel] [PATCH 1/3] mpegtsenc: Allow user to set SDT >retransmission period > > >On 4/5/2015 11:34 PM, Michael Niedermayer wrote: >> this is miss