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

2015-04-04 Thread Michael Niedermayer
On Sun, Apr 05, 2015 at 01:05:23AM +0200, Andreas Cadhalpun wrote: > On 05.04.2015 00:06, Michael Niedermayer wrote: > > On Fri, Apr 03, 2015 at 07:14:58PM +0200, Andreas Cadhalpun wrote: > >> Fixes Ticket #2913 > >> > >> Signed-off-by: Andreas Cadhalpun > >> --- > >> Changelog

Re: [FFmpeg-devel] [PATCH 2/2] webmdashenc: Support for live stream manifests

2015-04-04 Thread Michael Niedermayer
On Tue, Mar 31, 2015 at 07:40:01PM -0700, Vignesh Venkatasubramanian wrote: > This patch adds support for creating DASH manifests for WebM Live > Streams. It also updates the documentation and adds a fate test to > verify the behavior of the new muxer flag. > > Signed-off-by: Vignesh Venkatasubram

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

2015-04-04 Thread Andreas Cadhalpun
On 05.04.2015 00:06, Michael Niedermayer wrote: > On Fri, Apr 03, 2015 at 07:14:58PM +0200, Andreas Cadhalpun wrote: >> Fixes Ticket #2913 >> >> Signed-off-by: Andreas Cadhalpun >> --- >> Changelog | 1 + >> doc/bitstream_filters.texi| 20 >> libavc

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

2015-04-04 Thread Michael Niedermayer
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_manifest. There will be a > follow up patch which ad

Re: [FFmpeg-devel] [PATCH] lavf: Add support for WebM Live Muxing

2015-04-04 Thread Michael Niedermayer
On Mon, Mar 30, 2015 at 02:46:10PM -0700, Vignesh Venkatasubramanian wrote: > This patch adds support for WebM Live Muxing by adding a new WebM > Chunk muxer. It writes out live WebM Chunks which can be used for > playback using Live DASH Clients. > > Please see muxers.texi for sample usage. [...

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

2015-04-04 Thread Michael Niedermayer
On Fri, Apr 03, 2015 at 07:14:58PM +0200, Andreas Cadhalpun wrote: > Fixes Ticket #2913 > > Signed-off-by: Andreas Cadhalpun > --- > Changelog | 1 + > doc/bitstream_filters.texi| 20 > libavcodec/Makefile | 1 + > libavcodec/al

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

2015-04-04 Thread Derek Buitenhuis
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 insertions(+), 7 deletions(-) I assume there are no matching races for reading error

Re: [FFmpeg-devel] [PATCH 2/2] lavf/assenc: handle extra sections after Events

2015-04-04 Thread Rodger Combs
> On Apr 4, 2015, at 08:47, wm4 wrote: > > On Sat, 4 Apr 2015 05:31:22 -0500 > Rodger Combs mailto:rodger.co...@gmail.com>> wrote: > >> --- >> libavformat/assenc.c | 28 ++-- >> 1 file changed, 26 insertions(+), 2 deletions(-) >> >> diff --git a/libavformat/assenc.c b/l

Re: [FFmpeg-devel] [PATCH 2/2] lavf/assenc: handle extra sections after Events

2015-04-04 Thread wm4
On Sat, 4 Apr 2015 05:31:22 -0500 Rodger Combs wrote: > --- > libavformat/assenc.c | 28 ++-- > 1 file changed, 26 insertions(+), 2 deletions(-) > > diff --git a/libavformat/assenc.c b/libavformat/assenc.c > index 3fb9384..5222616 100644 > --- a/libavformat/assenc.c > +

Re: [FFmpeg-devel] [PATCH] avfilter/vf_vignette: force per frame evaluation if per frame variables are used

2015-04-04 Thread Michael Niedermayer
On Sat, Apr 04, 2015 at 11:42:34AM +0200, Clément Bœsch wrote: > On Mon, Mar 30, 2015 at 09:57:35PM +0200, Michael Niedermayer wrote: > > Signed-off-by: Michael Niedermayer > > --- > > libavfilter/vf_vignette.c |9 +++-- > > 1 file changed, 7 insertions(+), 2 deletions(-) > > > > diff --

Re: [FFmpeg-devel] [PATCH] rtsp: Fix null pointer dereference

2015-04-04 Thread Michael Niedermayer
On Sat, Apr 04, 2015 at 04:21:40PM +0530, Himangi Saraogi wrote: > --- > This fixes CID 1257827. > > libavformat/rtsp.c | 2 ++ > 1 file changed, 2 insertions(+) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB It is what and why we do it that m

Re: [FFmpeg-devel] [PATCH 1/2] lavf/assenc: style nits

2015-04-04 Thread Michael Niedermayer
On Sat, Apr 04, 2015 at 05:31:21AM -0500, Rodger Combs wrote: > --- > libavformat/assenc.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) applied thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB No great genius has ever existed without some t

[FFmpeg-devel] [PATCH] avcodec/nvenc: Add options for level and tier

2015-04-04 Thread Timo Rothenpieler
--- Changelog | 1 + libavcodec/nvenc.c | 111 - 2 files changed, 111 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index ba0dff5..acced67 100644 --- a/Changelog +++ b/Changelog @@ -13,6 +13,7 @@ version : - Intel Q

Re: [FFmpeg-devel] [PATCH]lavf/mov: Do not overread iTunes metadata

2015-04-04 Thread Michael Niedermayer
On Sat, Apr 04, 2015 at 11:16:20AM +0200, Carl Eugen Hoyos wrote: > On Saturday 04 April 2015 06:25:36 am Carl Eugen Hoyos wrote: > > Hi! > > > > Attached patch fixes ticket #4425 for me. > > Third try attached after getting some more sleep. > > Carl Eugen probably ok unless the parsing code goe

Re: [FFmpeg-devel] [PATCH] avcodec/nvenc: Add options for level and tier

2015-04-04 Thread Clément Bœsch
On Sat, Apr 04, 2015 at 01:24:51PM +0200, Timo Rothenpieler wrote: > > You can use AV_OPT_CONST instead of this. > > That doesn't work, as the h264 and h265 encoder share the same options > array, and need diffrent values for the same input. > > Splitting up the options table is something that mo

Re: [FFmpeg-devel] [PATCH] avcodec/nvenc: Add options for level and tier

2015-04-04 Thread Timo Rothenpieler
> You can use AV_OPT_CONST instead of this. That doesn't work, as the h264 and h265 encoder share the same options array, and need diffrent values for the same input. Splitting up the options table is something that most likely will have to happen sooner or later, but even then I'm not sure if ha

[FFmpeg-devel] [PATCH] rtsp: Fix null pointer dereference

2015-04-04 Thread Himangi Saraogi
--- This fixes CID 1257827. libavformat/rtsp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 68ef36e..c9871ce 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -2259,6 +2259,8 @@ static int sdp_read_header(AVFormatContext *s) /*

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

2015-04-04 Thread Michael Niedermayer
On Wed, Apr 01, 2015 at 04:04:57PM +, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol [...] > +static int filter_frame(AVFilterLink *inlink, AVFrame *frame) > +{ > +AVFilterContext *ctx = inlink->dst; > +ChorusContext *s = ctx->priv; > +AVFrame *out_frame; > +int c, i, n; > +

[FFmpeg-devel] [PATCH 2/2] avcodec/h264: Use only one ERContext

2015-04-04 Thread Michael Niedermayer
This fixes slice threads with error concealment Signed-off-by: Michael Niedermayer --- libavcodec/h264.c |4 libavcodec/h264_picture.c |1 + libavcodec/h264_slice.c | 12 ++-- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/libavcodec/h264.c b/lib

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

2015-04-04 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavcodec/error_resilience.c | 13 +++-- libavcodec/error_resilience.h |3 ++- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/libavcodec/error_resilience.c b/libavcodec/error_resilience.c index 3366db1..ced0ceb 100644 --- a/lib

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

2015-04-04 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavfilter/aeval.c| 24 libavfilter/asrc_sine.c| 25 + libavfilter/vf_bbox.c | 6 -- libavfilter/vf_blackdetect.c | 6 -- libavfilter/vf_blackframe.c|

[FFmpeg-devel] [PATCH 2/2] lavf/assenc: handle extra sections after Events

2015-04-04 Thread Rodger Combs
--- libavformat/assenc.c | 28 ++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/libavformat/assenc.c b/libavformat/assenc.c index 3fb9384..5222616 100644 --- a/libavformat/assenc.c +++ b/libavformat/assenc.c @@ -40,6 +40,8 @@ typedef struct ASSContext {

[FFmpeg-devel] [PATCH 1/2] lavf/assenc: style nits

2015-04-04 Thread Rodger Combs
--- libavformat/assenc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavformat/assenc.c b/libavformat/assenc.c index 079991d..3fb9384 100644 --- a/libavformat/assenc.c +++ b/libavformat/assenc.c @@ -31,7 +31,7 @@ typedef struct DialogueLine { struct DialogueLin

Re: [FFmpeg-devel] [PATCH] avfilter/vf_vignette: force per frame evaluation if per frame variables are used

2015-04-04 Thread Clément Bœsch
On Mon, Mar 30, 2015 at 09:57:35PM +0200, Michael Niedermayer wrote: > Signed-off-by: Michael Niedermayer > --- > libavfilter/vf_vignette.c |9 +++-- > 1 file changed, 7 insertions(+), 2 deletions(-) > > diff --git a/libavfilter/vf_vignette.c b/libavfilter/vf_vignette.c > index 806bd72..

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

2015-04-04 Thread Clément Bœsch
On Fri, Apr 03, 2015 at 06:57:08PM +, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavfilter/aeval.c| 19 --- > libavfilter/asrc_sine.c| 20 +--- > libavfilter/vf_bbox.c | 5 - > libavfilter/vf_blackd

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

2015-04-04 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavfilter/aeval.c| 19 --- libavfilter/asrc_sine.c| 20 +--- libavfilter/vf_bbox.c | 5 - libavfilter/vf_blackdetect.c | 5 - libavfilter/vf_blackframe.c| 5 - l

Re: [FFmpeg-devel] [PATCH]lavf/mov: Do not overread iTunes metadata

2015-04-04 Thread Carl Eugen Hoyos
On Saturday 04 April 2015 06:25:36 am Carl Eugen Hoyos wrote: > Hi! > > Attached patch fixes ticket #4425 for me. Third try attached after getting some more sleep. Carl Eugen diff --git a/libavformat/mov.c b/libavformat/mov.c index dc31e5a..c63e817 100644 --- a/libavformat/mov.c +++ b/libavformat

Re: [FFmpeg-devel] [PATCH] avcodec/nvenc: Add options for level and tier

2015-04-04 Thread Clément Bœsch
On Fri, Apr 03, 2015 at 06:23:05PM +0200, Timo Rothenpieler wrote: > --- > libavcodec/nvenc.c | 111 > - > 1 file changed, 110 insertions(+), 1 deletion(-) > > diff --git a/libavcodec/nvenc.c b/libavcodec/nvenc.c > index f77a982..d4e0a39 100644