|
FFmpeg
|
#include "libavutil/channel_layout.h"#include "libavutil/ffmath.h"#include "libavutil/opt.h"#include "avfilter.h"#include "audio.h"Go to the source code of this file.
Data Structures | |
| struct | Coeffs |
| struct | ATiltContext |
| struct | ThreadData |
| Used for passing data between threads. More... | |
Macros | |
| #define | MAX_ORDER 30 |
| #define | FILTER(name, type) |
| #define | OFFSET(x) offsetof(ATiltContext, x) |
| #define | FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM |
Functions | |
| static double | prewarp (double w, double T, double wp) |
| static double | mz (int i, double w0, double r, double alpha) |
| static double | mp (int i, double w0, double r) |
| static double | mzh (int i, double T, double w0, double r, double alpha) |
| static double | mph (int i, double T, double w0, double r) |
| static void | set_tf1s (Coeffs *coeffs, double b1, double b0, double a0, double w1, double sr, double alpha) |
| static void | set_filter (AVFilterContext *ctx, int order, double sr, double f0, double bw, double alpha) |
| static int | get_coeffs (AVFilterContext *ctx) |
| static int | config_input (AVFilterLink *inlink) |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
| 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 (atilt) | |
Variables | |
| static const AVOption | atilt_options [] |
| static const AVFilterPad | inputs [] |
| const AVFilter | ff_af_atilt |
| #define MAX_ORDER 30 |
Definition at line 25 of file af_atilt.c.
Definition at line 119 of file af_atilt.c.
| #define OFFSET | ( | x | ) | offsetof(ATiltContext, x) |
Definition at line 225 of file af_atilt.c.
Definition at line 226 of file af_atilt.c.
Definition at line 49 of file af_atilt.c.
Definition at line 54 of file af_atilt.c.
Referenced by mzh().
Definition at line 59 of file af_atilt.c.
Referenced by code_matrix_coeffs(), compare_decoding_params(), compare_matrix_params(), compute_metric(), config_input(), estimate_coeff(), lossless_matrix_coeffs(), mlp_parse(), mp_decode_end(), mp_decode_frame(), mp_decode_frame_helper(), mp_decode_init(), mp_decode_line(), mp_get_code(), mp_get_vlc(), mp_get_yuv_from_rgb(), mp_gradient(), mp_read_changes_map(), mp_read_codes_table(), mp_set_rgb_from_yuv(), mph(), rematrix_channels(), write_block_data(), and write_matrix_params().
Definition at line 64 of file af_atilt.c.
Referenced by set_filter().
Definition at line 69 of file af_atilt.c.
Referenced by set_filter().
|
static |
Definition at line 74 of file af_atilt.c.
Referenced by set_filter().
|
static |
Definition at line 86 of file af_atilt.c.
Referenced by get_coeffs().
|
static |
Definition at line 105 of file af_atilt.c.
Referenced by config_input(), and process_command().
|
static |
Definition at line 161 of file af_atilt.c.
|
static |
Definition at line 178 of file af_atilt.c.
|
static |
Definition at line 206 of file af_atilt.c.
|
static |
Definition at line 218 of file af_atilt.c.
| AVFILTER_DEFINE_CLASS | ( | atilt | ) |
|
static |
Definition at line 228 of file af_atilt.c.
|
static |
Definition at line 239 of file af_atilt.c.
| const AVFilter ff_af_atilt |
Definition at line 248 of file af_atilt.c.
1.8.17