|
FFmpeg
|
#include "libavutil/channel_layout.h"#include "libavutil/ffmath.h"#include "libavutil/mem.h"#include "libavutil/opt.h"#include "avfilter.h"#include "audio.h"#include "filters.h"#include "formats.h"Go to the source code of this file.
Data Structures | |
| struct | CrossfeedContext |
Macros | |
| #define | OFFSET(x) |
| #define | FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM |
| #define | AF AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Functions | |
| static int | query_formats (const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out) |
| static int | config_input (AVFilterLink *inlink) |
| static void | reverse_samples (double *dst, const double *src, int nb_samples) |
| static void | filter_samples (double *dst, const double *src, int nb_samples, double b0, double b1, double b2, double a1, double a2, double *sw1, double *sw2) |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *in, int eof) |
| static int | activate (AVFilterContext *ctx) |
| static int | process_command (AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags) |
| static av_cold void | uninit (AVFilterContext *ctx) |
| AVFILTER_DEFINE_CLASS (crossfeed) | |
Variables | |
| static const AVOption | crossfeed_options [] |
| static const AVFilterPad | inputs [] |
| const FFFilter | ff_af_crossfeed |
| #define OFFSET | ( | x | ) |
Definition at line 352 of file af_crossfeed.c.
Definition at line 353 of file af_crossfeed.c.
Definition at line 354 of file af_crossfeed.c.
|
static |
Definition at line 51 of file af_crossfeed.c.
|
static |
Definition at line 77 of file af_crossfeed.c.
Referenced by process_command().
Definition at line 113 of file af_crossfeed.c.
Referenced by filter_frame().
|
static |
Definition at line 120 of file af_crossfeed.c.
Referenced by filter_frame().
|
static |
Definition at line 143 of file af_crossfeed.c.
Referenced by activate().
|
static |
Definition at line 285 of file af_crossfeed.c.
|
static |
Definition at line 331 of file af_crossfeed.c.
|
static |
Definition at line 343 of file af_crossfeed.c.
| AVFILTER_DEFINE_CLASS | ( | crossfeed | ) |
|
static |
Definition at line 356 of file af_crossfeed.c.
|
static |
Definition at line 368 of file af_crossfeed.c.
| const FFFilter ff_af_crossfeed |
Definition at line 376 of file af_crossfeed.c.