FFmpeg
|
#include "libavutil/avassert.h"
#include "libavutil/audio_fifo.h"
#include "libavutil/channel_layout.h"
#include "libavutil/common.h"
#include "libavutil/opt.h"
#include "audio.h"
#include "avfilter.h"
#include "formats.h"
#include "filters.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
struct | AudioXCorrelateContext |
Macros | |
#define | AF AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
#define | OFFSET(x) offsetof(AudioXCorrelateContext, x) |
Functions | |
static int | query_formats (AVFilterContext *ctx) |
static float | mean_sum (const float *in, int size) |
static float | square_sum (const float *x, const float *y, int size) |
static float | xcorrelate (const float *x, const float *y, float sumx, float sumy, int size) |
static int | xcorrelate_slow (AVFilterContext *ctx, AVFrame *out) |
static int | xcorrelate_fast (AVFilterContext *ctx, AVFrame *out) |
static int | activate (AVFilterContext *ctx) |
static int | config_output (AVFilterLink *outlink) |
static av_cold void | uninit (AVFilterContext *ctx) |
AVFILTER_DEFINE_CLASS (axcorrelate) | |
Variables | |
static const AVFilterPad | inputs [] |
static const AVFilterPad | outputs [] |
static const AVOption | axcorrelate_options [] |
AVFilter | ff_af_axcorrelate |
Definition at line 355 of file af_axcorrelate.c.
#define OFFSET | ( | x | ) | offsetof(AudioXCorrelateContext, x) |
Definition at line 356 of file af_axcorrelate.c.
|
static |
Definition at line 50 of file af_axcorrelate.c.
|
static |
Definition at line 80 of file af_axcorrelate.c.
Referenced by xcorrelate_slow().
|
static |
Definition at line 90 of file af_axcorrelate.c.
Referenced by vp6_block_variance(), and xcorrelate_fast().
|
static |
Definition at line 100 of file af_axcorrelate.c.
Referenced by xcorrelate_slow().
|
static |
Definition at line 120 of file af_axcorrelate.c.
Referenced by config_output().
|
static |
Definition at line 153 of file af_axcorrelate.c.
Referenced by config_output().
|
static |
Definition at line 197 of file af_axcorrelate.c.
|
static |
Definition at line 287 of file af_axcorrelate.c.
|
static |
Definition at line 319 of file af_axcorrelate.c.
AVFILTER_DEFINE_CLASS | ( | axcorrelate | ) |
|
static |
Definition at line 334 of file af_axcorrelate.c.
|
static |
Definition at line 346 of file af_axcorrelate.c.
|
static |
Definition at line 358 of file af_axcorrelate.c.
AVFilter ff_af_axcorrelate |
Definition at line 368 of file af_axcorrelate.c.