|
FFmpeg
|
#include <float.h>#include "libavutil/avstring.h"#include "libavutil/channel_layout.h"#include "libavutil/opt.h"#include "libavutil/tx.h"#include "avfilter.h"#include "audio.h"#include "formats.h"#include "filters.h"Go to the source code of this file.
Data Structures | |
| struct | DeNoiseChannel |
| struct | AudioFFTDeNoiseContext |
Macros | |
| #define | C (M_LN10 * 0.1) |
| #define | SOLVE_SIZE (5) |
| #define | NB_PROFILE_BANDS (15) |
| #define | OFFSET(x) offsetof(AudioFFTDeNoiseContext, x) |
| #define | AF AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
| #define | AFR AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM |
Enumerations | |
| enum | SampleNoiseModes { SAMPLE_NONE, SAMPLE_START, SAMPLE_STOP, NB_SAMPLEMODES } |
| enum | OutModes { IN_MODE, OUT_MODE, NOISE_MODE, NB_MODES, IN_MODE, OUT_MODE, NOISE_MODE, NB_MODES, IN_MODE, DESIRED_MODE, OUT_MODE, NOISE_MODE, NB_OMODES, IN_MODE, OUT_MODE, ESS_MODE, NB_MODES } |
| enum | NoiseLinkType { NONE_LINK, MIN_LINK, MAX_LINK, AVERAGE_LINK, NB_LINK } |
| enum | NoiseType { WHITE_NOISE, VINYL_NOISE, SHELLAC_NOISE, CUSTOM_NOISE, NB_NOISE } |
Variables | |
| static const AVOption | afftdn_options [] |
| static const AVFilterPad | inputs [] |
| static const AVFilterPad | outputs [] |
| const AVFilter | ff_af_afftdn |
| #define C (M_LN10 * 0.1) |
Definition at line 32 of file af_afftdn.c.
| #define SOLVE_SIZE (5) |
Definition at line 33 of file af_afftdn.c.
| #define NB_PROFILE_BANDS (15) |
Definition at line 34 of file af_afftdn.c.
| #define OFFSET | ( | x | ) | offsetof(AudioFFTDeNoiseContext, x) |
Definition at line 162 of file af_afftdn.c.
Definition at line 163 of file af_afftdn.c.
Definition at line 164 of file af_afftdn.c.
| enum SampleNoiseModes |
| Enumerator | |
|---|---|
| SAMPLE_NONE | |
| SAMPLE_START | |
| SAMPLE_STOP | |
| NB_SAMPLEMODES | |
Definition at line 36 of file af_afftdn.c.
| enum OutModes |
| Enumerator | |
|---|---|
| IN_MODE | |
| OUT_MODE | |
| NOISE_MODE | |
| NB_MODES | |
| IN_MODE | |
| OUT_MODE | |
| NOISE_MODE | |
| NB_MODES | |
| IN_MODE | |
| DESIRED_MODE | |
| OUT_MODE | |
| NOISE_MODE | |
| NB_OMODES | |
| IN_MODE | |
| OUT_MODE | |
| ESS_MODE | |
| NB_MODES | |
Definition at line 43 of file af_afftdn.c.
| enum NoiseLinkType |
| Enumerator | |
|---|---|
| NONE_LINK | |
| MIN_LINK | |
| MAX_LINK | |
| AVERAGE_LINK | |
| NB_LINK | |
Definition at line 50 of file af_afftdn.c.
| enum NoiseType |
| Enumerator | |
|---|---|
| WHITE_NOISE | |
| VINYL_NOISE | |
| SHELLAC_NOISE | |
| CUSTOM_NOISE | |
| NB_NOISE | |
Definition at line 58 of file af_afftdn.c.
| AVFILTER_DEFINE_CLASS | ( | afftdn | ) |
|
static |
Definition at line 223 of file af_afftdn.c.
Referenced by config_input().
Definition at line 239 of file af_afftdn.c.
Referenced by config_input().
Definition at line 253 of file af_afftdn.c.
Referenced by process_get_band_noise(), and set_noise_profile().
|
static |
Definition at line 272 of file af_afftdn.c.
Referenced by set_band_parameters(), and set_parameters().
Definition at line 302 of file af_afftdn.c.
Referenced by process_frame().
|
static |
Definition at line 311 of file af_afftdn.c.
Referenced by process_frame().
|
static |
Definition at line 575 of file af_afftdn.c.
Referenced by config_input(), output_frame(), process_command(), and process_frame().
Definition at line 339 of file af_afftdn.c.
Referenced by process_frame().
|
static |
Definition at line 352 of file af_afftdn.c.
Referenced by filter_channel().
Definition at line 482 of file af_afftdn.c.
Referenced by config_input().
|
static |
Definition at line 489 of file af_afftdn.c.
Referenced by set_band_parameters().
|
static |
Definition at line 497 of file af_afftdn.c.
Referenced by config_input().
|
static |
Definition at line 510 of file af_afftdn.c.
Referenced by set_parameters().
|
static |
Definition at line 540 of file af_afftdn.c.
Referenced by config_input().
|
static |
Definition at line 615 of file af_afftdn.c.
Referenced by config_input(), and set_noise_profile().
|
static |
Definition at line 627 of file af_afftdn.c.
|
static |
Definition at line 894 of file af_afftdn.c.
Referenced by output_frame().
|
static |
Definition at line 904 of file af_afftdn.c.
Referenced by output_frame().
|
static |
Definition at line 987 of file af_afftdn.c.
Referenced by output_frame().
|
static |
Definition at line 1006 of file af_afftdn.c.
Referenced by output_frame().
|
static |
Definition at line 1043 of file af_afftdn.c.
Referenced by output_frame().
|
static |
Definition at line 1101 of file af_afftdn.c.
Referenced by activate().
|
static |
Definition at line 1263 of file af_afftdn.c.
|
static |
Definition at line 1290 of file af_afftdn.c.
|
static |
Definition at line 1326 of file af_afftdn.c.
|
static |
Definition at line 166 of file af_afftdn.c.
|
static |
Definition at line 1352 of file af_afftdn.c.
|
static |
Definition at line 1360 of file af_afftdn.c.
| const AVFilter ff_af_afftdn |
Definition at line 1367 of file af_afftdn.c.
1.8.17