Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
72b6c8c9
Commit
72b6c8c9
authored
Feb 10, 2020
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter: add Contrast Adaptive Sharpen video filter
parent
c6cc9d9c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
318 additions
and
1 deletion
+318
-1
Changelog
Changelog
+1
-0
filters.texi
doc/filters.texi
+15
-0
Makefile
libavfilter/Makefile
+1
-0
allfilters.c
libavfilter/allfilters.c
+1
-0
version.h
libavfilter/version.h
+1
-1
vf_cas.c
libavfilter/vf_cas.c
+299
-0
No files found.
Changelog
View file @
72b6c8c9
...
...
@@ -42,6 +42,7 @@ version <next>:
- siren audio decoder
- Rayman 2 ADPCM decoder
- Rayman 2 APM demuxer
- cas video filter
version 4.2:
...
...
doc/filters.texi
View file @
72b6c8c9
...
...
@@ -6996,6 +6996,21 @@ Only deinterlace frames marked as interlaced.
The default value is @code{all}.
@end table
@section cas
Apply Contrast Adaptive Sharpen filter to video stream.
The filter accepts the following options:
@table @option
@item strength
Set the sharpening strength. Default value is 0.
@item planes
Set planes to filter. Default value is to filter all
planes except alpha plane.
@end table
@section chromahold
Remove all color information for all colors except for certain one.
...
...
libavfilter/Makefile
View file @
72b6c8c9
...
...
@@ -177,6 +177,7 @@ OBJS-$(CONFIG_BOXBLUR_FILTER) += vf_boxblur.o boxblur.o
OBJS-$(CONFIG_BOXBLUR_OPENCL_FILTER)
+=
vf_avgblur_opencl.o
opencl.o
\
opencl/avgblur.o
boxblur.o
OBJS-$(CONFIG_BWDIF_FILTER)
+=
vf_bwdif.o
yadif_common.o
OBJS-$(CONFIG_CAS_FILTER)
+=
vf_cas.o
OBJS-$(CONFIG_CHROMABER_VULKAN_FILTER)
+=
vf_chromaber_vulkan.o
vulkan.o
OBJS-$(CONFIG_CHROMAHOLD_FILTER)
+=
vf_chromakey.o
OBJS-$(CONFIG_CHROMAKEY_FILTER)
+=
vf_chromakey.o
...
...
libavfilter/allfilters.c
View file @
72b6c8c9
...
...
@@ -168,6 +168,7 @@ extern AVFilter ff_vf_bm3d;
extern
AVFilter
ff_vf_boxblur
;
extern
AVFilter
ff_vf_boxblur_opencl
;
extern
AVFilter
ff_vf_bwdif
;
extern
AVFilter
ff_vf_cas
;
extern
AVFilter
ff_vf_chromahold
;
extern
AVFilter
ff_vf_chromakey
;
extern
AVFilter
ff_vf_chromashift
;
...
...
libavfilter/version.h
View file @
72b6c8c9
...
...
@@ -30,7 +30,7 @@
#include "libavutil/version.h"
#define LIBAVFILTER_VERSION_MAJOR 7
#define LIBAVFILTER_VERSION_MINOR 7
6
#define LIBAVFILTER_VERSION_MINOR 7
7
#define LIBAVFILTER_VERSION_MICRO 100
...
...
libavfilter/vf_cas.c
0 → 100644
View file @
72b6c8c9
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