| 
    FFmpeg
    
   | 
 
#include "libavutil/imgutils.h"#include "libavutil/opt.h"#include "libavutil/pixdesc.h"#include "avfilter.h"#include "formats.h"#include "internal.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | DeblockContext | 
Macros | |
| #define | WEAK_HFILTER(name, type, ldiv) | 
| #define | WEAK_VFILTER(name, type, ldiv) | 
| #define | STRONG_HFILTER(name, type, ldiv) | 
| #define | STRONG_VFILTER(name, type, ldiv) | 
| #define | OFFSET(x) offsetof(DeblockContext, x) | 
| #define | FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM | 
Enumerations | |
| enum | FilterType {  BUTTERWORTH, CHEBYSHEV1, CHEBYSHEV2, NB_TYPES, biquad, equalizer, bass, treble, bandpass, bandreject, allpass, highpass, lowpass, lowshelf, highshelf, WEAK, STRONG, NB_FILTER, LOWPASS, FLAT, AFLAT, CHROMA, COLOR, ACOLOR, XFLAT, NB_FILTERS }  | 
Functions | |
| static int | query_formats (AVFilterContext *ctx) | 
| static int | config_output (AVFilterLink *outlink) | 
| static int | filter_frame (AVFilterLink *inlink, AVFrame *in) | 
| AVFILTER_DEFINE_CLASS (deblock) | |
Variables | |
| static const AVOption | deblock_options [] | 
| static const AVFilterPad | inputs [] | 
| static const AVFilterPad | outputs [] | 
| AVFilter | ff_vf_deblock | 
Definition at line 92 of file vf_deblock.c.
Definition at line 131 of file vf_deblock.c.
Definition at line 172 of file vf_deblock.c.
Definition at line 218 of file vf_deblock.c.
| #define OFFSET | ( | x | ) | offsetof(DeblockContext, x) | 
Definition at line 369 of file vf_deblock.c.
| #define FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM | 
Definition at line 370 of file vf_deblock.c.
| enum FilterType | 
Definition at line 34 of file vf_deblock.c.
      
  | 
  static | 
Definition at line 64 of file vf_deblock.c.
      
  | 
  static | 
Definition at line 266 of file vf_deblock.c.
      
  | 
  static | 
Definition at line 308 of file vf_deblock.c.
| AVFILTER_DEFINE_CLASS | ( | deblock | ) | 
      
  | 
  static | 
Definition at line 372 of file vf_deblock.c.
      
  | 
  static | 
Definition at line 385 of file vf_deblock.c.
      
  | 
  static | 
Definition at line 394 of file vf_deblock.c.
| AVFilter ff_vf_deblock | 
Definition at line 405 of file vf_deblock.c.
 1.8.6