Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
7a73cca2
Commit
7a73cca2
authored
Nov 13, 2018
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter: add dedot video filter
parent
4334e922
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
28 additions
and
1 deletion
+28
-1
Changelog
Changelog
+1
-0
filters.texi
doc/filters.texi
+24
-0
Makefile
libavfilter/Makefile
+1
-0
allfilters.c
libavfilter/allfilters.c
+1
-0
version.h
libavfilter/version.h
+1
-1
vf_dedot.c
libavfilter/vf_dedot.c
+0
-0
No files found.
Changelog
View file @
7a73cca2
...
...
@@ -4,6 +4,7 @@ releases are sorted from youngest to oldest.
version <next>:
- tpad filter
- AV1 decoding support through libdav1d
- dedot filter
version 4.1:
...
...
doc/filters.texi
View file @
7a73cca2
...
...
@@ -7761,6 +7761,30 @@ had noise.
The @code{deconvolve} filter also supports the @ref{framesync} options.
@section dedot
Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
It accepts the following options:
@table @option
@item m
Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
@var{rainbows} for cross-color reduction.
@item lt
Set spatial luma threshold. Lower values increases reduction of cross-luminance.
@item tl
Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
@item tc
Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
@item ct
Set temporal chroma threshold. Lower values increases reduction of cross-color.
@end table
@section deflate
Apply deflate effect to the video.
...
...
libavfilter/Makefile
View file @
7a73cca2
...
...
@@ -194,6 +194,7 @@ OBJS-$(CONFIG_DEBAND_FILTER) += vf_deband.o
OBJS-$(CONFIG_DEBLOCK_FILTER)
+=
vf_deblock.o
OBJS-$(CONFIG_DECIMATE_FILTER)
+=
vf_decimate.o
OBJS-$(CONFIG_DECONVOLVE_FILTER)
+=
vf_convolve.o
framesync.o
OBJS-$(CONFIG_DEDOT_FILTER)
+=
vf_dedot.o
OBJS-$(CONFIG_DEFLATE_FILTER)
+=
vf_neighbor.o
OBJS-$(CONFIG_DEFLICKER_FILTER)
+=
vf_deflicker.o
OBJS-$(CONFIG_DEINTERLACE_QSV_FILTER)
+=
vf_deinterlace_qsv.o
...
...
libavfilter/allfilters.c
View file @
7a73cca2
...
...
@@ -182,6 +182,7 @@ extern AVFilter ff_vf_deband;
extern
AVFilter
ff_vf_deblock
;
extern
AVFilter
ff_vf_decimate
;
extern
AVFilter
ff_vf_deconvolve
;
extern
AVFilter
ff_vf_dedot
;
extern
AVFilter
ff_vf_deflate
;
extern
AVFilter
ff_vf_deflicker
;
extern
AVFilter
ff_vf_deinterlace_qsv
;
...
...
libavfilter/version.h
View file @
7a73cca2
...
...
@@ -30,7 +30,7 @@
#include "libavutil/version.h"
#define LIBAVFILTER_VERSION_MAJOR 7
#define LIBAVFILTER_VERSION_MINOR 4
3
#define LIBAVFILTER_VERSION_MINOR 4
4
#define LIBAVFILTER_VERSION_MICRO 100
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
...
...
libavfilter/vf_dedot.c
0 → 100644
View file @
7a73cca2
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment