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

2018-03-23 Thread Lou Logan
On Tue, Mar 20, 2018, at 1:20 AM, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > doc/filters.texi | 66 ++ > libavfilter/Makefile | 1 + > libavfilter/af_hrtfm.c | 557 > +++ > libavfilter/allfilters.c

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

2018-03-23 Thread Michael Niedermayer
On Fri, Mar 23, 2018 at 02:45:06PM +0100, Aurelien Jacobs wrote: > On Fri, Mar 23, 2018 at 10:18:47AM +0100, Paul B Mahol wrote: > > On 3/22/18, Aurelien Jacobs wrote: > > > On Mon, Mar 19, 2018 at 10:49:28PM -0800, Lou Logan wrote: > > >> On Fri, Mar 16, 2018, at 11:44 AM, Paul

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

2018-03-23 Thread Aurelien Jacobs
On Fri, Mar 23, 2018 at 10:18:47AM +0100, Paul B Mahol wrote: > On 3/22/18, Aurelien Jacobs wrote: > > On Mon, Mar 19, 2018 at 10:49:28PM -0800, Lou Logan wrote: > >> On Fri, Mar 16, 2018, at 11:44 AM, Paul B Mahol wrote: > >> > Signed-off-by: Paul B Mahol >

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

2018-03-23 Thread Paul B Mahol
On 3/22/18, Aurelien Jacobs wrote: > On Mon, Mar 19, 2018 at 10:49:28PM -0800, Lou Logan wrote: >> On Fri, Mar 16, 2018, at 11:44 AM, Paul B Mahol wrote: >> > Signed-off-by: Paul B Mahol >> > --- >> > doc/filters.texi | 60 ++ >> >

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

2018-03-22 Thread Aurelien Jacobs
On Mon, Mar 19, 2018 at 10:49:28PM -0800, Lou Logan wrote: > On Fri, Mar 16, 2018, at 11:44 AM, Paul B Mahol wrote: > > Signed-off-by: Paul B Mahol > > --- > > doc/filters.texi | 60 ++ > > libavfilter/Makefile | 1 + > > libavfilter/af_hrtfm.c | 486 > >

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

2018-03-20 Thread Nicolas George
Paul B Mahol (2018-03-19): > I'm not aware of such policy. Patches should be reviewed on the mailing list, that is the general policy and I am pretty sure you know about it. The only exception is normally very simple and urgent patches by the maintainer themselves. If the patch you push is not

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

2018-03-20 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 66 ++ libavfilter/Makefile | 1 + libavfilter/af_hrtfm.c | 557 +++ libavfilter/allfilters.c | 1 + 4 files changed, 625 insertions(+) create mode 100644

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

2018-03-20 Thread Lou Logan
On Fri, Mar 16, 2018, at 11:44 AM, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > doc/filters.texi | 60 ++ > libavfilter/Makefile | 1 + > libavfilter/af_hrtfm.c | 486 > +++> libavfilter/allfilters.c

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

2018-03-19 Thread Paul B Mahol
On 3/19/18, Nicolas George wrote: > Paul B Mahol (2018-03-19): >> No I will not! > > Changes are to be sent to the mailing-list, that is the policy. You are > not allowed to change it unilaterally. I'm not aware of such policy. ___

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

2018-03-19 Thread Nicolas George
Paul B Mahol (2018-03-19): > No I will not! Changes are to be sent to the mailing-list, that is the policy. You are not allowed to change it unilaterally. Regards, -- Nicolas George signature.asc Description: Digital signature ___ ffmpeg-devel

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

2018-03-19 Thread Paul B Mahol
On 3/19/18, Nicolas George wrote: > Paul B Mahol (2018-03-19): >> If there are no more comments, I would like to push >> an improved version of this. > > If it is changed compared to what was sent to the mailing-list, re-send > it to the mailing-list. No I will not! And what can

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

2018-03-19 Thread Nicolas George
Paul B Mahol (2018-03-19): > If there are no more comments, I would like to push > an improved version of this. If it is changed compared to what was sent to the mailing-list, re-send it to the mailing-list. Regards, -- Nicolas George signature.asc Description: Digital signature

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

2018-03-19 Thread Paul B Mahol
On 3/16/18, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > doc/filters.texi | 60 ++ > libavfilter/Makefile | 1 + > libavfilter/af_hrtfm.c | 486 > +++ > libavfilter/allfilters.c |

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

2018-03-16 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 60 ++ libavfilter/Makefile | 1 + libavfilter/af_hrtfm.c | 486 +++ libavfilter/allfilters.c | 1 + 4 files changed, 548 insertions(+) create mode 100644

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

2018-03-16 Thread Lou Logan
On Thu, 15 Mar 2018 18:54:00 +0100 Paul B Mahol wrote: [...] > diff --git a/libavfilter/af_hrtfm.c b/libavfilter/af_hrtfm.c > new file mode 100644 > index 00..48536edd4b > --- /dev/null > +++ b/libavfilter/af_hrtfm.c [...] > +static const AVOption hrtfm_options[] = { >

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

2018-03-16 Thread Paul B Mahol
On 3/16/18, Derek Buitenhuis wrote: > On 3/15/2018 5:54 PM, Paul B Mahol wrote: >> Signed-off-by: Paul B Mahol >> --- >> libavfilter/Makefile | 1 + >> libavfilter/af_hrtfm.c | 477 >> +++ >>

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

2018-03-16 Thread Derek Buitenhuis
On 3/15/2018 5:54 PM, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavfilter/Makefile | 1 + > libavfilter/af_hrtfm.c | 477 > +++ > libavfilter/allfilters.c | 1 + > 3 files changed, 479 insertions(+) >

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

2018-03-15 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavfilter/Makefile | 1 + libavfilter/af_hrtfm.c | 477 +++ libavfilter/allfilters.c | 1 + 3 files changed, 479 insertions(+) create mode 100644 libavfilter/af_hrtfm.c diff --git