Re: [FFmpeg-devel] [PATCH 2/2] avcodec/amr*dec: add multichannel support

2021-09-30 Thread Paul B Mahol
On Fri, Oct 1, 2021 at 3:17 AM Sun Zhenliang wrote: > > Sent with a Spark > 2021年10月1日 +0800 05:01 Paul B Mahol ,写道: > > Signed-off-by: Paul B Mahol > > --- > > libavcodec/amr_parser.c | 39 ++ > > libavcodec/amrnbdec.c | 54 +++- > > libavco

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/amr*dec: add multichannel support

2021-09-30 Thread Sun Zhenliang
Sent with a Spark 2021年10月1日 +0800 05:01 Paul B Mahol ,写道: > Signed-off-by: Paul B Mahol > --- > libavcodec/amr_parser.c | 39 ++ > libavcodec/amrnbdec.c | 54 +++- > libavcodec/amrwbdec.c | 59 +-- > libavfo

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

2021-09-30 Thread Sun Zhenliang
2021年10月1日 +0800 03:19 Paul B Mahol ,写道: > On Thu, Sep 30, 2021 at 4:42 PM Sun Zhenliang > wrote: > > > 在 2021年9月30日 +0800 19:56,Paul B Mahol ,写道: > > > On Thu, Sep 30, 2021 at 5:05 AM Sun Zhenliang < > > hisunzhenli...@outlook.com> > > > wrote: > > > > > > > ping for review. > > > > > > > > > > h

Re: [FFmpeg-devel] [PATCH] avfilter: add sharpen_npp video filter

2021-09-30 Thread Roman Arzumanyan
Thanks for review, Timo. Please find revised patch attached. (de)interlacing is now removed, doc entry was added as well. От: Timo Rothenpieler Отправлено: 28 сентября 2021 г. 22:58 Кому: FFmpeg development discussions and patches ; Roman Arzumanyan Копия: Yogen

[FFmpeg-devel] [PATCH 2/2] avcodec/amr*dec: add multichannel support

2021-09-30 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavcodec/amr_parser.c | 39 ++ libavcodec/amrnbdec.c | 54 +++- libavcodec/amrwbdec.c | 59 +-- libavformat/amr.c | 61 +

[FFmpeg-devel] [PATCH 1/2] avcodec: add amr parser

2021-09-30 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavcodec/Makefile | 1 + libavcodec/amr_parser.c | 103 libavcodec/parsers.c| 1 + libavformat/amr.c | 63 +--- 4 files changed, 117 insertions(+), 51 deletions(-) create mode 100644

Re: [FFmpeg-devel] [PATCH 1/3] swscale/swscale_internal: Avoid unsigned for slice parameters

2021-09-30 Thread Michael Niedermayer
On Thu, Sep 30, 2021 at 07:20:44PM +0200, Paul B Mahol wrote: > LGTM will apply thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB The misfortune of the wise is better than the prosperity of the fool. -- Epicurus signature.asc Description: PGP signature

[FFmpeg-devel] [PATCH v11 14/14] avfilter/subscale: Add filter for scaling and/or re-arranging graphical subtitles

2021-09-30 Thread Soft Works
Signed-off-by: softworkz --- configure | 1 + doc/filters.texi | 160 +++ libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/sf_subscale.c | 867 ++ 5 files changed, 1030 insertions(+) create mode 1

[FFmpeg-devel] [PATCH v11 13/14] avfilter/graphicsub2text: Add new graphicsub2text filter (OCR)

2021-09-30 Thread Soft Works
Signed-off-by: softworkz --- configure| 1 + doc/filters.texi | 55 ++ libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/sf_graphicsub2text.c | 323 +++ 5 files changed, 381 in

[FFmpeg-devel] [PATCH v11 12/14] avfilter/split_cc: Add split_cc filter for closed caption handling

2021-09-30 Thread Soft Works
- split_cc {V -> VS) Extract closed-caption (A53) data from video frames as subtitle Frames ffmpeg -y -loglevel verbose -i "https://streams.videolan.org/streams/ts/CC/NewsStream-608-ac3.ts"; -filter_complex "[0:v]split_cc[vid1],textmod=mode=remove_chars:find='@',[vid1]overlay_textsubs" out

[FFmpeg-devel] [PATCH v11 11/14] avfilter/stripstyles: Add stripstyles filter

2021-09-30 Thread Soft Works
- stripstyles {S -> S) Remove all inline styles from subtitle events Signed-off-by: softworkz --- libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/sf_stripstyles.c | 211 +++ 3 files changed, 213 insertions(+) create mode

[FFmpeg-devel] [PATCH v11 10/14] avfilter/textmod: Add textmod, censor and show_speaker filters

2021-09-30 Thread Soft Works
- textmod {S -> S) Modify subtitle text in a number of ways - censor {S -> S) Censor subtitles using a word list - show_speaker {S -> S) Prepend speaker names from ASS subtitles to the visible text lines Signed-off-by: softworkz --- doc/filters.texi | 229 + libavfilt

[FFmpeg-devel] [PATCH v11 09/14] avfilter/overlay_textsubs: Add overlay_textsubs and textsubs2video filters

2021-09-30 Thread Soft Works
- overlay_textsubs {VS -> V) Overlay text subtitles onto a video stream. - textsubs2video {S -> V) Converts text subtitles to video frames Signed-off-by: softworkz --- configure | 2 + doc/filters.texi | 69 libavfilter/Makefile

[FFmpeg-devel] [PATCH v11 08/14] fftools/ffmpeg: Replace sub2video with subtitle frame filtering

2021-09-30 Thread Soft Works
This commit actually enables subtitle filtering in ffmpeg by sending and receiving subtitle frames to and from a filtergraph. The heartbeat functionality from the previous sub2video implementation is retained and applied to all subtitle frames (bitmap, text, ..). The other part of sub2video funct

[FFmpeg-devel] [PATCH v11 07/14] avfilter/overlay_graphicsubs: Add overlay_graphicsubs and graphicsub2video filters

2021-09-30 Thread Soft Works
- overlay_graphicsubs (VS -> V) Overlay graphic subtitles onto a video stream - graphicsub2video {S -> V) Converts graphic subtitles to video frames (with alpha) Gets auto-inserted for retaining compatibility with sub2video command lines Signed-off-by: softworkz --- doc/filters.texi

[FFmpeg-devel] [PATCH v11 06/14] avfilter/sbuffer: Add sbuffersrc and sbuffersink filters

2021-09-30 Thread Soft Works
Signed-off-by: softworkz --- configure| 2 +- libavfilter/allfilters.c | 2 ++ libavfilter/buffersink.c | 63 +++ libavfilter/buffersink.h | 15 + libavfilter/buffersrc.c | 72 libavfilter/buffersr

[FFmpeg-devel] [PATCH v11 05/14] avfilter/avfilter: Handle subtitle frames

2021-09-30 Thread Soft Works
Signed-off-by: softworkz --- libavfilter/avfilter.c | 8 +--- libavfilter/avfiltergraph.c | 5 + libavfilter/formats.c | 14 ++ libavfilter/formats.h | 3 +++ 4 files changed, 27 insertions(+), 3 deletions(-) diff --git a/libavfilter/avfilter.c b/libavfilt

[FFmpeg-devel] [PATCH v11 04/14] avfilter/subtitles: Add subtitles.c for subtitle frame allocation

2021-09-30 Thread Soft Works
Analog to avfilter/video.c and avfilter/audio.c Signed-off-by: softworkz --- libavfilter/Makefile| 1 + libavfilter/avfilter.c | 4 +++ libavfilter/internal.h | 1 + libavfilter/subtitles.c | 63 + libavfilter/subtitles.h | 44

[FFmpeg-devel] [PATCH v11 03/14] fftools/play, probe: Adjust for subtitle changes

2021-09-30 Thread Soft Works
Signed-off-by: softworkz --- fftools/ffplay.c | 102 +- fftools/ffprobe.c | 48 ++ 2 files changed, 79 insertions(+), 71 deletions(-) diff --git a/fftools/ffplay.c b/fftools/ffplay.c index ccea0e4578..e8d36485ae 100644 --- a/fftoo

[FFmpeg-devel] [PATCH v11 02/14] global: Move ass helper functions to avutil as avpriv_ and extend ass dialog parsing

2021-09-30 Thread Soft Works
Signed-off-by: softworkz --- libavcodec/Makefile | 56 +++ libavcodec/ass.h | 129 libavcodec/assdec.c | 2 +- libavcodec/assenc.c | 2 +- libavcodec/ccaption_dec.c

[FFmpeg-devel] [PATCH v11 01/14] global: Prepare AVFrame for subtitle handling

2021-09-30 Thread Soft Works
Root commit for adding subtitle filtering capabilities. In detail: - Add type (AVMediaType) field to AVFrame Replaces previous way of distinction which was based on checking width and height to determine whether a frame is audio or video - Add subtitle fields to AVFrame - Add new struct AVSubt

[FFmpeg-devel] [PATCH v11 00/14] Subtitle Filtering

2021-09-30 Thread Soft Works
v11 Update: - FEATURE-COMPLETE! No more features or filters will be added to this patchset - Added subscale filter Provides high-quality scaling and rearranging functionality for graphical subtitles. This has been the last missing bit for making this a useful and versatile toolset for

Re: [FFmpeg-devel] [PATCH v10 00/14] Subtitle Filtering

2021-09-30 Thread Soft Works
I am very SORRY! This v10 patchset version has gotten all wrong. Please ignore! softworkz > -Original Message- > From: ffmpeg-devel On Behalf Of > Soft Works > Sent: Thursday, 30 September 2021 21:30 > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH v10 00/14] Subtitle Filt

[FFmpeg-devel] [PATCH v10 14/14] ffprobe: Fix incorrect display of closed_captions property

2021-09-30 Thread Soft Works
Repro Example: ffprobe -show_entries stream=closed_captions:disposition=:side_data= "http://streams.videolan.org/streams/ts/CC/NewsStream-608-ac3.ts"; While the codec string includes "Closed Captions", the stream data is showing: closed_captions=0 The test ref was incorrect as the test media fi

[FFmpeg-devel] [PATCH v10 13/14] avformat/utils: Add av_stream_get_codec_properties()

2021-09-30 Thread Soft Works
Signed-off-by: softworkz --- doc/APIchanges | 3 +++ libavformat/avformat.h | 9 + libavformat/utils.c| 5 + libavformat/version.h | 2 +- 4 files changed, 18 insertions(+), 1 deletion(-) diff --git a/doc/APIchanges b/doc/APIchanges index 7b267a79ac..20848fe93f 100644 --

[FFmpeg-devel] [PATCH v10 12/14] avfilter/subscale: Add filter for scaling and/or re-arranging graphical subtitles

2021-09-30 Thread Soft Works
Signed-off-by: softworkz --- configure | 1 + doc/filters.texi | 160 +++ libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/sf_subscale.c | 867 ++ 5 files changed, 1030 insertions(+) create mode 1

[FFmpeg-devel] [PATCH v10 11/14] avfilter/graphicsub2text: Add new graphicsub2text filter (OCR)

2021-09-30 Thread Soft Works
Signed-off-by: softworkz --- configure| 1 + doc/filters.texi | 55 ++ libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/sf_graphicsub2text.c | 323 +++ 5 files changed, 381 in

[FFmpeg-devel] [PATCH v10 10/14] avfilter/split_cc: Add split_cc filter for closed caption handling

2021-09-30 Thread Soft Works
- split_cc {V -> VS) Extract closed-caption (A53) data from video frames as subtitle Frames ffmpeg -y -loglevel verbose -i "https://streams.videolan.org/streams/ts/CC/NewsStream-608-ac3.ts"; -filter_complex "[0:v]split_cc[vid1],textmod=mode=remove_chars:find='@',[vid1]overlay_textsubs" out

[FFmpeg-devel] [PATCH v10 09/14] avfilter/stripstyles: Add stripstyles filter

2021-09-30 Thread Soft Works
- stripstyles {S -> S) Remove all inline styles from subtitle events Signed-off-by: softworkz --- libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/sf_stripstyles.c | 211 +++ 3 files changed, 213 insertions(+) create mode

[FFmpeg-devel] [PATCH v10 08/14] avfilter/textmod: Add textmod, censor and show_speaker filters

2021-09-30 Thread Soft Works
- textmod {S -> S) Modify subtitle text in a number of ways - censor {S -> S) Censor subtitles using a word list - show_speaker {S -> S) Prepend speaker names from ASS subtitles to the visible text lines Signed-off-by: softworkz --- doc/filters.texi | 229 + libavfilt

[FFmpeg-devel] [PATCH v10 07/14] avfilter/overlay_textsubs: Add overlay_textsubs and textsubs2video filters

2021-09-30 Thread Soft Works
- overlay_textsubs {VS -> V) Overlay text subtitles onto a video stream. - textsubs2video {S -> V) Converts text subtitles to video frames Signed-off-by: softworkz --- configure | 2 + doc/filters.texi | 69 libavfilter/Makefile

[FFmpeg-devel] [PATCH v10 06/14] fftools/ffmpeg: Replace sub2video with subtitle frame filtering

2021-09-30 Thread Soft Works
This commit actually enables subtitle filtering in ffmpeg by sending and receiving subtitle frames to and from a filtergraph. The heartbeat functionality from the previous sub2video implementation is retained and applied to all subtitle frames (bitmap, text, ..). The other part of sub2video funct

[FFmpeg-devel] [PATCH v10 05/14] avfilter/overlay_graphicsubs: Add overlay_graphicsubs and graphicsub2video filters

2021-09-30 Thread Soft Works
- overlay_graphicsubs (VS -> V) Overlay graphic subtitles onto a video stream - graphicsub2video {S -> V) Converts graphic subtitles to video frames (with alpha) Gets auto-inserted for retaining compatibility with sub2video command lines Signed-off-by: softworkz --- doc/filters.texi

[FFmpeg-devel] [PATCH v10 04/14] avfilter/sbuffer: Add sbuffersrc and sbuffersink filters

2021-09-30 Thread Soft Works
Signed-off-by: softworkz --- configure| 2 +- libavfilter/allfilters.c | 2 ++ libavfilter/buffersink.c | 63 +++ libavfilter/buffersink.h | 15 + libavfilter/buffersrc.c | 72 libavfilter/buffersr

[FFmpeg-devel] [PATCH v10 03/14] avfilter/avfilter: Handle subtitle frames

2021-09-30 Thread Soft Works
Signed-off-by: softworkz --- libavfilter/avfilter.c | 8 +--- libavfilter/avfiltergraph.c | 5 + libavfilter/formats.c | 14 ++ libavfilter/formats.h | 3 +++ 4 files changed, 27 insertions(+), 3 deletions(-) diff --git a/libavfilter/avfilter.c b/libavfilt

[FFmpeg-devel] [PATCH v10 02/14] avfilter/subtitles: Add subtitles.c for subtitle frame allocation

2021-09-30 Thread Soft Works
Analog to avfilter/video.c and avfilter/audio.c Signed-off-by: softworkz --- libavfilter/Makefile| 1 + libavfilter/avfilter.c | 4 +++ libavfilter/internal.h | 1 + libavfilter/subtitles.c | 63 + libavfilter/subtitles.h | 44

[FFmpeg-devel] [PATCH v10 01/14] fftools/play, probe: Adjust for subtitle changes

2021-09-30 Thread Soft Works
Signed-off-by: softworkz --- fftools/ffplay.c | 102 +- fftools/ffprobe.c | 48 ++ 2 files changed, 79 insertions(+), 71 deletions(-) diff --git a/fftools/ffplay.c b/fftools/ffplay.c index ccea0e4578..e8d36485ae 100644 --- a/fftoo

[FFmpeg-devel] [PATCH v10 00/14] Subtitle Filtering

2021-09-30 Thread Soft Works
v10 Update: - FEATURE-COMPLETE! No more features or filters will be added to this patchset - Added subscale filter Provides high-quality scaling and rearranging functionality for graphical subtitles. This has been the last missing bit for making this a useful and versatile toolset for

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 4:42 PM Sun Zhenliang wrote: > 在 2021年9月30日 +0800 19:56,Paul B Mahol ,写道: > > On Thu, Sep 30, 2021 at 5:05 AM Sun Zhenliang < > hisunzhenli...@outlook.com> > > wrote: > > > > > ping for review. > > > > > > > have amr-wb mc stereo sample? > yes, here are the stereo amr-wb/n

Re: [FFmpeg-devel] [PATCH 1/3] swscale/swscale_internal: Avoid unsigned for slice parameters

2021-09-30 Thread Paul B Mahol
LGTM ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH 3/3] swscale/swscale: Pass slice location into unscaled code also for dst scaling

2021-09-30 Thread Michael Niedermayer
Fixes: alphablend=checkerboard Signed-off-by: Michael Niedermayer --- libswscale/swscale.c | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/libswscale/swscale.c b/libswscale/swscale.c index c7069ae7b2f..18a74abd6b7 100644 --- a/libswscale/swscale.c +++ b/libswscale/

[FFmpeg-devel] [PATCH 2/3] swscale/alphablend: Fix slice handling

2021-09-30 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libswscale/alphablend.c | 32 +--- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/libswscale/alphablend.c b/libswscale/alphablend.c index b5686599c00..b5967c889bc 100644 --- a/libswscale/alphablend.c +++ b/libswsc

[FFmpeg-devel] [PATCH 1/3] swscale/swscale_internal: Avoid unsigned for slice parameters

2021-09-30 Thread Michael Niedermayer
Mixing unsigned and signed often leads to unexpected arithmetic results. Fixes: out of array write Found-by: Signed-off-by: Michael Niedermayer --- libswscale/swscale_internal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libswscale/swscale_internal.h b/libswscale/sws

[FFmpeg-devel] [PATCH] avcodec: add amr parser

2021-09-30 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavcodec/Makefile | 1 + libavcodec/amr_parser.c | 103 libavcodec/parsers.c| 1 + libavformat/amr.c | 63 +--- 4 files changed, 117 insertions(+), 51 deletions(-) create mode 100644

[FFmpeg-devel] [PATCH v2] lavf/movenc: Write 'dby1' minor brand if Dolby content is being muxed to MP4

2021-09-30 Thread Derek Buitenhuis
This is as per: * mp4ra: http://mp4ra.org/#/brands * Dolby Vision muxing spec (which is public): https://professional.dolby.com/siteassets/content-creation/dolby-vision-for-content-creators/dolby_vision_bitstreams_within_the_iso_base_media_file_format_dec2017.pdf Signed-off-by: Derek

Re: [FFmpeg-devel] [PATCH] lavf/movenc: Write 'dby1' minor brand if Dolby content is being muxed to MP4

2021-09-30 Thread Derek Buitenhuis
On 9/30/2021 12:43 AM, Andreas Rheinhardt wrote: >> +AVDOVIDecoderConfigurationRecord *dovi = >> (AVDOVIDecoderConfigurationRecord *) >> + >> av_stream_get_side_data(st, AV_PKT_DATA_DOVI_CONF, NULL); > > If you checked for the existence

Re: [FFmpeg-devel] [PATCH] lavf/movenc: Write 'dby1' minor brand if Dolby content is being muxed to MP4

2021-09-30 Thread Derek Buitenhuis
On 9/29/2021 8:30 PM, Jan Ekström wrote: > I do dislike it how outside of the DoVi pdf they don't really seem to > specify 'dby1', but the mp4 registration authority's description goes > all the way back to January 2017 with this identifier > (https://github.com/mp4ra/mp4ra.github.io/blob/a27f40265

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

2021-09-30 Thread Sun Zhenliang
在 2021年9月30日 +0800 19:56,Paul B Mahol ,写道: > On Thu, Sep 30, 2021 at 5:05 AM Sun Zhenliang > wrote: > > > ping for review. > > > > have amr-wb mc stereo sample? yes, here are the stereo amr-wb/nb files. https://github.com/HiSunzhenliang/patch/blob/main/ffmpeg/avformat-amr-Return-PATCHWELCOME-on-s

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_signature.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_signature.c b/libavfilter/vf_signature.c index 03b53f9a4c..2b55f7fe67 100644 --- a/libavfilter/vf_signature.c +++ b/libavfilter/vf_signature.c

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_smartblur.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_smartblur.c b/libavfilter/vf_smartblur.c index 6737f60c9f..1c454e9f83 100644 --- a/libavfilter/vf_smartblur.c +++ b/libavfilter/vf_smartblur.c

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_spp.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_spp.c b/libavfilter/vf_spp.c index 32a3c59987..e0a02ea65f 100644 --- a/libavfilter/vf_spp.c +++ b/libavfilter/vf_spp.c @@ -310,8 +310,6 @@ static voi

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_sr.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_sr.c b/libavfilter/vf_sr.c index f528fdcad4..4acf9508a3 100644 --- a/libavfilter/vf_sr.c +++ b/libavfilter/vf_sr.c @@ -66,15 +66,10 @@ static av_cold

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_ssim.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_ssim.c b/libavfilter/vf_ssim.c index ba0f18df8a..bc6671e49b 100644 --- a/libavfilter/vf_ssim.c +++ b/libavfilter/vf_ssim.c @@ -420,8 +420,6 @@ stati

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_super2xsai.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_super2xsai.c b/libavfilter/vf_super2xsai.c index 11532925bb..3fcc035803 100644 --- a/libavfilter/vf_super2xsai.c +++ b/libavfilter/vf_super2xs

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_threshold.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_threshold.c b/libavfilter/vf_threshold.c index 65da3734b0..1b8fde4439 100644 --- a/libavfilter/vf_threshold.c +++ b/libavfilter/vf_threshold.c

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_thumbnail.c | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/libavfilter/vf_thumbnail.c b/libavfilter/vf_thumbnail.c index 0d3de1afbf..b6d6814e5e 100644 --- a/libavfilter/vf_thumbnail.c +++ b/libavfilter/vf_thumbnail.c @

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_tinterlace.c | 9 ++--- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/libavfilter/vf_tinterlace.c b/libavfilter/vf_tinterlace.c index 91626192e0..d458e32d8b 100644 --- a/libavfilter/vf_tinterlace.c +++ b/libavfilter/vf_tinte

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_tmidequalizer.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_tmidequalizer.c b/libavfilter/vf_tmidequalizer.c index 96b12f11a7..a51b88cbae 100644 --- a/libavfilter/vf_tmidequalizer.c +++ b/libavfilter

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_unsharp.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_unsharp.c b/libavfilter/vf_unsharp.c index 85182910f6..ea230a4508 100644 --- a/libavfilter/vf_unsharp.c +++ b/libavfilter/vf_unsharp.c @@ -197,8

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_uspp.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_uspp.c b/libavfilter/vf_uspp.c index d9022b1053..c307ead7d7 100644 --- a/libavfilter/vf_uspp.c +++ b/libavfilter/vf_uspp.c @@ -293,8 +293,6 @@ stati

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_vaguedenoiser.c | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/libavfilter/vf_vaguedenoiser.c b/libavfilter/vf_vaguedenoiser.c index cfb532ccb7..3442fcd9c1 100644 --- a/libavfilter/vf_vaguedenoiser.c +++ b/libavfilter/

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_vidstabdetect.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_vidstabdetect.c b/libavfilter/vf_vidstabdetect.c index 19e9ca5a42..05c95d0eeb 100644 --- a/libavfilter/vf_vidstabdetect.c +++ b/libavfilter

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

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

[FFmpeg-devel] [PATCH 094/218] avfilter/vf_vidstab(detect|transform): Deduplicate pixel formats

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_vidstabdetect.c| 11 +-- libavfilter/vf_vidstabtransform.c | 11 +-- libavfilter/vidstabutils.c| 8 libavfilter/vidstabutils.h| 2 ++ 4 files changed, 12 insertions(+), 20 deletions(-) diff --git

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_vibrance.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_vibrance.c b/libavfilter/vf_vibrance.c index b1f9ecba52..ea58bfc875 100644 --- a/libavfilter/vf_vibrance.c +++ b/libavfilter/vf_vibrance.c @@ -2

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_vif.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_vif.c b/libavfilter/vf_vif.c index 01851a01bc..20002c51b9 100644 --- a/libavfilter/vf_vif.c +++ b/libavfilter/vf_vif.c @@ -469,8 +469,6 @@ static AVF

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_vignette.c | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/libavfilter/vf_vignette.c b/libavfilter/vf_vignette.c index 27772d469c..e7c336dfe2 100644 --- a/libavfilter/vf_vignette.c +++ b/libavfilter/vf_vignette.c @@ -12

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_w3fdif.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_w3fdif.c b/libavfilter/vf_w3fdif.c index 46f1435582..42398939b8 100644 --- a/libavfilter/vf_w3fdif.c +++ b/libavfilter/vf_w3fdif.c @@ -73,8 +73,6

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_xbr.c | 11 +-- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/libavfilter/vf_xbr.c b/libavfilter/vf_xbr.c index c799284566..6ae5310c9f 100644 --- a/libavfilter/vf_xbr.c +++ b/libavfilter/vf_xbr.c @@ -340,15 +340,6 @@ sta

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_xfade.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_xfade.c b/libavfilter/vf_xfade.c index d5506a44a8..10f0edae52 100644 --- a/libavfilter/vf_xfade.c +++ b/libavfilter/vf_xfade.c @@ -117,8 +117,6 @@

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_zoompan.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_zoompan.c b/libavfilter/vf_zoompan.c index 58155bc162..25458b348b 100644 --- a/libavfilter/vf_zoompan.c +++ b/libavfilter/vf_zoompan.c @@ -325,8

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_xmedian.c | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/libavfilter/vf_xmedian.c b/libavfilter/vf_xmedian.c index 2ae4132b44..04d807527e 100644 --- a/libavfilter/vf_xmedian.c +++ b/libavfilter/vf_xmedian.c @@ -55,8

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_yadif.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_yadif.c b/libavfilter/vf_yadif.c index 26d457360a..9c3706e5d6 100644 --- a/libavfilter/vf_yadif.c +++ b/libavfilter/vf_yadif.c @@ -265,8 +265,6 @@

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_yaepblur.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_yaepblur.c b/libavfilter/vf_yaepblur.c index ed48e20c2d..d691a4f89b 100644 --- a/libavfilter/vf_yaepblur.c +++ b/libavfilter/vf_yaepblur.c @@ -5

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

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

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vsrc_gradients.c | 13 + 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/libavfilter/vsrc_gradients.c b/libavfilter/vsrc_gradients.c index 5563d832d9..b976f7f826 100644 --- a/libavfilter/vsrc_gradients.c +++ b/libavfilter

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vsrc_mandelbrot.c | 12 +--- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/libavfilter/vsrc_mandelbrot.c b/libavfilter/vsrc_mandelbrot.c index cf7da01506..83e39f1d13 100644 --- a/libavfilter/vsrc_mandelbrot.c +++ b/libavfil

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vsrc_mptestsrc.c | 11 +-- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/libavfilter/vsrc_mptestsrc.c b/libavfilter/vsrc_mptestsrc.c index 329af1fe21..f1bb777efa 100644 --- a/libavfilter/vsrc_mptestsrc.c +++ b/libavfilter/v

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

2021-09-30 Thread Andreas Rheinhardt
In this case it also allows to avoid a runtime check to which filter an AVFilterContext belongs to. Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_hsvkey.c | 14 +++--- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/libavfilter/vf_hsvkey.c b/libavfilter/vf_hsvkey.c

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vsrc_sierpinski.c | 12 +--- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/libavfilter/vsrc_sierpinski.c b/libavfilter/vsrc_sierpinski.c index a26542be42..047811c11f 100644 --- a/libavfilter/vsrc_sierpinski.c +++ b/libavfil

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

2021-09-30 Thread Andreas Rheinhardt
In this case it also allows to avoid a runtime check to which filter an AVFilterContext belongs to. Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_chromashift.c | 15 ++- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/libavfilter/vf_chromashift.c b/libavfilter/v

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

2021-09-30 Thread Andreas Rheinhardt
In this case it also allows to avoid a runtime check to which filter an AVFilterContext belongs to. Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_chromakey.c | 14 +++--- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/libavfilter/vf_chromakey.c b/libavfilter/vf_chr

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_tonemap.c | 13 + 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/libavfilter/vf_tonemap.c b/libavfilter/vf_tonemap.c index 51f56c7386..363df8034b 100644 --- a/libavfilter/vf_tonemap.c +++ b/libavfilter/vf_tonemap.c @@

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_thumbnail_cuda.c | 11 +-- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/libavfilter/vf_thumbnail_cuda.c b/libavfilter/vf_thumbnail_cuda.c index a7a246c959..491542c60a 100644 --- a/libavfilter/vf_thumbnail_cuda.c +++ b/l

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_pseudocolor.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/vf_pseudocolor.c b/libavfilter/vf_pseudocolor.c index fd84a0a819..cb9c9c84cf 100644 --- a/libavfilter/vf_pseudocolor.c +++ b/libavfilter/vf_pseu

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_mcdeint.c | 10 +- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/libavfilter/vf_mcdeint.c b/libavfilter/vf_mcdeint.c index fcbc0257b9..e747521c0a 100644 --- a/libavfilter/vf_mcdeint.c +++ b/libavfilter/vf_mcdeint.c @@ -16

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_lensfun.c | 9 + 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/libavfilter/vf_lensfun.c b/libavfilter/vf_lensfun.c index c9a62ccee7..596daed104 100644 --- a/libavfilter/vf_lensfun.c +++ b/libavfilter/vf_lensfun.c @@ -193,

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

2021-09-30 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_hqx.c | 8 +--- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/libavfilter/vf_hqx.c b/libavfilter/vf_hqx.c index 7f4dc7af37..bc70d984e9 100644 --- a/libavfilter/vf_hqx.c +++ b/libavfilter/vf_hqx.c @@ -461,12 +461,6 @@ HQX_FUNC

[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

[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 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 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 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 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 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 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 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 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 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 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

  1   2   >