| 
    FFmpeg
    
   | 
 
#include "libavutil/channel_layout.h"#include "libavutil/ffmath.h"#include "libavutil/opt.h"#include "avfilter.h"#include "audio.h"#include "filters.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 FFFilter | ff_af_atilt | 
| #define MAX_ORDER 30 | 
Definition at line 26 of file af_atilt.c.
Definition at line 120 of file af_atilt.c.
| #define OFFSET | ( | x | ) | offsetof(ATiltContext, x) | 
Definition at line 226 of file af_atilt.c.
Definition at line 227 of file af_atilt.c.
Definition at line 50 of file af_atilt.c.
Definition at line 55 of file af_atilt.c.
Referenced by mzh().
Definition at line 60 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 65 of file af_atilt.c.
Referenced by set_filter().
Definition at line 70 of file af_atilt.c.
Referenced by set_filter().
      
  | 
  static | 
Definition at line 75 of file af_atilt.c.
Referenced by set_filter().
      
  | 
  static | 
Definition at line 87 of file af_atilt.c.
Referenced by get_coeffs().
      
  | 
  static | 
Definition at line 106 of file af_atilt.c.
Referenced by config_input(), and process_command().
      
  | 
  static | 
Definition at line 162 of file af_atilt.c.
      
  | 
  static | 
Definition at line 179 of file af_atilt.c.
      
  | 
  static | 
Definition at line 207 of file af_atilt.c.
      
  | 
  static | 
Definition at line 219 of file af_atilt.c.
| AVFILTER_DEFINE_CLASS | ( | atilt | ) | 
      
  | 
  static | 
Definition at line 229 of file af_atilt.c.
      
  | 
  static | 
Definition at line 240 of file af_atilt.c.
| const FFFilter ff_af_atilt | 
Definition at line 249 of file af_atilt.c.
 1.8.17