|
FFmpeg
|
#include <float.h>#include "libavutil/avassert.h"#include "libavutil/avstring.h"#include "libavutil/channel_layout.h"#include "libavutil/mem.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 FFFilter | ff_af_afftdn |
| #define C (M_LN10 * 0.1) |
Definition at line 33 of file af_afftdn.c.
| #define SOLVE_SIZE (5) |
Definition at line 34 of file af_afftdn.c.
| #define NB_PROFILE_BANDS (15) |
Definition at line 35 of file af_afftdn.c.
| #define OFFSET | ( | x | ) | offsetof(AudioFFTDeNoiseContext, x) |
Definition at line 163 of file af_afftdn.c.
Definition at line 164 of file af_afftdn.c.
Definition at line 165 of file af_afftdn.c.
| enum SampleNoiseModes |
| Enumerator | |
|---|---|
| SAMPLE_NONE | |
| SAMPLE_START | |
| SAMPLE_STOP | |
| NB_SAMPLEMODES | |
Definition at line 37 of file af_afftdn.c.
| enum OutModes |
Definition at line 44 of file af_afftdn.c.
| enum NoiseLinkType |
| Enumerator | |
|---|---|
| NONE_LINK | |
| MIN_LINK | |
| MAX_LINK | |
| AVERAGE_LINK | |
| NB_LINK | |
Definition at line 51 of file af_afftdn.c.
| enum NoiseType |
| Enumerator | |
|---|---|
| WHITE_NOISE | |
| VINYL_NOISE | |
| SHELLAC_NOISE | |
| CUSTOM_NOISE | |
| NB_NOISE | |
Definition at line 59 of file af_afftdn.c.
| AVFILTER_DEFINE_CLASS | ( | afftdn | ) |
|
static |
Definition at line 224 of file af_afftdn.c.
Referenced by config_input().
|
static |
Definition at line 240 of file af_afftdn.c.
Referenced by config_input().
Definition at line 254 of file af_afftdn.c.
Referenced by process_get_band_noise(), and set_noise_profile().
|
static |
Definition at line 273 of file af_afftdn.c.
Referenced by set_band_parameters(), and set_parameters().
Definition at line 303 of file af_afftdn.c.
Referenced by process_frame().
|
static |
Definition at line 312 of file af_afftdn.c.
Referenced by process_frame().
|
static |
Definition at line 580 of file af_afftdn.c.
Referenced by config_input(), output_frame(), process_command(), and process_frame().
Definition at line 340 of file af_afftdn.c.
Referenced by process_frame().
|
static |
Definition at line 353 of file af_afftdn.c.
Referenced by filter_channel().
Definition at line 486 of file af_afftdn.c.
Referenced by config_input().
|
static |
Definition at line 493 of file af_afftdn.c.
Referenced by set_band_parameters().
|
static |
Definition at line 501 of file af_afftdn.c.
Referenced by config_input().
|
static |
Definition at line 514 of file af_afftdn.c.
Referenced by set_parameters().
|
static |
Definition at line 544 of file af_afftdn.c.
Referenced by config_input().
|
static |
Definition at line 620 of file af_afftdn.c.
Referenced by config_input(), and set_noise_profile().
|
static |
Definition at line 632 of file af_afftdn.c.
|
static |
Definition at line 899 of file af_afftdn.c.
Referenced by output_frame().
|
static |
Definition at line 909 of file af_afftdn.c.
Referenced by output_frame().
|
static |
Definition at line 994 of file af_afftdn.c.
Referenced by output_frame().
|
static |
Definition at line 1013 of file af_afftdn.c.
Referenced by output_frame().
|
static |
Definition at line 1051 of file af_afftdn.c.
Referenced by output_frame().
|
static |
Definition at line 1109 of file af_afftdn.c.
Referenced by activate().
|
static |
Definition at line 1271 of file af_afftdn.c.
|
static |
Definition at line 1298 of file af_afftdn.c.
|
static |
Definition at line 1334 of file af_afftdn.c.
|
static |
Definition at line 167 of file af_afftdn.c.
|
static |
Definition at line 1360 of file af_afftdn.c.
| const FFFilter ff_af_afftdn |
Definition at line 1368 of file af_afftdn.c.
1.8.17