Re: [FFmpeg-devel] [PATCH 1/2] aacenc: add a faster version of twoloop as the "fast" coder

2016-08-06 Thread Michael Niedermayer
On Sun, Aug 07, 2016 at 12:53:47AM +0100, Rostislav Pehlivanov wrote: > On 7 August 2016 at 00:51, Rostislav Pehlivanov wrote: > > > Does nothing fancy but still sounds very decent at 128kbps. > > Still room to improve by bringing in the low pass and PNS management > > from

Re: [FFmpeg-devel] libavcodec : add psd image file decoder

2016-08-06 Thread Michael Niedermayer
On Fri, Aug 05, 2016 at 01:05:38PM +0200, Martin Vignali wrote: [...] > > > > did you test this code with a fuzzer ? > > > > No i didn't know how to do that. there are many fuzzers, an older one is: zzuf -c -s0: -r0.01 ./ffmpeg -i someinputfile -f null - see the zzuf manual page for mor

Re: [FFmpeg-devel] [PATCH 1/2] aacenc: add a faster version of twoloop as the "fast" coder

2016-08-06 Thread Rostislav Pehlivanov
On 7 August 2016 at 00:51, Rostislav Pehlivanov wrote: > Does nothing fancy but still sounds very decent at 128kbps. > Still room to improve by bringing in the low pass and PNS management > from the main big twoloop which should improve its quality but not > sacrifice that

[FFmpeg-devel] [PATCH 2/2] aacenc: unmark the fast coder as experimental

2016-08-06 Thread Rostislav Pehlivanov
This version has had much testing so there's little point in keeping it maked as experimental. Signed-off-by: Rostislav Pehlivanov --- libavcodec/aacenc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c index

Re: [FFmpeg-devel] Change bitrate on-the-fly PoC (Patch)

2016-08-06 Thread Llorx
Hi Ronald, Well, this is a PoC. There are a lot of ways to implement this under a security context, so that's not a problem. For example, using ZeroMQ as Bodecs Bela says in the other thread, feature already implemented in ffmpeg as you can see here:

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

2016-08-06 Thread Thilo Borgmann
Am 06.08.16 um 17:26 schrieb Umair Khan: > On Fri, Aug 5, 2016 at 9:27 PM, Carl Eugen Hoyos wrote: >> Hi! >> >> 2016-08-05 16:57 GMT+02:00 Umair Khan : >>> Updated patch attached. >> >> The Changelog hunk of your patch indicates that the patch should be

Re: [FFmpeg-devel] [PATCH 1/2] af_hdcd: convert AVOptions from INT to BOOL

2016-08-06 Thread Burt P.
applied thx :) On Fri, Aug 5, 2016 at 4:54 PM, Burt P wrote: > As suggested by Timothy Gu. > > Signed-off-by: Burt P > --- > libavfilter/af_hdcd.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libavfilter/af_hdcd.c

Re: [FFmpeg-devel] [PATCH] avfilter: add crystalizer filter.

2016-08-06 Thread Paul B Mahol
On 8/6/16, Остросаблин Виталий wrote: > ___ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > http://ffmpeg.org/mailman/listinfo/ffmpeg-devel > Going to apply improved version of this soon.

Re: [FFmpeg-devel] [PATCH 2/2] [RFC] avutil/version: Improve lib versioning sheme for release branches with the next major release

2016-08-06 Thread Moritz Barsnick
On Sat, Aug 06, 2016 at 12:52:54 +0200, Michael Niedermayer wrote: > + * Prior FFmpeg 3.2 point releases did not change any lib version number to ^ Prior to > + * a seperate MAJOR.MINOR that is not used on the master development branch ^ separate > + * that is if we branch a

Re: [FFmpeg-devel] [PATCH] avfilter: add crystalizer filter.

2016-08-06 Thread Moritz Barsnick
On Sat, Aug 06, 2016 at 11:05:29 +0300, Остросаблин Виталий wrote: > +The filter accepts the following option: ^ options > +Sets the intensity of effect (default: 2.0). Must be in range between 0.0 ^ of the effect ^

[FFmpeg-devel] Change bitrate on-the-fly PoC (Patch)

2016-08-06 Thread Llorx
Hi, Some days ago I started a thread here: http://ffmpeg.org/pipermail/ffmpeg-devel/2016-August/197306.html Starting a new thread now because I lost my main thread mail and don't know how to "reply" without having it in my inbox :-( ffmpeg has almost on-the-fly bitrate change control already

[FFmpeg-devel] [PATCHv3] af_hdcd: Add analyze mode (v3)

2016-08-06 Thread Burt P
A new mode, selected by filter option, to aid in analysis of HDCD encoded audio. In this mode the audio is replaced by a solid tone and the amplitude is adjusted to signal some specified aspect of the process. The output file can be loaded in an audio editor alongside the original, where the user

Re: [FFmpeg-devel] [PATCH 1/2] af_hdcd: convert AVOptions from INT to BOOL

2016-08-06 Thread Michael Niedermayer
On Fri, Aug 05, 2016 at 04:54:43PM -0500, Burt P wrote: > As suggested by Timothy Gu. > > Signed-off-by: Burt P > --- > libavfilter/af_hdcd.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) LGTM thx [...] -- Michael GnuPG fingerprint:

Re: [FFmpeg-devel] [PATCHv2] af_hdcd: Add analyze mode

2016-08-06 Thread Michael Niedermayer
On Fri, Aug 05, 2016 at 05:23:04PM -0500, Burt P wrote: > A new mode, selected by filter option, to aid in analysis of HDCD > encoded audio. In this mode the audio is replaced by a solid tone and > the amplitude is adjusted to signal some specified aspect of the process. > The output file can be

[FFmpeg-devel] [PATCH 1/2] avutil/version: Mention similarities and differences to semver

2016-08-06 Thread Michael Niedermayer
QUESTION: is this the best place for this ? Signed-off-by: Michael Niedermayer --- libavutil/version.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/libavutil/version.h b/libavutil/version.h index b2dffb7..7692def 100644 --- a/libavutil/version.h +++

Re: [FFmpeg-devel] [PATCH] lavf/mov: Add support for edit list parsing.

2016-08-06 Thread Michael Niedermayer
On Fri, Aug 05, 2016 at 05:18:40PM -0700, Sasi Inguva wrote: > Signed-off-by: Sasi Inguva > --- > libavcodec/avcodec.h | 6 + > libavcodec/utils.c | 6 + > libavformat/avformat.h | 3 + >

Re: [FFmpeg-devel] [PATCH] lavf/mov: Add support for edit list parsing.

2016-08-06 Thread Michael Niedermayer
On Fri, Aug 05, 2016 at 05:18:40PM -0700, Sasi Inguva wrote: > Signed-off-by: Sasi Inguva > --- > libavcodec/avcodec.h | 6 + > libavcodec/utils.c | 6 + > libavformat/avformat.h | 3 + >

[FFmpeg-devel] [PATCH] avfilter: add crystalizer filter.

2016-08-06 Thread Остросаблин Виталий
From 85ab9679dff777507b2b405af19dd930d6d1f75d Mon Sep 17 00:00:00 2001 From: Vitaly Ostrosablin Date: Sat, 6 Aug 2016 10:50:35 +0300 Subject: [PATCH] avfilter: add crystalizer filter. Signed-off-by: Vitaly Ostrosablin --- Changelog