Re: [FFmpeg-devel] [PATCH] avfilter:vf_libvmaf: fix errors while running with psnr=1 and improve docs

2017-11-06 Thread Ashish Pratap Singh
Hi, On Nov 6, 2017 18:22, "Ronald S. Bultje" wrote: Hi, On Thu, Oct 12, 2017 at 4:43 PM, Carl Eugen Hoyos wrote: > 2017-10-11 15:53 GMT+02:00 Ashish Pratap Singh : > > > Hi, this patch fixes the seg fault which ocuured while running libvmaf > filter > > with op

[FFmpeg-devel] [PATCH] avfilter:vf_libvmaf: fix errors while running with psnr=1 and improve docs

2017-10-11 Thread Ashish Pratap Singh
From: ashk43712 Hi, this patch fixes the seg fault which ocuured while running libvmaf filter with option psnr=1. This also improves libvmaf doc a bit. Signed-off-by: ashk43712 --- doc/filters.texi | 19 ++- libavfilter/vf_libvmaf.c | 7 --- 2 files changed, 10 ins

Re: [FFmpeg-devel] [PATCH] avfilter: add vmafmotion filter

2017-09-18 Thread Ashish Pratap Singh
Hi, On Mon, Sep 18, 2017 at 6:46 AM, James Almer wrote: > On 9/15/2017 5:47 PM, Ashish Pratap Singh wrote: > > From: Ashish Singh > > > > Hi, this patch addresses the previous issues and changes it to a single > > input filter. > > > > Signed-off-b

[FFmpeg-devel] [PATCH] avfilter: add vmafmotion filter

2017-09-15 Thread Ashish Pratap Singh
0,0 +1,325 @@ +/* + * Copyright (c) 2017 Ronald S. Bultje + * Copyright (c) 2017 Ashish Pratap Singh + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software

Re: [FFmpeg-devel] [PATCH] avfilter: add vmafmotion filter

2017-09-13 Thread Ashish Pratap Singh
Hi, On Wed, Sep 13, 2017 at 6:40 PM, Ronald S. Bultje wrote: > Hi, > > On Wed, Sep 6, 2017 at 4:04 PM, Ashish Pratap Singh > wrote: > >> From: Ashish Singh >> >> Hi, this patch changes previous one to framesync2. >> SIMD is a work in progress for this fi

[FFmpeg-devel] [PATCH] avfilter: add vmafmotion filter

2017-09-06 Thread Ashish Pratap Singh
ibavfilter/vf_vmafmotion.c b/libavfilter/vf_vmafmotion.c new file mode 100644 index 000..873d00f --- /dev/null +++ b/libavfilter/vf_vmafmotion.c @@ -0,0 +1,413 @@ +/* + * Copyright (c) 2017 Ronald S. Bultje + * Copyright (c) 2017 Ashish Pratap Singh + * + * This file is part of FFmpeg. + * + * FFmp

[FFmpeg-devel] [PATCH] avfilter: add ADM filter

2017-08-31 Thread Ashish Pratap Singh
--git a/libavfilter/adm.h b/libavfilter/adm.h new file mode 100644 index 000..862bd17 --- /dev/null +++ b/libavfilter/adm.h @@ -0,0 +1,75 @@ +/* + * Copyright (c) 2017 Ronald S. Bultje + * Copyright (c) 2017 Ashish Pratap Singh + * + * This file is part of FFmpeg. + * + * FFmpeg is free software

Re: [FFmpeg-devel] [PATCH] avfilter: add ADM filter

2017-08-30 Thread Ashish Pratap Singh
Hi, On Aug 30, 2017 22:52, "Paul B Mahol" wrote: On 8/30/17, Ashish Pratap Singh wrote: > From: Ashish Singh > > Hi, > This patch changes the previous adm filter to integer types which will be > helpful for writing SIMD optimizations later. > > Signed-off-by: A

[FFmpeg-devel] [PATCH] avfilter: add ADM filter

2017-08-30 Thread Ashish Pratap Singh
)+= vf_subtitles.o diff --git a/libavfilter/adm.h b/libavfilter/adm.h new file mode 100644 index 000..862bd17 --- /dev/null +++ b/libavfilter/adm.h @@ -0,0 +1,75 @@ +/* + * Copyright (c) 2017 Ronald S. Bultje + * Copyright (c) 2017 Ashish Pratap Singh + * + * This file is

Re: [FFmpeg-devel] [PATCH] avfilter/vf_libvmaf: fix pre convert to framesync2 bugs

2017-08-30 Thread Ashish Pratap Singh
Hi, On 30-08-2017 19:43, Derek Buitenhuis wrote: On 8/30/2017 2:24 PM, Ronald S. Bultje wrote: Pushed. Did libvmaf bump its version for this breaking change? (It should have...) If so, bump the required version in configure, or other users will get crashes. - Derek __

Re: [FFmpeg-devel] [PATCH] avfilter: Add vmaf filter

2017-08-23 Thread Ashish Pratap Singh
On Aug 24, 2017 05:13, "Michael Niedermayer" wrote: On Thu, Aug 24, 2017 at 12:58:53AM +0530, Ashish Pratap Singh wrote: > From: Ashish Singh > > Hi, this is vmaf filter. It fuses the scores of previous metrics adm, motion and vif > using svm algorithm. It's di

[FFmpeg-devel] [PATCH] avfilter: Add vmaf filter

2017-08-23 Thread Ashish Pratap Singh
Ronald S. Bultje + * Copyright (c) 2017 Ashish Pratap Singh + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * versio

[FFmpeg-devel] [PATCH] avfilter/vf_libvmaf: fix pre convert to framesync2 bugs

2017-08-02 Thread Ashish Pratap Singh
From: Ashish Singh Hi, it fixes the errors while converting to framesync2. libvmaf was changed recently, double *score variable is removed in the new version since it's not used anywhere. This patch fixes all the warnings and segmentation faults. Signed-off-by: Ashish Singh --- libavfilter/vf_

Re: [FFmpeg-devel] [PATCH] avfilter: add vmafmotion filter

2017-08-02 Thread Ashish Pratap Singh
Hi, On Aug 2, 2017 19:18, "Nicolas George" wrote: Le quintidi 15 thermidor, an CCXXV, Ashish Pratap Singh a écrit : > +FFDualInputContext dinput; dualinput is about to be removed, please see the patch series two days ago. Regards, -- Ok N

[FFmpeg-devel] [PATCH] avfilter: add vmafmotion filter

2017-08-02 Thread Ashish Pratap Singh
ibavfilter/vf_vmafmotion.c new file mode 100644 index 000..8456939 --- /dev/null +++ b/libavfilter/vf_vmafmotion.c @@ -0,0 +1,404 @@ +/* + * Copyright (c) 2017 Ronald S. Bultje + * Copyright (c) 2017 Ashish Pratap Singh + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redis

[FFmpeg-devel] [PATCH] configure: require pkg-config for libvmaf

2017-08-01 Thread Ashish Pratap Singh
From: Ashish Singh This patch makes the libvmaf filter use pkg-config to detect and link to libvmaf. Signed-off-by: Ashish Singh --- configure | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure b/configure index 57694f3..aa8a785 100755 --- a/configure +++ b/configu

Re: [FFmpeg-devel] [PATCH] configure: require pkg-config for libvmaf

2017-08-01 Thread Ashish Pratap Singh
Hi, On Aug 1, 2017 7:15 PM, "Ronald S. Bultje" wrote: Hi, On Fri, Jul 21, 2017 at 6:48 AM, Ashish Pratap Singh wrote: > From: Ashish Singh > > Hi, libvmaf now has a pkg-config file. This patch makes libvmaf filter > link to > pkg-config of libvmaf. "This patc

Re: [FFmpeg-devel] [PATCH] avfilter: add VIF filter

2017-07-31 Thread Ashish Pratap Singh
On Mon, Jul 31, 2017 at 3:24 AM, Ronald S. Bultje wrote: > Hi, > > On Sun, Jul 30, 2017 at 1:46 PM, Ashish Pratap Singh > wrote: > > > On Sat, Jul 29, 2017 at 3:15 PM, Moritz Barsnick > wrote: > > > On Sat, Jul 29, 2017 at 14:16:29 +0530, Ashish Pratap Singh w

Re: [FFmpeg-devel] [PATCH] avfilter: add VIF filter

2017-07-30 Thread Ashish Pratap Singh
Hi, On Sat, Jul 29, 2017 at 3:15 PM, Moritz Barsnick wrote: > On Sat, Jul 29, 2017 at 14:16:29 +0530, Ashish Pratap Singh wrote: > > > +Both input videos must have the same resolution and pixel format for > > +this filter to work correctly. Also it assumes that both inputs

[FFmpeg-devel] [PATCH] avfilter: add VIF filter

2017-07-29 Thread Ashish Pratap Singh
0,0 +1,646 @@ +/* + * Copyright (c) 2017 Ronald S. Bultje + * Copyright (c) 2017 Ashish Pratap Singh + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Fre

[FFmpeg-devel] [PATCH] avfilter: add ADM filter

2017-07-28 Thread Ashish Pratap Singh
(c) 2017 Ronald S. Bultje + * Copyright (c) 2017 Ashish Pratap Singh + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either

[FFmpeg-devel] [PATCH] configure: require pkg-config for libvmaf

2017-07-21 Thread Ashish Pratap Singh
From: Ashish Singh Hi, libvmaf now has a pkg-config file. This patch makes libvmaf filter link to pkg-config of libvmaf. Signed-off-by: Ashish Singh --- configure | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure b/configure index 57694f3..aa8a785 100755 --- a/con

Re: [FFmpeg-devel] [PATCH] avfilter: add LIBVMAF filter

2017-07-16 Thread Ashish Pratap Singh
thanks. On Sun, Jul 16, 2017 at 9:38 PM, Matt Oliver wrote: > On 17 July 2017 at 01:12, Derek Buitenhuis > wrote: > > > On 7/16/2017 3:15 PM, Matt Oliver wrote: > > > Im getting the same error. The patch had an error in it as this line is > > > wrong: > > > +vmaf_filter_deps="libvmaf" > > > > >

Re: [FFmpeg-devel] [PATCH] avfilter: add LIBVMAF filter

2017-07-16 Thread Ashish Pratap Singh
On Sun, Jul 16, 2017 at 6:19 PM, Derek Buitenhuis < derek.buitenh...@gmail.com> wrote: > On 7/16/2017 1:29 PM, Ronald S. Bultje wrote: > > Pushed. > > > > Ronald > > I am going to quote myself here, because it was never address, was not even > replied to, and is outright incorrect on some OSes: >

Re: [FFmpeg-devel] [PATCH] avfilter: add LIBVMAF filter

2017-07-16 Thread Ashish Pratap Singh
On Sun, Jul 16, 2017 at 5:59 PM, Ronald S. Bultje wrote: > Hi, > > On Sat, Jul 15, 2017 at 12:42 PM, Ashish Singh > wrote: > >> This one changes the previous vmaf patch to libvmaf to keep it separate >> from the >> native implementation of vmaf inside ffmpeg later. >> >> Signed-off-by: Ashish Si

Re: [FFmpeg-devel] [PATCH] avfilter: add motion filter

2017-07-14 Thread Ashish Pratap Singh
++ b/libavfilter/allfilters.c > > @@ -239,6 +239,7 @@ static void register_all(void) > > REGISTER_FILTER(METADATA, metadata, vf); > > REGISTER_FILTER(MIDEQUALIZER, midequalizer, vf); > > REGISTER_FILTER(MINTERPOLATE, minterpolate, vf); >

Re: [FFmpeg-devel] [PATCH] avfilter: add VMAF filter

2017-06-24 Thread Ashish Pratap Singh
ETTE, vignette, vf); > + REGISTER_FILTER(VMAF, vmaf, vf); > REGISTER_FILTER(VSTACK, vstack, vf); > REGISTER_FILTER(W3FDIF, w3fdif, vf); > REGISTER_FILTER(WAVEFORM, waveform, vf); >

Re: [FFmpeg-devel] [PATCH] avfilter: add VMAF filter

2017-06-24 Thread Ashish Pratap Singh
sorry for this patch, I think I didn't merge it successfully. On Sun, Jun 25, 2017 at 12:50 AM, Paul B Mahol wrote: > On 6/24/17, Ashish Singh wrote: > > This is VMAF filter which requires Netflix's vmaf library installed, > > but currently there is no library implementation in the Netflix's vm