| 
    FFmpeg
    
   | 
 
#include "libavutil/imgutils.h"#include "libavutil/intreadwrite.h"#include "libavutil/opt.h"#include "libavutil/pixdesc.h"#include "avfilter.h"#include "formats.h"#include "internal.h"Go to the source code of this file.
Data Structures | |
| struct | KerndeintContext | 
Macros | |
| #define | OFFSET(x) offsetof(KerndeintContext, x) | 
| #define | FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM | 
Functions | |
| AVFILTER_DEFINE_CLASS (kerndeint) | |
| static av_cold void | uninit (AVFilterContext *ctx) | 
| static int | query_formats (AVFilterContext *ctx) | 
| static int | config_props (AVFilterLink *inlink) | 
| static int | filter_frame (AVFilterLink *inlink, AVFrame *inpic) | 
Variables | |
| static const AVOption | kerndeint_options [] | 
| static const AVFilterPad | kerndeint_inputs [] | 
| static const AVFilterPad | kerndeint_outputs [] | 
| AVFilter | ff_vf_kerndeint | 
Kernel Deinterlacer Ported from MPlayer libmpcodecs/vf_kerndeint.c.
Definition in file vf_kerndeint.c.
| #define OFFSET | ( | x | ) | offsetof(KerndeintContext, x) | 
Definition at line 49 of file vf_kerndeint.c.
| #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM | 
Definition at line 50 of file vf_kerndeint.c.
| AVFILTER_DEFINE_CLASS | ( | kerndeint | ) | 
      
  | 
  static | 
Definition at line 62 of file vf_kerndeint.c.
      
  | 
  static | 
Definition at line 69 of file vf_kerndeint.c.
      
  | 
  static | 
Definition at line 87 of file vf_kerndeint.c.
      
  | 
  static | 
< Previous field's pixel line number n
< Previous field's pixel line number (n - 1)
< Previous field's pixel line number (n + 1)
< Previous field's pixel line number (n - 2)
< Previous field's pixel line number (n + 2)
< Previous field's pixel line number (n - 4)
< Previous field's pixel line number (n + 4)
< Current field's pixel line number n
< Current field's pixel line number (n - 1)
< Current field's pixel line number (n + 1)
< Current field's pixel line number (n - 2)
< Current field's pixel line number (n + 2)
< Current field's pixel line number (n - 3)
< Current field's pixel line number (n + 3)
< Current field's pixel line number (n - 4)
< Current field's pixel line number (n + 4)
Definition at line 108 of file vf_kerndeint.c.
      
  | 
  static | 
Definition at line 51 of file vf_kerndeint.c.
      
  | 
  static | 
Definition at line 291 of file vf_kerndeint.c.
      
  | 
  static | 
Definition at line 301 of file vf_kerndeint.c.
| AVFilter ff_vf_kerndeint | 
Definition at line 310 of file vf_kerndeint.c.
 1.8.17