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
b0bfa369
Commit
b0bfa369
authored
Jul 26, 2019
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter: add arnndn filter
parent
c3985c0e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1560 additions
and
2 deletions
+1560
-2
Changelog
Changelog
+1
-0
filters.texi
doc/filters.texi
+11
-0
Makefile
libavfilter/Makefile
+1
-0
af_arnndn.c
libavfilter/af_arnndn.c
+1544
-0
allfilters.c
libavfilter/allfilters.c
+1
-0
version.h
libavfilter/version.h
+2
-2
No files found.
Changelog
View file @
b0bfa369
...
@@ -15,6 +15,7 @@ version <next>:
...
@@ -15,6 +15,7 @@ version <next>:
- scroll video filter
- scroll video filter
- photosensitivity filter
- photosensitivity filter
- anlms filter
- anlms filter
- arnndn filter
version 4.2:
version 4.2:
...
...
doc/filters.texi
View file @
b0bfa369
...
@@ -2116,6 +2116,17 @@ atrim=end=5,areverse
...
@@ -2116,6 +2116,17 @@ atrim=end=5,areverse
@end example
@end example
@end itemize
@end itemize
@section arnndn
Reduce noise from speech using Recurrent Neural Networks.
This filter accepts the following options:
@table @option
@item model, m
Set train model file to load. This option is always required.
@end table
@section asetnsamples
@section asetnsamples
Set the number of samples per each output audio frame.
Set the number of samples per each output audio frame.
...
...
libavfilter/Makefile
View file @
b0bfa369
...
@@ -72,6 +72,7 @@ OBJS-$(CONFIG_APULSATOR_FILTER) += af_apulsator.o
...
@@ -72,6 +72,7 @@ OBJS-$(CONFIG_APULSATOR_FILTER) += af_apulsator.o
OBJS-$(CONFIG_AREALTIME_FILTER)
+=
f_realtime.o
OBJS-$(CONFIG_AREALTIME_FILTER)
+=
f_realtime.o
OBJS-$(CONFIG_ARESAMPLE_FILTER)
+=
af_aresample.o
OBJS-$(CONFIG_ARESAMPLE_FILTER)
+=
af_aresample.o
OBJS-$(CONFIG_AREVERSE_FILTER)
+=
f_reverse.o
OBJS-$(CONFIG_AREVERSE_FILTER)
+=
f_reverse.o
OBJS-$(CONFIG_ARNNDN_FILTER)
+=
af_arnndn.o
OBJS-$(CONFIG_ASELECT_FILTER)
+=
f_select.o
OBJS-$(CONFIG_ASELECT_FILTER)
+=
f_select.o
OBJS-$(CONFIG_ASENDCMD_FILTER)
+=
f_sendcmd.o
OBJS-$(CONFIG_ASENDCMD_FILTER)
+=
f_sendcmd.o
OBJS-$(CONFIG_ASETNSAMPLES_FILTER)
+=
af_asetnsamples.o
OBJS-$(CONFIG_ASETNSAMPLES_FILTER)
+=
af_asetnsamples.o
...
...
libavfilter/af_arnndn.c
0 → 100644
View file @
b0bfa369
This diff is collapsed.
Click to expand it.
libavfilter/allfilters.c
View file @
b0bfa369
...
@@ -65,6 +65,7 @@ extern AVFilter ff_af_apulsator;
...
@@ -65,6 +65,7 @@ extern AVFilter ff_af_apulsator;
extern
AVFilter
ff_af_arealtime
;
extern
AVFilter
ff_af_arealtime
;
extern
AVFilter
ff_af_aresample
;
extern
AVFilter
ff_af_aresample
;
extern
AVFilter
ff_af_areverse
;
extern
AVFilter
ff_af_areverse
;
extern
AVFilter
ff_af_arnndn
;
extern
AVFilter
ff_af_aselect
;
extern
AVFilter
ff_af_aselect
;
extern
AVFilter
ff_af_asendcmd
;
extern
AVFilter
ff_af_asendcmd
;
extern
AVFilter
ff_af_asetnsamples
;
extern
AVFilter
ff_af_asetnsamples
;
...
...
libavfilter/version.h
View file @
b0bfa369
...
@@ -30,8 +30,8 @@
...
@@ -30,8 +30,8 @@
#include "libavutil/version.h"
#include "libavutil/version.h"
#define LIBAVFILTER_VERSION_MAJOR 7
#define LIBAVFILTER_VERSION_MAJOR 7
#define LIBAVFILTER_VERSION_MINOR 6
2
#define LIBAVFILTER_VERSION_MINOR 6
3
#define LIBAVFILTER_VERSION_MICRO 10
1
#define LIBAVFILTER_VERSION_MICRO 10
0
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
...
...
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