Re: [FFmpeg-devel] [PATCH] lavfi/vf_decimate: do not compare the first frame to itself.

2016-01-03 Thread Carl Eugen Hoyos
Nicolas George nsup.org> writes: > This is a waste of computing power and will result to 0, > making it always dropped. > Use maximum difference values instead. Please commit. Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH] lavfi/vf_decimate: do not compare the first frame to itself.

2016-01-03 Thread Nicolas George
Le quartidi 14 nivôse, an CCXXIV, Carl Eugen Hoyos a écrit : > I am not convinced your patch fixes every issue but it > definitely improves the current code. Ok, pushed. Regards, -- Nicolas George signature.asc Description: Digital signature ___

Re: [FFmpeg-devel] [PATCH] lavfi/vf_decimate: do not compare the first frame to itself.

2016-01-03 Thread Nicolas George
Le quartidi 14 nivôse, an CCXXIV, Carl Eugen Hoyos a écrit : > Please commit. Last news were you saying that this patch did not fix anything. Is there an update? Regards, -- Nicolas George signature.asc Description: Digital signature ___

Re: [FFmpeg-devel] [PATCH] lavfi/vf_decimate: do not compare the first frame to itself.

2016-01-03 Thread Carl Eugen Hoyos
Nicolas George nsup.org> writes: > Le quartidi 14 nivôse, an CCXXIV, Carl Eugen Hoyos a écrit : > > Please commit. > > Last news were you saying that this patch did not fix > anything. Is there an update? I am not convinced your patch fixes every issue but it definitely improves the current

Re: [FFmpeg-devel] [PATCH] lavfi/vf_decimate: do not compare the first frame to itself.

2015-12-14 Thread Michael Niedermayer
On Sat, Oct 24, 2015 at 07:45:49PM +0200, Nicolas George wrote: > This is a waste of computing power and will result to 0, > making it always dropped. > Use maximum difference values instead. > > Signed-off-by: Nicolas George > --- > libavfilter/vf_decimate.c | 9 ++--- > 1

[FFmpeg-devel] [PATCH] lavfi/vf_decimate: do not compare the first frame to itself.

2015-10-24 Thread Nicolas George
This is a waste of computing power and will result to 0, making it always dropped. Use maximum difference values instead. Signed-off-by: Nicolas George --- libavfilter/vf_decimate.c | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git