|
FFmpeg
|
#include <float.h>#include "libavutil/avassert.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 "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, DESIRED_MODE, OUT_MODE, NOISE_MODE, ERROR_MODE, NB_OMODES, IN_MODE, OUT_MODE, NOISE_MODE, NB_MODES, IN_MODE, OUT_MODE, NOISE_MODE, NB_MODES, IN_MODE, DESIRED_MODE, OUT_MODE, NOISE_MODE, ERROR_MODE, NB_OMODES, IN_MODE, DESIRED_MODE, OUT_MODE, NOISE_MODE, ERROR_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 [] |
| 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 |
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 577 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 484 of file af_afftdn.c.
Referenced by config_input().
|
static |
Definition at line 491 of file af_afftdn.c.
Referenced by set_band_parameters().
|
static |
Definition at line 499 of file af_afftdn.c.
Referenced by config_input().
|
static |
Definition at line 512 of file af_afftdn.c.
Referenced by set_parameters().
|
static |
Definition at line 542 of file af_afftdn.c.
Referenced by config_input().
|
static |
Definition at line 617 of file af_afftdn.c.
Referenced by config_input(), and set_noise_profile().
|
static |
Definition at line 629 of file af_afftdn.c.
|
static |
Definition at line 896 of file af_afftdn.c.
Referenced by output_frame().
|
static |
Definition at line 906 of file af_afftdn.c.
Referenced by output_frame().
|
static |
Definition at line 991 of file af_afftdn.c.
Referenced by output_frame().
|
static |
Definition at line 1010 of file af_afftdn.c.
Referenced by output_frame().
|
static |
Definition at line 1047 of file af_afftdn.c.
Referenced by output_frame().
|
static |
Definition at line 1105 of file af_afftdn.c.
Referenced by activate().
|
static |
Definition at line 1267 of file af_afftdn.c.
|
static |
Definition at line 1294 of file af_afftdn.c.
|
static |
Definition at line 1330 of file af_afftdn.c.
|
static |
Definition at line 166 of file af_afftdn.c.
|
static |
Definition at line 1356 of file af_afftdn.c.
| const AVFilter ff_af_afftdn |
Definition at line 1364 of file af_afftdn.c.
1.8.17