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
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
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
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
Signed-off-by: Paul B Mahol
---
libavcodec/amr_parser.c | 39 ++
libavcodec/amrnbdec.c | 54 +++-
libavcodec/amrwbdec.c | 59 +--
libavformat/amr.c | 61 +
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
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
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
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
- 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
- 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
- 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
- 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
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
- 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
Signed-off-by: softworkz
---
configure| 2 +-
libavfilter/allfilters.c | 2 ++
libavfilter/buffersink.c | 63 +++
libavfilter/buffersink.h | 15 +
libavfilter/buffersrc.c | 72
libavfilter/buffersr
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
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
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
Signed-off-by: softworkz
---
libavcodec/Makefile | 56 +++
libavcodec/ass.h | 129
libavcodec/assdec.c | 2 +-
libavcodec/assenc.c | 2 +-
libavcodec/ccaption_dec.c
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
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
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
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
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
--
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
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
- 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
- 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
- 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
- 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
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
- 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
Signed-off-by: softworkz
---
configure| 2 +-
libavfilter/allfilters.c | 2 ++
libavfilter/buffersink.c | 63 +++
libavfilter/buffersink.h | 15 +
libavfilter/buffersrc.c | 72
libavfilter/buffersr
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
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
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
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
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
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".
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/
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
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
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
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
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
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
在 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
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
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
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
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
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
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
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
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
@
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
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
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
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
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/
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
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
+++
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
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
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
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
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
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
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 @@
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
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
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 @@
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
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
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
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
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
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
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
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
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
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
@@
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
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
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
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,
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
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
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.
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
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
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_
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
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
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
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
@@
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
+
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
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 - 100 of 188 matches
Mail list logo