FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
vf_w3fdif.c File Reference
#include "libavutil/common.h"
#include "libavutil/imgutils.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "video.h"
#include "w3fdif.h"

Go to the source code of this file.

Data Structures

struct  W3FDIFContext
 
struct  ThreadData
 Used for passing data between threads. More...
 

Macros

#define OFFSET(x)   offsetof(W3FDIFContext, x)
 
#define FLAGS   AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
 
#define CONST(name, help, val, unit)   { name, help, 0, AV_OPT_TYPE_CONST, {.i64=val}, 0, 0, FLAGS, unit }
 

Functions

 AVFILTER_DEFINE_CLASS (w3fdif)
 
static int query_formats (AVFilterContext *ctx)
 
static void filter_simple_low (int32_t *work_line, uint8_t *in_lines_cur[2], const int16_t *coef, int linesize)
 
static void filter_complex_low (int32_t *work_line, uint8_t *in_lines_cur[4], const int16_t *coef, int linesize)
 
static void filter_simple_high (int32_t *work_line, uint8_t *in_lines_cur[3], uint8_t *in_lines_adj[3], const int16_t *coef, int linesize)
 
static void filter_complex_high (int32_t *work_line, uint8_t *in_lines_cur[5], uint8_t *in_lines_adj[5], const int16_t *coef, int linesize)
 
static void filter_scale (uint8_t *out_pixel, const int32_t *work_pixel, int linesize, int max)
 
static void filter16_simple_low (int32_t *work_line, uint8_t *in_lines_cur8[2], const int16_t *coef, int linesize)
 
static void filter16_complex_low (int32_t *work_line, uint8_t *in_lines_cur8[4], const int16_t *coef, int linesize)
 
static void filter16_simple_high (int32_t *work_line, uint8_t *in_lines_cur8[3], uint8_t *in_lines_adj8[3], const int16_t *coef, int linesize)
 
static void filter16_complex_high (int32_t *work_line, uint8_t *in_lines_cur8[5], uint8_t *in_lines_adj8[5], const int16_t *coef, int linesize)
 
static void filter16_scale (uint8_t *out_pixel8, const int32_t *work_pixel, int linesize, int max)
 
static int config_input (AVFilterLink *inlink)
 
static int config_output (AVFilterLink *outlink)
 
static int deinterlace_slice (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
 
static int filter (AVFilterContext *ctx, int is_second)
 
static int filter_frame (AVFilterLink *inlink, AVFrame *frame)
 
static int request_frame (AVFilterLink *outlink)
 
static av_cold void uninit (AVFilterContext *ctx)
 

Variables

static const AVOption w3fdif_options []
 
static const int8_t n_coef_lf [2] = { 2, 4 }
 
static const int16_t coef_lf [2][4]
 
static const int8_t n_coef_hf [2] = { 3, 5 }
 
static const int16_t coef_hf [2][5]
 
static const AVFilterPad w3fdif_inputs []
 
static const AVFilterPad w3fdif_outputs []
 
AVFilter ff_vf_w3fdif
 

Macro Definition Documentation

#define OFFSET (   x)    offsetof(W3FDIFContext, x)

Definition at line 51 of file vf_w3fdif.c.

Definition at line 52 of file vf_w3fdif.c.

#define CONST (   name,
  help,
  val,
  unit 
)    { name, help, 0, AV_OPT_TYPE_CONST, {.i64=val}, 0, 0, FLAGS, unit }

Definition at line 53 of file vf_w3fdif.c.

Function Documentation

AVFILTER_DEFINE_CLASS ( w3fdif  )
static int query_formats ( AVFilterContext ctx)
static

Definition at line 67 of file vf_w3fdif.c.

static void filter_simple_low ( int32_t work_line,
uint8_t in_lines_cur[2],
const int16_t *  coef,
int  linesize 
)
static

Definition at line 93 of file vf_w3fdif.c.

Referenced by config_input().

static void filter_complex_low ( int32_t work_line,
uint8_t in_lines_cur[4],
const int16_t *  coef,
int  linesize 
)
static

Definition at line 105 of file vf_w3fdif.c.

Referenced by config_input().

static void filter_simple_high ( int32_t work_line,
uint8_t in_lines_cur[3],
uint8_t in_lines_adj[3],
const int16_t *  coef,
int  linesize 
)
static

Definition at line 119 of file vf_w3fdif.c.

Referenced by config_input().

static void filter_complex_high ( int32_t work_line,
uint8_t in_lines_cur[5],
uint8_t in_lines_adj[5],
const int16_t *  coef,
int  linesize 
)
static

Definition at line 136 of file vf_w3fdif.c.

Referenced by config_input().

static void filter_scale ( uint8_t out_pixel,
const int32_t work_pixel,
int  linesize,
int  max 
)
static

Definition at line 157 of file vf_w3fdif.c.

Referenced by config_input().

static void filter16_simple_low ( int32_t work_line,
uint8_t in_lines_cur8[2],
const int16_t *  coef,
int  linesize 
)
static

Definition at line 165 of file vf_w3fdif.c.

Referenced by config_input().

static void filter16_complex_low ( int32_t work_line,
uint8_t in_lines_cur8[4],
const int16_t *  coef,
int  linesize 
)
static

Definition at line 179 of file vf_w3fdif.c.

Referenced by config_input().

static void filter16_simple_high ( int32_t work_line,
uint8_t in_lines_cur8[3],
uint8_t in_lines_adj8[3],
const int16_t *  coef,
int  linesize 
)
static

Definition at line 198 of file vf_w3fdif.c.

Referenced by config_input().

static void filter16_complex_high ( int32_t work_line,
uint8_t in_lines_cur8[5],
uint8_t in_lines_adj8[5],
const int16_t *  coef,
int  linesize 
)
static

Definition at line 222 of file vf_w3fdif.c.

Referenced by config_input().

static void filter16_scale ( uint8_t out_pixel8,
const int32_t work_pixel,
int  linesize,
int  max 
)
static

Definition at line 254 of file vf_w3fdif.c.

Referenced by config_input().

static int config_input ( AVFilterLink inlink)
static

Definition at line 264 of file vf_w3fdif.c.

static int config_output ( AVFilterLink outlink)
static

Definition at line 311 of file vf_w3fdif.c.

static int deinterlace_slice ( AVFilterContext ctx,
void arg,
int  jobnr,
int  nb_jobs 
)
static

Definition at line 343 of file vf_w3fdif.c.

Referenced by filter().

static int filter ( AVFilterContext ctx,
int  is_second 
)
static

Definition at line 448 of file vf_w3fdif.c.

Referenced by deinterlace_slice(), and filter_frame().

static int filter_frame ( AVFilterLink inlink,
AVFrame frame 
)
static

Definition at line 488 of file vf_w3fdif.c.

Referenced by request_frame().

static int request_frame ( AVFilterLink outlink)
static

Definition at line 526 of file vf_w3fdif.c.

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 551 of file vf_w3fdif.c.

Variable Documentation

const AVOption w3fdif_options[]
static
Initial value:
= {
{ "filter", "specify the filter", OFFSET(filter), AV_OPT_TYPE_INT, {.i64=1}, 0, 1, FLAGS, "filter" },
CONST("simple", NULL, 0, "filter"),
CONST("complex", NULL, 1, "filter"),
{ "deint", "specify which frames to deinterlace", OFFSET(deint), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS, "deint" },
CONST("all", "deinterlace all frames", 0, "deint"),
CONST("interlaced", "only deinterlace frames marked as interlaced", 1, "deint"),
{ NULL }
}
#define NULL
Definition: coverity.c:32
static int filter(AVFilterContext *ctx, int is_second)
Definition: vf_w3fdif.c:448
#define FLAGS
Definition: vf_w3fdif.c:52
#define OFFSET(x)
Definition: vf_w3fdif.c:51
#define CONST(name, help, val, unit)
Definition: vf_w3fdif.c:53

Definition at line 55 of file vf_w3fdif.c.

const int8_t n_coef_lf[2] = { 2, 4 }
static

Definition at line 331 of file vf_w3fdif.c.

const int16_t coef_lf[2][4]
static
Initial value:
= {{ 16384, 16384, 0, 0},
{ -852, 17236, 17236, -852}}

Definition at line 332 of file vf_w3fdif.c.

const int8_t n_coef_hf[2] = { 3, 5 }
static

Definition at line 334 of file vf_w3fdif.c.

const int16_t coef_hf[2][5]
static
Initial value:
= {{ -2048, 4096, -2048, 0, 0},
{ 1016, -3801, 5570, -3801, 1016}}

Definition at line 335 of file vf_w3fdif.c.

const AVFilterPad w3fdif_inputs[]
static
Initial value:
= {
{
.name = "default",
.filter_frame = filter_frame,
.config_props = config_input,
},
{ NULL }
}
#define NULL
Definition: coverity.c:32
static int config_input(AVFilterLink *inlink)
Definition: vf_w3fdif.c:264
static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
Definition: vf_w3fdif.c:488

Definition at line 566 of file vf_w3fdif.c.

const AVFilterPad w3fdif_outputs[]
static
Initial value:
= {
{
.name = "default",
.config_props = config_output,
.request_frame = request_frame,
},
{ NULL }
}
#define NULL
Definition: coverity.c:32
static int config_output(AVFilterLink *outlink)
Definition: vf_w3fdif.c:311
static int request_frame(AVFilterLink *outlink)
Definition: vf_w3fdif.c:526

Definition at line 576 of file vf_w3fdif.c.

AVFilter ff_vf_w3fdif
Initial value:
= {
.name = "w3fdif",
.description = NULL_IF_CONFIG_SMALL("Apply Martin Weston three field deinterlace."),
.priv_size = sizeof(W3FDIFContext),
.priv_class = &w3fdif_class,
}
static int query_formats(AVFilterContext *ctx)
Definition: vf_w3fdif.c:67
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
Definition: avfilter.h:116
static const AVFilterPad inputs[]
Definition: af_acontrast.c:193
static const AVFilterPad outputs[]
Definition: af_acontrast.c:203
#define AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
Same as AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, except that the filter will have its filter_frame() c...
Definition: avfilter.h:133
#define flags(name, subs,...)
Definition: cbs_av1.c:596
static const AVFilterPad w3fdif_inputs[]
Definition: vf_w3fdif.c:566
static const AVFilterPad w3fdif_outputs[]
Definition: vf_w3fdif.c:576
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_w3fdif.c:551

Definition at line 586 of file vf_w3fdif.c.