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
ca5cf846
Commit
ca5cf846
authored
Jun 16, 2017
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter: add superequalizer filter
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
d790f18a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
415 additions
and
1 deletion
+415
-1
Changelog
Changelog
+1
-0
filters.texi
doc/filters.texi
+43
-0
Makefile
libavfilter/Makefile
+1
-0
af_superequalizer.c
libavfilter/af_superequalizer.c
+368
-0
allfilters.c
libavfilter/allfilters.c
+1
-0
version.h
libavfilter/version.h
+1
-1
No files found.
Changelog
View file @
ca5cf846
...
@@ -20,6 +20,7 @@ version <next>:
...
@@ -20,6 +20,7 @@ version <next>:
- sofalizer filter switched to libmysofa
- sofalizer filter switched to libmysofa
- Gremlin Digital Video demuxer and decoder
- Gremlin Digital Video demuxer and decoder
- headphone audio filter
- headphone audio filter
- superequalizer audio filter
version 3.3:
version 3.3:
- CrystalHD decoder moved to new decode API
- CrystalHD decoder moved to new decode API
...
...
doc/filters.texi
View file @
ca5cf846
...
@@ -3835,6 +3835,49 @@ channels. Default is 0.3.
...
@@ -3835,6 +3835,49 @@ channels. Default is 0.3.
Set level of input signal of original channel. Default is 0.8.
Set level of input signal of original channel. Default is 0.8.
@end table
@end table
@section superequalizer
Apply 18th band equalizer.
The filter accpets the following options:
@table @option
@item 1b
Set 65Hz band gain.
@item 2b
Set 92Hz band gain.
@item 3b
Set 131Hz band gain.
@item 4b
Set 185Hz band gain.
@item 5b
Set 262Hz band gain.
@item 6b
Set 370Hz band gain.
@item 7b
Set 523Hz band gain.
@item 8b
Set 740Hz band gain.
@item 9b
Set 1047Hz band gain.
@item 10b
Set 1480Hz band gain.
@item 11b
Set 2093Hz band gain.
@item 12b
Set 2960Hz band gain.
@item 13b
Set 4186Hz band gain.
@item 14b
Set 5920Hz band gain.
@item 15b
Set 8372Hz band gain.
@item 16b
Set 11840Hz band gain.
@item 17b
Set 16744Hz band gain.
@item 18b
Set 20000Hz band gain.
@end table
@section surround
@section surround
Apply audio surround upmix filter.
Apply audio surround upmix filter.
...
...
libavfilter/Makefile
View file @
ca5cf846
...
@@ -109,6 +109,7 @@ OBJS-$(CONFIG_SILENCEREMOVE_FILTER) += af_silenceremove.o
...
@@ -109,6 +109,7 @@ OBJS-$(CONFIG_SILENCEREMOVE_FILTER) += af_silenceremove.o
OBJS-$(CONFIG_SOFALIZER_FILTER)
+=
af_sofalizer.o
OBJS-$(CONFIG_SOFALIZER_FILTER)
+=
af_sofalizer.o
OBJS-$(CONFIG_STEREOTOOLS_FILTER)
+=
af_stereotools.o
OBJS-$(CONFIG_STEREOTOOLS_FILTER)
+=
af_stereotools.o
OBJS-$(CONFIG_STEREOWIDEN_FILTER)
+=
af_stereowiden.o
OBJS-$(CONFIG_STEREOWIDEN_FILTER)
+=
af_stereowiden.o
OBJS-$(CONFIG_SUPEREQUALIZER_FILTER)
+=
af_superequalizer.o
OBJS-$(CONFIG_SURROUND_FILTER)
+=
af_surround.o
OBJS-$(CONFIG_SURROUND_FILTER)
+=
af_surround.o
OBJS-$(CONFIG_TREBLE_FILTER)
+=
af_biquads.o
OBJS-$(CONFIG_TREBLE_FILTER)
+=
af_biquads.o
OBJS-$(CONFIG_TREMOLO_FILTER)
+=
af_tremolo.o
OBJS-$(CONFIG_TREMOLO_FILTER)
+=
af_tremolo.o
...
...
libavfilter/af_superequalizer.c
0 → 100644
View file @
ca5cf846
This diff is collapsed.
Click to expand it.
libavfilter/allfilters.c
View file @
ca5cf846
...
@@ -122,6 +122,7 @@ static void register_all(void)
...
@@ -122,6 +122,7 @@ static void register_all(void)
REGISTER_FILTER
(
SOFALIZER
,
sofalizer
,
af
);
REGISTER_FILTER
(
SOFALIZER
,
sofalizer
,
af
);
REGISTER_FILTER
(
STEREOTOOLS
,
stereotools
,
af
);
REGISTER_FILTER
(
STEREOTOOLS
,
stereotools
,
af
);
REGISTER_FILTER
(
STEREOWIDEN
,
stereowiden
,
af
);
REGISTER_FILTER
(
STEREOWIDEN
,
stereowiden
,
af
);
REGISTER_FILTER
(
SUPEREQUALIZER
,
superequalizer
,
af
);
REGISTER_FILTER
(
SURROUND
,
surround
,
af
);
REGISTER_FILTER
(
SURROUND
,
surround
,
af
);
REGISTER_FILTER
(
TREBLE
,
treble
,
af
);
REGISTER_FILTER
(
TREBLE
,
treble
,
af
);
REGISTER_FILTER
(
TREMOLO
,
tremolo
,
af
);
REGISTER_FILTER
(
TREMOLO
,
tremolo
,
af
);
...
...
libavfilter/version.h
View file @
ca5cf846
...
@@ -30,7 +30,7 @@
...
@@ -30,7 +30,7 @@
#include "libavutil/version.h"
#include "libavutil/version.h"
#define LIBAVFILTER_VERSION_MAJOR 6
#define LIBAVFILTER_VERSION_MAJOR 6
#define LIBAVFILTER_VERSION_MINOR 9
2
#define LIBAVFILTER_VERSION_MINOR 9
3
#define LIBAVFILTER_VERSION_MICRO 100
#define LIBAVFILTER_VERSION_MICRO 100
#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