|
FFmpeg
|
#include <float.h>#include "libavutil/avassert.h"#include "libavutil/mem.h"#include "libavutil/opt.h"#include "audio.h"#include "filters.h"#include "avfilter.h"#include "silenceremove_template.c"Go to the source code of this file.
Data Structures | |
| struct | SilenceRemoveContext |
Macros | |
| #define | OFFSET(x) |
| #define | AF AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_AUDIO_PARAM |
| #define | AFR AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM |
| #define | DEPTH 32 |
| #define | DEPTH 64 |
Enumerations | |
| enum | SilenceDetect { D_AVG , D_RMS , D_PEAK , D_MEDIAN , D_PTP , D_DEV , D_NB } |
| enum | TimestampMode { TS_WRITE , TS_COPY , TS_NB } |
| enum | ThresholdMode { T_ANY , T_ALL } |
Functions | |
| AVFILTER_DEFINE_CLASS (silenceremove) | |
| static av_cold int | init (AVFilterContext *ctx) |
| static void | clear_windows (SilenceRemoveContext *s) |
| static int | config_input (AVFilterLink *inlink) |
| static int | config_output (AVFilterLink *outlink) |
| static int | filter_frame (AVFilterLink *outlink, AVFrame *in) |
| static int | activate (AVFilterContext *ctx) |
| static av_cold void | uninit (AVFilterContext *ctx) |
Variables | |
| static const AVOption | silenceremove_options [] |
| static const AVFilterPad | silenceremove_inputs [] |
| static const AVFilterPad | silenceremove_outputs [] |
| const FFFilter | ff_af_silenceremove |
| #define OFFSET | ( | x | ) |
Definition at line 125 of file af_silenceremove.c.
Definition at line 126 of file af_silenceremove.c.
Definition at line 127 of file af_silenceremove.c.
| #define DEPTH 32 |
Definition at line 158 of file af_silenceremove.c.
| #define DEPTH 64 |
Definition at line 158 of file af_silenceremove.c.
| enum SilenceDetect |
| Enumerator | |
|---|---|
| D_AVG | |
| D_RMS | |
| D_PEAK | |
| D_MEDIAN | |
| D_PTP | |
| D_DEV | |
| D_NB | |
Definition at line 33 of file af_silenceremove.c.
| enum TimestampMode |
| Enumerator | |
|---|---|
| TS_WRITE | |
| TS_COPY | |
| TS_NB | |
Definition at line 43 of file af_silenceremove.c.
| enum ThresholdMode |
| Enumerator | |
|---|---|
| T_ANY | |
| T_ALL | |
Definition at line 49 of file af_silenceremove.c.
| AVFILTER_DEFINE_CLASS | ( | silenceremove | ) |
|
static |
Definition at line 165 of file af_silenceremove.c.
|
static |
Definition at line 177 of file af_silenceremove.c.
Referenced by config_output().
|
static |
Definition at line 198 of file af_silenceremove.c.
|
static |
Definition at line 223 of file af_silenceremove.c.
|
static |
Definition at line 294 of file af_silenceremove.c.
Referenced by activate().
|
static |
Definition at line 416 of file af_silenceremove.c.
|
static |
Definition at line 448 of file af_silenceremove.c.
|
static |
Definition at line 129 of file af_silenceremove.c.
|
static |
Definition at line 465 of file af_silenceremove.c.
|
static |
Definition at line 473 of file af_silenceremove.c.
| const FFFilter ff_af_silenceremove |
Definition at line 481 of file af_silenceremove.c.