#include "libavutil/audio_fifo.h"
#include "libavutil/opt.h"
#include "avfilter.h"
#include "audio.h"
#include "filters.h"
#include "formats.h"
#include "internal.h"
 
Go to the source code of this file.
 | 
|   | AVFILTER_DEFINE_CLASS (adeclick) | 
|   | 
| static int  | config_input (AVFilterLink *inlink) | 
|   | 
| static void  | autocorrelation (const double *input, int order, int size, double *output, double scale) | 
|   | 
| static double  | autoregression (const double *samples, int ar_order, int nb_samples, double *k, double *r, double *a) | 
|   | 
| static int  | isfinite_array (double *samples, int nb_samples) | 
|   | 
| static int  | find_index (int *index, int value, int size) | 
|   | 
| static int  | factorization (double *matrix, int n) | 
|   | 
| static int  | do_interpolation (DeclickChannel *c, double *matrix, double *vector, int n, double *out) | 
|   | 
| static int  | interpolation (DeclickChannel *c, const double *src, int ar_order, double *acoefficients, int *index, int nb_errors, double *auxiliary, double *interpolated) | 
|   | 
| static int  | detect_clips (AudioDeclickContext *s, DeclickChannel *c, double unused0, double *unused1, double *unused2, uint8_t *clip, int *index, const double *src, double *dst) | 
|   | 
| static int  | detect_clicks (AudioDeclickContext *s, DeclickChannel *c, double sigmae, double *detection, double *acoefficients, uint8_t *click, int *index, const double *src, double *dst) | 
|   | 
| static int  | filter_channel (AVFilterContext *ctx, void *arg, int ch, int nb_jobs) | 
|   | 
| static int  | filter_frame (AVFilterLink *inlink) | 
|   | 
| static int  | activate (AVFilterContext *ctx) | 
|   | 
| static av_cold int  | init (AVFilterContext *ctx) | 
|   | 
| static av_cold void  | uninit (AVFilterContext *ctx) | 
|   | 
|   | AVFILTER_DEFINE_CLASS (adeclip) | 
|   | 
◆ OFFSET
◆ AF
◆ AVFILTER_DEFINE_CLASS() [1/2]
      
        
          | AVFILTER_DEFINE_CLASS  | 
          ( | 
          adeclick  | 
           | ) | 
           | 
        
      
 
 
◆ config_input()
◆ autocorrelation()
◆ autoregression()
◆ isfinite_array()
  
  
      
        
          | static int isfinite_array  | 
          ( | 
          double *  | 
          samples,  | 
         
        
           | 
           | 
          int  | 
          nb_samples  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
static   | 
  
 
 
◆ find_index()
◆ factorization()
◆ do_interpolation()
◆ interpolation()
◆ detect_clips()
◆ detect_clicks()
◆ filter_channel()
◆ filter_frame()
◆ activate()
◆ init()
◆ uninit()
◆ AVFILTER_DEFINE_CLASS() [2/2]
      
        
          | AVFILTER_DEFINE_CLASS  | 
          ( | 
          adeclip  | 
           | ) | 
           | 
        
      
 
 
◆ adeclick_options
◆ inputs
Initial value:= {
    {
        .name         = "default",
    },
}
 
Definition at line 719 of file af_adeclick.c.
 
 
◆ outputs
Initial value:= {
    {
        .name          = "default",
    },
}
 
Definition at line 727 of file af_adeclick.c.
 
 
◆ ff_af_adeclick
Initial value:= {
    .name          = "adeclick",
    .priv_class    = &adeclick_class,
}
 
Definition at line 734 of file af_adeclick.c.
 
 
◆ adeclip_options
◆ ff_af_adeclip
Initial value:= {
    .name          = "adeclip",
    .priv_class    = &adeclip_class,
}
 
Definition at line 770 of file af_adeclick.c.