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

2019-10-02 Thread Paul B Mahol
On 10/2/19, James Almer wrote: > On 10/2/2019 12:37 PM, Paul B Mahol wrote: >> On 10/2/19, James Almer wrote: >>> On 10/2/2019 12:11 PM, Paul B Mahol wrote: Signed-off-by: Paul B Mahol --- doc/filters.texi | 28 ++ libavfilter/Makefile | 1 +

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

2019-10-02 Thread Paul B Mahol
On 10/2/19, Paul B Mahol wrote: > On 10/2/19, James Almer wrote: >> On 10/2/2019 12:11 PM, Paul B Mahol wrote: >>> Signed-off-by: Paul B Mahol >>> --- >>> doc/filters.texi | 28 ++ >>> libavfilter/Makefile | 1 + >>> libavfilter/af_acomb.c | 188

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

2019-10-02 Thread James Almer
On 10/2/2019 12:37 PM, Paul B Mahol wrote: > On 10/2/19, James Almer wrote: >> On 10/2/2019 12:11 PM, Paul B Mahol wrote: >>> Signed-off-by: Paul B Mahol >>> --- >>> doc/filters.texi | 28 ++ >>> libavfilter/Makefile | 1 + >>> libavfilter/af_acomb.c | 188

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

2019-10-02 Thread Paul B Mahol
On 10/2/19, James Almer wrote: > On 10/2/2019 12:11 PM, Paul B Mahol wrote: >> Signed-off-by: Paul B Mahol >> --- >> doc/filters.texi | 28 ++ >> libavfilter/Makefile | 1 + >> libavfilter/af_acomb.c | 188 +++ >> libavfilter/allfilters.c

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

2019-10-02 Thread James Almer
On 10/2/2019 12:11 PM, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > doc/filters.texi | 28 ++ > libavfilter/Makefile | 1 + > libavfilter/af_acomb.c | 188 +++ > libavfilter/allfilters.c | 1 + > 4 files changed, 218

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

2019-10-02 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 28 ++ libavfilter/Makefile | 1 + libavfilter/af_acomb.c | 188 +++ libavfilter/allfilters.c | 1 + 4 files changed, 218 insertions(+) create mode 100644 libavfilter/af_acomb.c diff