Re: [FFmpeg-devel] [PATCH v2 3/4] libswscale/x86/rgb2rgb: add uyvytoyuv422 avx2

2021-09-30 Thread Wu, Jianhua
Min Chen wrote: > Sent: Thursday, September 30, 2021 10:29 AM > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: Re: [FFmpeg-devel] [PATCH v2 3/4] libswscale/x86/rgb2rgb: add > uyvytoyuv422 avx2 > > Hello, > > >+pb_shuffle_low: times 4 db 1, 3, 5, 7, 9, 11, 13, 15, -1,

Re: [FFmpeg-devel] [PATCH v2 3/4] libswscale/x86/rgb2rgb: add uyvytoyuv422 avx2

2021-09-30 Thread chen
At 2021-09-30 15:23:08, "Wu, Jianhua" wrote: >Min Chen wrote: >> Sent: Thursday, September 30, 2021 10:29 AM >> To: FFmpeg development discussions and patches > de...@ffmpeg.org> >> Subject: Re: [FFmpeg-devel] [PATCH v2 3/4] libswscale/x86/rgb2rgb: add >> uyvytoyuv422 avx2 >> >> Hello, >> >>

Re: [FFmpeg-devel] [PATCH v2 3/4] libswscale/x86/rgb2rgb: add uyvytoyuv422 avx2

2021-09-30 Thread Wu, Jianhua
Min Chen wrote: > At 2021-09-30 15:23:08, "Wu, Jianhua" wrote: > >Min Chen wrote: > >> Sent: Thursday, September 30, 2021 10:29 AM > >> To: FFmpeg development discussions and patches >> de...@ffmpeg.org> > >> Subject: Re: [FFmpeg-devel] [PATCH v2 3/4] libswscale/x86/rgb2rgb: > >> add > >> uyvytoy

[FFmpeg-devel] [PATCH v3 1/4] libswscale/x86/rgb2rgb: add shuffle_bytes avx2

2021-09-30 Thread Wu Jianhua
Performance data(Less is better): shuffle_bytes_ssse3 3.64654 shuffle_bytes_avx20.94288 Signed-off-by: Wu Jianhua --- libswscale/x86/rgb2rgb.c | 17 +++-- libswscale/x86/rgb_2_rgb.asm | 11 +++ 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/

[FFmpeg-devel] [PATCH v3 4/4] With the accelerating by means of AVX512, the uyvytoyuv422 can be faster.

2021-09-30 Thread Wu Jianhua
Performance data(Less is better): uyvytoyuv422_avx2 0.27309 uyvytoyuv422_avx5120.16229 Signed-off-by: Wu Jianhua --- libswscale/x86/rgb2rgb.c | 6 ++ libswscale/x86/rgb_2_rgb.asm | 20 2 files changed, 26 insertions(+) diff --git a/libswscale/x86/r

[FFmpeg-devel] [PATCH v3 3/4] With the accelerating by means of AVX2, the uyvytoyuv422 can be faster

2021-09-30 Thread Wu Jianhua
Performance data(Less is better): uyvytoyuv422_sse20.50388 uyvytoyuv422_avx 0.46132 uyvytoyuv422_avx20.27309 Signed-off-by: Wu Jianhua --- libswscale/x86/rgb2rgb.c | 6 libswscale/x86/rgb_2_rgb.asm | 60 2 files changed, 53 i

[FFmpeg-devel] [PATCH v3 2/4] libswscale/x86/rgb2rgb: add shuffle_bytes avx512

2021-09-30 Thread Wu Jianhua
Performance data(Less is better): shuffle_bytes_avx2 0.94288 shuffle_bytes_avx5120.60049 Signed-off-by: Wu Jianhua --- libswscale/x86/rgb2rgb.c | 13 + libswscale/x86/rgb_2_rgb.asm | 8 2 files changed, 21 insertions(+) diff --git a/libswscale/x86/rgb2

Re: [FFmpeg-devel] [PATCH] doc/filters: added possible values to @item win_func

2021-09-30 Thread Arif Driessen
Okay. But is it a @chapter Various Windowing Functions (placed at the end just before @chapter See Also and @chapter Authors) or a @section Various Windowing Functions, that has to live under some chapter? (...Which?) On Wed, Sep 29, 2021 at 8:17 PM Paul B Mahol wrote: > On Wed, Sep 29, 2021 at

[FFmpeg-devel] [PATCH v4 3/4] libswscale/x86/rgb2rgb: add uyvytoyuv422 avx2

2021-09-30 Thread Wu Jianhua
With the accelerating by means of AVX2, the uyvytoyuv422 can be faster Performance data(Less is better): uyvytoyuv422_sse20.50388 uyvytoyuv422_avx 0.46132 uyvytoyuv422_avx20.27309 Signed-off-by: Wu Jianhua --- libswscale/x86/rgb2rgb.c | 6 libswscale/x86/rgb_2_

[FFmpeg-devel] [PATCH v4 1/4] libswscale/x86/rgb2rgb: add shuffle_bytes avx2

2021-09-30 Thread Wu Jianhua
Performance data(Less is better): shuffle_bytes_ssse3 3.64654 shuffle_bytes_avx20.94288 Signed-off-by: Wu Jianhua --- libswscale/x86/rgb2rgb.c | 17 +++-- libswscale/x86/rgb_2_rgb.asm | 11 +++ 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/

[FFmpeg-devel] [PATCH v4 2/4] libswscale/x86/rgb2rgb: add shuffle_bytes avx512

2021-09-30 Thread Wu Jianhua
Performance data(Less is better): shuffle_bytes_avx2 0.94288 shuffle_bytes_avx5120.60049 Signed-off-by: Wu Jianhua --- libswscale/x86/rgb2rgb.c | 13 + libswscale/x86/rgb_2_rgb.asm | 8 2 files changed, 21 insertions(+) diff --git a/libswscale/x86/rgb2

[FFmpeg-devel] [PATCH v4 4/4] libswscale/x86/rgb2rgb: add uyvytoyuv422 avx512

2021-09-30 Thread Wu Jianhua
With the accelerating by means of AVX512, the uyvytoyuv422 can be faster. Performance data(Less is better): uyvytoyuv422_avx2 0.27309 uyvytoyuv422_avx5120.16229 Signed-off-by: Wu Jianhua --- libswscale/x86/rgb2rgb.c | 6 ++ libswscale/x86/rgb_2_rgb.asm | 20 +++

Re: [FFmpeg-devel] [PATCH] doc/filters: added possible values to @item win_func

2021-09-30 Thread Gyan Doshi
On 2021-09-30 02:19 pm, Arif Driessen wrote: Okay. But is it a @chapter Various Windowing Functions (placed at the end just before @chapter See Also and @chapter Authors) or a @section Various Windowing Functions, that has to live under some chapter? (...Which?) Just keep the current patch fo

[FFmpeg-devel] [PATCH] avformat/mux: fix overflow in case one of dts in not set

2021-09-30 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavformat/mux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mux.c b/libavformat/mux.c index 2053a5636e..583328b123 100644 --- a/libavformat/mux.c +++ b/libavformat/mux.c @@ -949,7 +949,7 @@ int ff_interleave_packet_per_dts(AVFo

Re: [FFmpeg-devel] [PATCH 2/5] avfilter/vf_addroi: realloc the buf and append new ROI

2021-09-30 Thread lance . lmwang
On Thu, Sep 30, 2021 at 04:58:07AM +0200, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com: > > From: Limin Wang > > > > It is simpler and more efficient compared to the current code. > > > > Signed-off-by: Limin Wang > > --- > > libavfilter/vf_addroi.c | 98 > > +++-

Re: [FFmpeg-devel] [PATCH] doc/filters: added possible values to @item win_func

2021-09-30 Thread Gyan Doshi
On 2021-09-30 02:23 pm, Gyan Doshi wrote: On 2021-09-30 02:19 pm, Arif Driessen wrote: Okay. But is it a @chapter Various Windowing Functions (placed at the end just before @chapter See Also and @chapter Authors) or a @section Various Windowing Functions, that has to live under some chapte

Re: [FFmpeg-devel] [PATCH] doc/filters: added possible values to @item win_func

2021-09-30 Thread Paul B Mahol
On Thu, Sep 30, 2021 at 10:53 AM Gyan Doshi wrote: > > On 2021-09-30 02:19 pm, Arif Driessen wrote: > > Okay. But is it a @chapter Various Windowing Functions (placed at the end > > just before @chapter See Also and @chapter Authors) or a @section Various > > Windowing Functions, that has to live

Re: [FFmpeg-devel] [PATCH] doc/filters: added possible values to @item win_func

2021-09-30 Thread Gyan Doshi
On 2021-09-30 04:20 pm, Paul B Mahol wrote: On Thu, Sep 30, 2021 at 10:53 AM Gyan Doshi wrote: On 2021-09-30 02:19 pm, Arif Driessen wrote: Okay. But is it a @chapter Various Windowing Functions (placed at the end just before @chapter See Also and @chapter Authors) or a @section Various Wi

Re: [FFmpeg-devel] [PATCH] doc/filters: added possible values to @item win_func

2021-09-30 Thread Paul B Mahol
On Thu, Sep 30, 2021 at 12:51 PM Gyan Doshi wrote: > > > On 2021-09-30 04:20 pm, Paul B Mahol wrote: > > On Thu, Sep 30, 2021 at 10:53 AM Gyan Doshi wrote: > > > >> On 2021-09-30 02:19 pm, Arif Driessen wrote: > >>> Okay. But is it a @chapter Various Windowing Functions (placed at the > end > >>

Re: [FFmpeg-devel] [PATCH] doc/filters: added possible values to @item win_func

2021-09-30 Thread Gyan Doshi
On 2021-09-30 04:28 pm, Paul B Mahol wrote: On Thu, Sep 30, 2021 at 12:51 PM Gyan Doshi wrote: On 2021-09-30 04:20 pm, Paul B Mahol wrote: On Thu, Sep 30, 2021 at 10:53 AM Gyan Doshi wrote: On 2021-09-30 02:19 pm, Arif Driessen wrote: Okay. But is it a @chapter Various Windowing Funct

Re: [FFmpeg-devel] [PATCH v5 2/7] libavformat/asfdec: Fix get_value return type

2021-09-30 Thread Michael Niedermayer
On Thu, Sep 30, 2021 at 02:58:30AM +, Soft Works wrote: > get_value had a return type of int, which means that reading > QWORDS (case 4) was broken due to truncation of the result from > avio_rl64(). > > Signed-off-by: softworkz > --- > v5: Split into pieces as requested > > libavformat/asf

Re: [FFmpeg-devel] [RFC] ffmpeg: default to single thread when hwaccel is active

2021-09-30 Thread Timo Rothenpieler
On 30.09.2021 02:02, Andreas Rheinhardt wrote: Timo Rothenpieler: On 29.09.2021 19:31, Dennis Mungai wrote: On Wed, 29 Sept 2021 at 20:22, Timo Rothenpieler wrote: On 29.09.2021 19:17, Dennis Mungai wrote: A potential downside to this would be on QSV's side, which needs at least 2  threads

Re: [FFmpeg-devel] [PATCH] avformat/mux: fix overflow in case one of dts in not set

2021-09-30 Thread Michael Niedermayer
On Thu, Sep 30, 2021 at 12:36:17PM +0200, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavformat/mux.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavformat/mux.c b/libavformat/mux.c > index 2053a5636e..583328b123 100644 > --- a/libavformat/mux.c > +

Re: [FFmpeg-devel] [PATCH v1 1/1] avformat/amr: Return PATCHWELCOME on stereo files

2021-09-30 Thread Paul B Mahol
On Thu, Sep 30, 2021 at 5:05 AM Sun Zhenliang wrote: > ping for review. > have amr-wb mc stereo sample? > 在 2021年9月27日 +0800 09:48,Sun Zhenliang ,写道: > > 在 2021年9月26日 +0800 20:40,myp...@gmail.com ,写道: > > > On Thu, Sep 16, 2021 at 11:24 AM sunzhenliang > > > wrote: > > > > > > > > Signed-off-

Re: [FFmpeg-devel] [PATCH v5 7/7] libavformat/asfdec: Add braces to define

2021-09-30 Thread Michael Niedermayer
On Thu, Sep 30, 2021 at 02:59:03AM +, Soft Works wrote: > Signed-off-by: softworkz > --- > v5: Split into pieces as requested > > libavformat/asfdec_f.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) will apply thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133

Re: [FFmpeg-devel] [PATCH v5 6/7] libavformat/asfdec: Use predefined constants

2021-09-30 Thread Michael Niedermayer
On Thu, Sep 30, 2021 at 02:58:56AM +, Soft Works wrote: > Signed-off-by: softworkz > --- > v5: Split into pieces as requested > > libavformat/asfdec_f.c | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) will apply thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF673

Re: [FFmpeg-devel] [PATCH v5 2/7] libavformat/asfdec: Fix get_value return type

2021-09-30 Thread Michael Niedermayer
On Thu, Sep 30, 2021 at 01:45:46PM +0200, Michael Niedermayer wrote: > On Thu, Sep 30, 2021 at 02:58:30AM +, Soft Works wrote: > > get_value had a return type of int, which means that reading > > QWORDS (case 4) was broken due to truncation of the result from > > avio_rl64(). > > > > Signed-of

Re: [FFmpeg-devel] [PATCH] avformat/mux: fix overflow in case one of dts in not set

2021-09-30 Thread Andreas Rheinhardt
Michael Niedermayer: > On Thu, Sep 30, 2021 at 12:36:17PM +0200, Paul B Mahol wrote: >> Signed-off-by: Paul B Mahol >> --- >> libavformat/mux.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/libavformat/mux.c b/libavformat/mux.c >> index 2053a5636e..583328b123 100644

Re: [FFmpeg-devel] [RFC] ffmpeg: default to single thread when hwaccel is active

2021-09-30 Thread Andreas Rheinhardt
Timo Rothenpieler: > On 30.09.2021 02:02, Andreas Rheinhardt wrote: >> Timo Rothenpieler: >>> On 29.09.2021 19:31, Dennis Mungai wrote: On Wed, 29 Sept 2021 at 20:22, Timo Rothenpieler wrote: > On 29.09.2021 19:17, Dennis Mungai wrote: >> A potential downside to this wo

Re: [FFmpeg-devel] [PATCH] avformat/mux: fix overflow in case one of dts in not set

2021-09-30 Thread Paul B Mahol
On Thu, Sep 30, 2021 at 1:54 PM Michael Niedermayer wrote: > On Thu, Sep 30, 2021 at 12:36:17PM +0200, Paul B Mahol wrote: > > Signed-off-by: Paul B Mahol > > --- > > libavformat/mux.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/libavformat/mux.c b/libavformat

Re: [FFmpeg-devel] [PATCH v5 2/7] libavformat/asfdec: Fix get_value return type

2021-09-30 Thread Soft Works
> -Original Message- > From: ffmpeg-devel On Behalf Of > Michael Niedermayer > Sent: Thursday, 30 September 2021 14:04 > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: Re: [FFmpeg-devel] [PATCH v5 2/7] libavformat/asfdec: Fix > get_value return type > > On

[FFmpeg-devel] [PATCH 001/218] avfilter/f_reverse: Don't use redundant query_formats function

2021-09-30 Thread Andreas Rheinhardt
Said function did exactly what ff_default_query_formats() does for audio; so just remove it, so that ff_default_query_formats() will be called. Signed-off-by: Andreas Rheinhardt --- libavfilter/f_reverse.c | 14 -- 1 file changed, 14 deletions(-) diff --git a/libavfilter/f_reverse.c

Re: [FFmpeg-devel] [PATCH 2/5] avformat/imf: CPL processor

2021-09-30 Thread Lynne
29 Sept 2021, 22:47 by p...@sandflow.com: > From: Pierre-Anthony Lemieux > > Signed-off-by: Pierre-Anthony Lemieux > --- > > Notes: > Implements IMF Composition Playlist (CPL) parsing. > > libavformat/imf_cpl.c | 652 ++ > 1 file changed, 652 insertions(

[FFmpeg-devel] [PATCH 003/218] avfilter/formats: Add function to create AVFilterFormats with one entry

2021-09-30 Thread Andreas Rheinhardt
Most instances ff_add_formats() actually only ever add one format; this function can be used to simplify those callers. Signed-off-by: Andreas Rheinhardt --- libavfilter/formats.c | 6 ++ libavfilter/formats.h | 6 ++ 2 files changed, 12 insertions(+) diff --git a/libavfilter/formats.c

[FFmpeg-devel] [PATCH 002/218] avfilter/vf_fieldorder: Remove always-true check

2021-09-30 Thread Andreas Rheinhardt
A filter's formats.query callback is only called after all the inputs and outputs have already been created. Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_fieldorder.c | 4 1 file changed, 4 deletions(-) diff --git a/libavfilter/vf_fieldorder.c b/libavfilter/vf_fieldorder.c index d3

[FFmpeg-devel] [PATCH 005/218] avfilter/af_contrast: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_acontrast.c | 23 ++- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/libavfilter/af_acontrast.c b/libavfilter/af_acontrast.c index 91c4ecd19a..db7ff79d25 100644 --- a/libavfilter/af_acontrast.c +++ b/libavfil

[FFmpeg-devel] [PATCH 006/218] avfilter/af_crossover: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_acrossover.c | 21 + 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/libavfilter/af_acrossover.c b/libavfilter/af_acrossover.c index 1ba847d31b..9c00e1ddc2 100644 --- a/libavfilter/af_acrossover.c +++ b/libavfi

[FFmpeg-devel] [PATCH 007/218] avfilter/af_acrusher: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_acrusher.c | 21 + 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/libavfilter/af_acrusher.c b/libavfilter/af_acrusher.c index 88d6c644ad..14d66e88ea 100644 --- a/libavfilter/af_acrusher.c +++ b/libavfilter/af_

[FFmpeg-devel] [PATCH 008/218] avfilter/af_adeclick: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_adeclick.c | 23 ++- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/libavfilter/af_adeclick.c b/libavfilter/af_adeclick.c index f9404b2a4a..77336e50bb 100644 --- a/libavfilter/af_adeclick.c +++ b/libavfilter/

[FFmpeg-devel] [PATCH 009/218] avfilter/af_adecorrelate: Store format in filter, remove query func

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_adecorrelate.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_adecorrelate.c b/libavfilter/af_adecorrelate.c index e0731b0945..bac7937c10 100644 --- a/libavfilter/af_adecorrelate.c +++ b/l

[FFmpeg-devel] [PATCH 010/218] avfilter/af_adelay: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_adelay.c | 21 ++--- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/libavfilter/af_adelay.c b/libavfilter/af_adelay.c index e67f081b97..c42fa2d175 100644 --- a/libavfilter/af_adelay.c +++ b/libavfilter/af_adelay.

[FFmpeg-devel] [PATCH 011/218] avfilter/af_adenorm: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_adenorm.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_adenorm.c b/libavfilter/af_adenorm.c index 2cac605a2a..3ad1e7f594 100644 --- a/libavfilter/af_adenorm.c +++ b/libavfilter/af_adenor

[FFmpeg-devel] [PATCH 012/218] avfilter/af_aderivative: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
In this case switching to .formats.samples even allows to avoid the runtime check for which filter is currently used. Signed-off-by: Andreas Rheinhardt --- libavfilter/af_aderivative.c | 28 +++- 1 file changed, 3 insertions(+), 25 deletions(-) diff --git a/libavfilter/a

[FFmpeg-devel] [PATCH 013/218] avfilter/af_aecho: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_aecho.c | 21 ++--- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/libavfilter/af_aecho.c b/libavfilter/af_aecho.c index 508d54b04e..73d9f1ac7f 100644 --- a/libavfilter/af_aecho.c +++ b/libavfilter/af_aecho.c @@

[FFmpeg-devel] [PATCH 014/218] avfilter/af_aemphasis: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_aemphasis.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_aemphasis.c b/libavfilter/af_aemphasis.c index 54a47d2c86..1adfcdb63b 100644 --- a/libavfilter/af_aemphasis.c +++ b/libavfilter/a

[FFmpeg-devel] [PATCH 015/218] avfilter/af_aexciter: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_aexciter.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_aexciter.c b/libavfilter/af_aexciter.c index 3300ebbd4f..5d76f290a0 100644 --- a/libavfilter/af_aexciter.c +++ b/libavfilter/af_ae

[FFmpeg-devel] [PATCH 016/218] avfilter/af_afade: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_afade.c | 16 ++-- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/libavfilter/af_afade.c b/libavfilter/af_afade.c index c96a8fb7e3..458712d3b7 100644 --- a/libavfilter/af_afade.c +++ b/libavfilter/af_afade.c @@ -57,8

[FFmpeg-devel] [PATCH 017/218] avfilter/af_afftdn: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_afftdn.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_afftdn.c b/libavfilter/af_afftdn.c index 27a0780ce8..a7b318d619 100644 --- a/libavfilter/af_afftdn.c +++ b/libavfilter/af_afftdn.c @

[FFmpeg-devel] [PATCH 018/218] avfilter/af_afreqshift: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_afreqshift.c | 24 +--- 1 file changed, 5 insertions(+), 19 deletions(-) diff --git a/libavfilter/af_afreqshift.c b/libavfilter/af_afreqshift.c index 95fd4e31fc..731e97afef 100644 --- a/libavfilter/af_afreqshift.c +++ b/lib

[FFmpeg-devel] [PATCH 019/218] avfilter/af_afwtdn: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_afwtdn.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_afwtdn.c b/libavfilter/af_afwtdn.c index 9235e6e28d..3aa9c7b429 100644 --- a/libavfilter/af_afwtdn.c +++ b/libavfilter/af_afwtdn.c @

[FFmpeg-devel] [PATCH 020/218] avfilter/af_alimiter: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_alimiter.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_alimiter.c b/libavfilter/af_alimiter.c index 937f28383f..eb77181607 100644 --- a/libavfilter/af_alimiter.c +++ b/libavfilter/af_al

[FFmpeg-devel] [PATCH 022/218] avfilter/af_amultiply: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_amultiply.c | 21 ++--- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/libavfilter/af_amultiply.c b/libavfilter/af_amultiply.c index f9413c9fc9..5de711bade 100644 --- a/libavfilter/af_amultiply.c +++ b/libavfilte

[FFmpeg-devel] [PATCH 021/218] avfilter/af_amix: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_amix.c | 19 ++- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/libavfilter/af_amix.c b/libavfilter/af_amix.c index d2a363284f..3f51d43acd 100644 --- a/libavfilter/af_amix.c +++ b/libavfilter/af_amix.c @@ -589,22

[FFmpeg-devel] [PATCH 023/218] avfilter/af_anlmdn: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_anlmdn.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_anlmdn.c b/libavfilter/af_anlmdn.c index af6a6a69e9..141e5f398e 100644 --- a/libavfilter/af_anlmdn.c +++ b/libavfilter/af_anlmdn.c @

[FFmpeg-devel] [PATCH 024/218] avfilter/af_aphaser: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_aphaser.c | 25 - 1 file changed, 4 insertions(+), 21 deletions(-) diff --git a/libavfilter/af_aphaser.c b/libavfilter/af_aphaser.c index 962bfe6b16..2d95802677 100644 --- a/libavfilter/af_aphaser.c +++ b/libavfilter/af

[FFmpeg-devel] [PATCH 025/218] avfilter/af_apsyclip: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_apsyclip.c | 21 + 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/libavfilter/af_apsyclip.c b/libavfilter/af_apsyclip.c index e9f1feb906..dc3a8e97e4 100644 --- a/libavfilter/af_apsyclip.c +++ b/libavfilter/af_

[FFmpeg-devel] [PATCH 026/218] avfilter/af_asoftclip: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_asoftclip.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_asoftclip.c b/libavfilter/af_asoftclip.c index 50646738a4..6ffde4431a 100644 --- a/libavfilter/af_asoftclip.c +++ b/libavfilter/a

[FFmpeg-devel] [PATCH 027/218] avfilter/af_astats: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_astats.c | 27 +-- 1 file changed, 5 insertions(+), 22 deletions(-) diff --git a/libavfilter/af_astats.c b/libavfilter/af_astats.c index d43dd086f1..0621d18b35 100644 --- a/libavfilter/af_astats.c +++ b/libavfilter/af_a

[FFmpeg-devel] [PATCH 028/218] avfilter/af_asubboost: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_asubboost.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_asubboost.c b/libavfilter/af_asubboost.c index 9e97cbf375..da3e68e841 100644 --- a/libavfilter/af_asubboost.c +++ b/libavfilter/a

[FFmpeg-devel] [PATCH 029/218] avfilter/af_asupercut: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_asupercut.c | 28 +++- 1 file changed, 7 insertions(+), 21 deletions(-) diff --git a/libavfilter/af_asupercut.c b/libavfilter/af_asupercut.c index 0efcbf8d37..a4c2d15154 100644 --- a/libavfilter/af_asupercut.c +++ b/lib

[FFmpeg-devel] [PATCH 030/218] avfilter/af_atempo: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_atempo.c | 14 +- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/libavfilter/af_atempo.c b/libavfilter/af_atempo.c index 6376cdc03e..e9a6da7970 100644 --- a/libavfilter/af_atempo.c +++ b/libavfilter/af_atempo.c @@ -99

[FFmpeg-devel] [PATCH 031/218] avfilter/af_atilt: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_atilt.c | 21 + 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/libavfilter/af_atilt.c b/libavfilter/af_atilt.c index e242ad2bd5..c8d55590c3 100644 --- a/libavfilter/af_atilt.c +++ b/libavfilter/af_atilt.c @@ -

[FFmpeg-devel] [PATCH 032/218] avfilter/af_axcorrelate: Store format in filter, remove query func

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_axcorrelate.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_axcorrelate.c b/libavfilter/af_axcorrelate.c index 1d9c805b29..8c5c429127 100644 --- a/libavfilter/af_axcorrelate.c +++ b/libav

[FFmpeg-devel] [PATCH 033/218] avfilter/af_chorus: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_chorus.c | 18 +- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/libavfilter/af_chorus.c b/libavfilter/af_chorus.c index cb6de9a85f..68de692c4b 100644 --- a/libavfilter/af_chorus.c +++ b/libavfilter/af_chorus.c @@

[FFmpeg-devel] [PATCH 034/218] avfilter/af_compand: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_compand.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_compand.c b/libavfilter/af_compand.c index 6eb68dfa19..2f8a580279 100644 --- a/libavfilter/af_compand.c +++ b/libavfilter/af_compan

[FFmpeg-devel] [PATCH 035/218] avfilter/af_compensationdelay: Store format in filter, remove query func

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_compensationdelay.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_compensationdelay.c b/libavfilter/af_compensationdelay.c index ff6f640370..6a58fd21bd 100644 --- a/libavfilter/af_compen

[FFmpeg-devel] [PATCH 036/218] avfilter/af_crystalizer: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_crystalizer.c | 21 ++--- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/libavfilter/af_crystalizer.c b/libavfilter/af_crystalizer.c index 9e1a4ef9d2..8d967fd629 100644 --- a/libavfilter/af_crystalizer.c +++ b/li

[FFmpeg-devel] [PATCH 037/218] avfilter/af_dcshift: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_dcshift.c | 18 +- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/libavfilter/af_dcshift.c b/libavfilter/af_dcshift.c index 80f2600e7a..da7c16550a 100644 --- a/libavfilter/af_dcshift.c +++ b/libavfilter/af_dcshift

[FFmpeg-devel] [PATCH 038/218] avfilter/af_deesser: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_deesser.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_deesser.c b/libavfilter/af_deesser.c index a5cc0e63ed..1093e242d7 100644 --- a/libavfilter/af_deesser.c +++ b/libavfilter/af_deesse

[FFmpeg-devel] [PATCH 039/218] avfilter/af_drmeter: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_drmeter.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_drmeter.c b/libavfilter/af_drmeter.c index 010c675271..a4f35b130a 100644 --- a/libavfilter/af_drmeter.c +++ b/libavfilter/af_drmete

[FFmpeg-devel] [PATCH 040/218] avfilter/af_dynaudnorm: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_dynaudnorm.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_dynaudnorm.c b/libavfilter/af_dynaudnorm.c index 73dd9fb04b..bd17998a26 100644 --- a/libavfilter/af_dynaudnorm.c +++ b/libavfilt

[FFmpeg-devel] [PATCH 041/218] avfilter/af_mcompand: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_mcompand.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_mcompand.c b/libavfilter/af_mcompand.c index 5b689caa49..90cfda38c9 100644 --- a/libavfilter/af_mcompand.c +++ b/libavfilter/af_mc

[FFmpeg-devel] [PATCH 042/218] avfilter/af_firequalizer: Store format in filter, remove query func

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_firequalizer.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_firequalizer.c b/libavfilter/af_firequalizer.c index 83dc3ce7ed..568b78117a 100644 --- a/libavfilter/af_firequalizer.c +++ b/l

[FFmpeg-devel] [PATCH 044/218] avfilter/af_rubberband: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_rubberband.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_rubberband.c b/libavfilter/af_rubberband.c index 77f6c820be..4a42aa8a1f 100644 --- a/libavfilter/af_rubberband.c +++ b/libavfilt

[FFmpeg-devel] [PATCH 043/218] avfilter/af_flanger: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_flanger.c | 18 +- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/libavfilter/af_flanger.c b/libavfilter/af_flanger.c index ecf7f9365b..ba8d033ce8 100644 --- a/libavfilter/af_flanger.c +++ b/libavfilter/af_flanger

[FFmpeg-devel] [PATCH 045/218] avfilter/af_sidechaincompress: Store format in filter, remove query func

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_sidechaincompress.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_sidechaincompress.c b/libavfilter/af_sidechaincompress.c index 7359ba8e7e..c0ce82066b 100644 --- a/libavfilter/af_sidech

[FFmpeg-devel] [PATCH 046/218] avfilter/af_silencedetect: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_silencedetect.c | 25 - 1 file changed, 4 insertions(+), 21 deletions(-) diff --git a/libavfilter/af_silencedetect.c b/libavfilter/af_silencedetect.c index 482270d3f7..fa0884bee8 100644 --- a/libavfilter/af_silencedetec

[FFmpeg-devel] [PATCH 047/218] avfilter/af_silenceremove: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_silenceremove.c | 21 ++--- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/libavfilter/af_silenceremove.c b/libavfilter/af_silenceremove.c index 1b420d7838..a02e1de783 100644 --- a/libavfilter/af_silenceremove.c

[FFmpeg-devel] [PATCH 048/218] avfilter/af_speechnorm: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_speechnorm.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_speechnorm.c b/libavfilter/af_speechnorm.c index bc83a347e9..4a19c7b0b7 100644 --- a/libavfilter/af_speechnorm.c +++ b/libavfilt

[FFmpeg-devel] [PATCH 049/218] avfilter/af_superequalizer: Store format in filter, remove query func

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_superequalizer.c | 18 +- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/libavfilter/af_superequalizer.c b/libavfilter/af_superequalizer.c index bf55f3ab94..aa73e92039 100644 --- a/libavfilter/af_superequalizer.c

[FFmpeg-devel] [PATCH 050/218] avfilter/af_tremolo: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_tremolo.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_tremolo.c b/libavfilter/af_tremolo.c index df101cd032..b34a7b79f7 100644 --- a/libavfilter/af_tremolo.c +++ b/libavfilter/af_tremol

[FFmpeg-devel] [PATCH 051/218] avfilter/af_vibrato: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_vibrato.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_vibrato.c b/libavfilter/af_vibrato.c index 46b6b766bf..c0cbcbf6f2 100644 --- a/libavfilter/af_vibrato.c +++ b/libavfilter/af_vibrat

[FFmpeg-devel] [PATCH 052/218] avfilter/af_volumedetect: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_volumedetect.c | 16 +--- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c index ba49b3ca37..c137cc7e50 100644 --- a/libavfilter/af_volumedetect.c +++ b/liba

[FFmpeg-devel] [PATCH 053/218] avfilter/af_afftfilt: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_afftfilt.c | 19 +-- 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libavfilter/af_afftfilt.c b/libavfilter/af_afftfilt.c index 7714f1768f..a135a99d94 100644 --- a/libavfilter/af_afftfilt.c +++ b/libavfilter/af_af

[FFmpeg-devel] [PATCH 054/218] avfilter/af_agate: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/af_agate.c | 20 +--- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/libavfilter/af_agate.c b/libavfilter/af_agate.c index 568006c1f0..64e991f2b4 100644 --- a/libavfilter/af_agate.c +++ b/libavfilter/af_agate.c @@ -1

[FFmpeg-devel] [PATCH 055/218] avfilter/vf_amplify: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_amplify.c | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/libavfilter/vf_amplify.c b/libavfilter/vf_amplify.c index 558cbd918e..ed7dd80b5c 100644 --- a/libavfilter/vf_amplify.c +++ b/libavfilter/vf_amplify.c @@ -50,8 +5

[FFmpeg-devel] [PATCH 056/218] avfilter/vf_atadenoise: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_atadenoise.c | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/libavfilter/vf_atadenoise.c b/libavfilter/vf_atadenoise.c index 40f983cd9e..3a47c32cec 100644 --- a/libavfilter/vf_atadenoise.c +++ b/libavfilter/vf_atadenois

[FFmpeg-devel] [PATCH 057/218] avfilter/vf_avgblur: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_avgblur.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_avgblur.c b/libavfilter/vf_avgblur.c index 01f055e5bb..a6048b8784 100644 --- a/libavfilter/vf_avgblur.c +++ b/libavfilter/vf_avgblur.c @@ -237,8

[FFmpeg-devel] [PATCH 058/218] avfilter/vf_blackframe: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_blackframe.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_blackframe.c b/libavfilter/vf_blackframe.c index 29bed4af68..05641c2fea 100644 --- a/libavfilter/vf_blackframe.c +++ b/libavfilter/vf_blackfra

[FFmpeg-devel] [PATCH 059/218] avfilter/vf_codecview: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_codecview.c | 12 +++- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/libavfilter/vf_codecview.c b/libavfilter/vf_codecview.c index 4226bab8d8..ae8c104d27 100644 --- a/libavfilter/vf_codecview.c +++ b/libavfilter/vf_codec

[FFmpeg-devel] [PATCH 060/218] avfilter/vf_colorconstancy: Store format in filter, remove query func

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_colorconstancy.c | 16 +++- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/libavfilter/vf_colorconstancy.c b/libavfilter/vf_colorconstancy.c index 9ccb462d0f..ba6359462e 100644 --- a/libavfilter/vf_colorconstancy.c +

[FFmpeg-devel] [PATCH 061/218] avfilter/vf_colorkey: Use formats list instead of query func

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_colorkey.c | 9 ++--- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/libavfilter/vf_colorkey.c b/libavfilter/vf_colorkey.c index 93f2ae3ec9..6720be13d6 100644 --- a/libavfilter/vf_colorkey.c +++ b/libavfilter/vf_colorkey.c @@

[FFmpeg-devel] [PATCH 062/218] avfilter/vf_colorlevels: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_colorlevels.c | 24 +++- 1 file changed, 7 insertions(+), 17 deletions(-) diff --git a/libavfilter/vf_colorlevels.c b/libavfilter/vf_colorlevels.c index 552b701a2d..c089740b0a 100644 --- a/libavfilter/vf_colorlevels.c +++ b

[FFmpeg-devel] [PATCH 063/218] avfilter/vf_colormatrix: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_colormatrix.c | 17 - 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/libavfilter/vf_colormatrix.c b/libavfilter/vf_colormatrix.c index 73bc0e9cf0..bee80c69cc 100644 --- a/libavfilter/vf_colormatrix.c +++ b/libavf

[FFmpeg-devel] [PATCH 064/218] avfilter/vf_coreimage: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_coreimage.m | 17 ++--- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/libavfilter/vf_coreimage.m b/libavfilter/vf_coreimage.m index 4e1f89ee71..24f84a5793 100644 --- a/libavfilter/vf_coreimage.m +++ b/libavfilter/vf

[FFmpeg-devel] [PATCH 065/218] avfilter/vf_cover_rect: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_cover_rect.c | 13 + 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/libavfilter/vf_cover_rect.c b/libavfilter/vf_cover_rect.c index 90e19ea8a6..01c9f2abbb 100644 --- a/libavfilter/vf_cover_rect.c +++ b/libavfilter/vf_

[FFmpeg-devel] [PATCH 066/218] avfilter/vf_curves: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_curves.c | 35 +-- 1 file changed, 13 insertions(+), 22 deletions(-) diff --git a/libavfilter/vf_curves.c b/libavfilter/vf_curves.c index 4aeb9e36ae..22a1f8aa70 100644 --- a/libavfilter/vf_curves.c +++ b/libavfi

[FFmpeg-devel] [PATCH 067/218] avfilter/vf_derain: Store format in filter, remove query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_derain.c | 12 +--- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/libavfilter/vf_derain.c b/libavfilter/vf_derain.c index 2950527f69..0eb7da18da 100644 --- a/libavfilter/vf_derain.c +++ b/libavfilter/vf_derain.c @@ -56,1

[FFmpeg-devel] [PATCH 068/218] avfilter/vf_exposure: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_exposure.c | 12 +--- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/libavfilter/vf_exposure.c b/libavfilter/vf_exposure.c index 6443eb77f1..108fba7930 100644 --- a/libavfilter/vf_exposure.c +++ b/libavfilter/vf_exposure.

[FFmpeg-devel] [PATCH 069/218] avfilter/vf_framepack: Use formats list instead of query function

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_framepack.c | 8 +--- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/libavfilter/vf_framepack.c b/libavfilter/vf_framepack.c index eb6fb70ae7..f30909ccff 100644 --- a/libavfilter/vf_framepack.c +++ b/libavfilter/vf_framepack.c

  1   2   >