#include "libavutil/opt.h"
#include "libavutil/imgutils.h"
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "video.h"
 
Go to the source code of this file.
  
  
      
        
          | static float lerpf  | 
          ( | 
          float  | 
          v0,  | 
         
        
           | 
           | 
          float  | 
          v1,  | 
         
        
           | 
           | 
          float  | 
          f  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
inlinestatic   | 
  
 
 
      
        
          | AVFILTER_DEFINE_CLASS  | 
          ( | 
          vibrance  | 
           | ) | 
           | 
        
      
 
 
Initial value:= {
    {
        .name           = "default",
        .needs_writable = 1,
    },
}
static int filter_frame(AVFilterLink *link, AVFrame *frame)
 
static av_cold int config_input(AVFilterLink *inlink)
 
 
Definition at line 196 of file vf_vibrance.c.
 
 
Initial value:= {
    {
        .name = "default",
    },
}
 
Definition at line 207 of file vf_vibrance.c.
 
 
Initial value:= {
    .name          = "vibrance",
    .priv_class    = &vibrance_class,
}
static av_cold int query_formats(AVFilterContext *avctx)
 
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
 
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
 
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
 
static const AVFilterPad vibrance_inputs[]
 
static const AVFilterPad inputs[]
 
static const AVFilterPad outputs[]
 
static const AVFilterPad vibrance_outputs[]
 
#define flags(name, subs,...)
 
 
Definition at line 231 of file vf_vibrance.c.