|
FFmpeg
|
Audio silence detector. More...
#include <float.h>#include "libavutil/channel_layout.h"#include "libavutil/opt.h"#include "libavutil/timestamp.h"#include "audio.h"#include "formats.h"#include "avfilter.h"#include "internal.h"Go to the source code of this file.
Data Structures | |
| struct | SilenceDetectContext |
Macros | |
| #define | OFFSET(x) offsetof(SilenceDetectContext, x) |
| #define | FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_AUDIO_PARAM |
Functions | |
| AVFILTER_DEFINE_CLASS (silencedetect) | |
| static av_cold int | init (AVFilterContext *ctx, const char *args) |
| static char * | get_metadata_val (AVFilterBufferRef *insamples, const char *key) |
| static int | filter_frame (AVFilterLink *inlink, AVFilterBufferRef *insamples) |
| static int | query_formats (AVFilterContext *ctx) |
Variables | |
| static const AVOption | silencedetect_options [] |
| static const AVFilterPad | silencedetect_inputs [] |
| static const AVFilterPad | silencedetect_outputs [] |
| AVFilter | avfilter_af_silencedetect |
Audio silence detector.
Definition in file af_silencedetect.c.
| #define OFFSET | ( | x | ) | offsetof(SilenceDetectContext, x) |
Definition at line 45 of file af_silencedetect.c.
| #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_AUDIO_PARAM |
Definition at line 46 of file af_silencedetect.c.
| AVFILTER_DEFINE_CLASS | ( | silencedetect | ) |
|
static |
Definition at line 57 of file af_silencedetect.c.
|
static |
Definition at line 73 of file af_silencedetect.c.
Referenced by filter_frame().
|
static |
Definition at line 79 of file af_silencedetect.c.
|
static |
Definition at line 130 of file af_silencedetect.c.
|
static |
Definition at line 47 of file af_silencedetect.c.
|
static |
Definition at line 157 of file af_silencedetect.c.
|
static |
Definition at line 167 of file af_silencedetect.c.
| AVFilter avfilter_af_silencedetect |
Definition at line 175 of file af_silencedetect.c.
1.8.2