Libav
Data Structures | Macros | Enumerations | Functions | Variables
vf_interlace.c File Reference

progressive to interlaced content filter, inspired by heavy debugging of tinterlace filter More...

#include "libavutil/common.h"
#include "libavutil/opt.h"
#include "libavutil/imgutils.h"
#include "libavutil/avassert.h"
#include "formats.h"
#include "avfilter.h"
#include "internal.h"
#include "video.h"

Go to the source code of this file.

Data Structures

struct  InterlaceContext
 

Macros

#define OFFSET(x)   offsetof(InterlaceContext, x)
 
#define V   AV_OPT_FLAG_VIDEO_PARAM
 

Enumerations

enum  ScanMode { MODE_TFF = 0, MODE_BFF = 1 }
 
enum  FieldType { FIELD_UPPER = 0, FIELD_LOWER = 1 }
 

Functions

static int query_formats (AVFilterContext *ctx)
 
static av_cold void uninit (AVFilterContext *ctx)
 
static int config_out_props (AVFilterLink *outlink)
 
static void copy_picture_field (AVFrame *src_frame, AVFrame *dst_frame, AVFilterLink *inlink, enum FieldType field_type, int lowpass)
 
static int filter_frame (AVFilterLink *inlink, AVFrame *buf)
 
static int request_frame (AVFilterLink *outlink)
 

Variables

static const AVOption options []
 
class {
      class_name = "interlace filter"
 
      item_name = av_default_item_name
 
      option = options
 
      version = LIBAVUTIL_VERSION_INT
 
}; 
 
static enum AVPixelFormat formats_supported []
 
static const AVFilterPad inputs []
 
static const AVFilterPad outputs []
 
AVFilter ff_vf_interlace
 

Detailed Description

progressive to interlaced content filter, inspired by heavy debugging of tinterlace filter

Definition in file vf_interlace.c.

Macro Definition Documentation

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

Definition at line 52 of file vf_interlace.c.

#define V   AV_OPT_FLAG_VIDEO_PARAM

Definition at line 53 of file vf_interlace.c.

Enumeration Type Documentation

enum ScanMode
Enumerator
MODE_TFF 
MODE_BFF 

Definition at line 34 of file vf_interlace.c.

enum FieldType
Enumerator
FIELD_UPPER 
FIELD_LOWER 

Definition at line 39 of file vf_interlace.c.

Function Documentation

static int query_formats ( AVFilterContext ctx)
static

Definition at line 81 of file vf_interlace.c.

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 87 of file vf_interlace.c.

static int config_out_props ( AVFilterLink outlink)
static

Definition at line 97 of file vf_interlace.c.

static void copy_picture_field ( AVFrame src_frame,
AVFrame dst_frame,
AVFilterLink inlink,
enum FieldType  field_type,
int  lowpass 
)
static

Definition at line 125 of file vf_interlace.c.

Referenced by filter_frame().

static int filter_frame ( AVFilterLink inlink,
AVFrame buf 
)
static

Definition at line 173 of file vf_interlace.c.

static int request_frame ( AVFilterLink outlink)
static

Definition at line 225 of file vf_interlace.c.

Variable Documentation

const AVOption options[]
static
Initial value:
= {
{ "scan", "scanning mode", OFFSET(scan),
AV_OPT_TYPE_INT, {.i64 = MODE_TFF }, 0, 1, .flags = V, .unit = "scan" },
{ "tff", "top field first", 0,
AV_OPT_TYPE_CONST, {.i64 = MODE_TFF }, INT_MIN, INT_MAX, .flags = V, .unit = "scan" },
{ "bff", "bottom field first", 0,
AV_OPT_TYPE_CONST, {.i64 = MODE_BFF }, INT_MIN, INT_MAX, .flags = V, .unit = "scan" },
{ "lowpass", "enable vertical low-pass filter", OFFSET(lowpass),
AV_OPT_TYPE_INT, {.i64 = 1 }, 0, 1, .flags = V },
{ NULL }
}
#define OFFSET(x)
Definition: vf_interlace.c:52
static av_always_inline uint32_t lowpass(int prev, int cur, int16_t *coef, int depth)
Definition: vf_hqdn3d.c:51
NULL
Definition: eval.c:55
#define V
Definition: vf_interlace.c:53

Definition at line 54 of file vf_interlace.c.

class_name = "interlace filter"

Definition at line 67 of file vf_interlace.c.

item_name = av_default_item_name

Definition at line 68 of file vf_interlace.c.

option = options

Definition at line 69 of file vf_interlace.c.

Definition at line 70 of file vf_interlace.c.

const { ... }
enum AVPixelFormat formats_supported[]
static
Initial value:
= {
}
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:70
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition: pixfmt.h:104
planar YUV 4:4:0 full scale (JPEG), deprecated in favor of PIX_FMT_YUV440P and setting color_range ...
Definition: pixfmt.h:103
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV422P and setting color_...
Definition: pixfmt.h:78
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:69
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV420P and setting color_...
Definition: pixfmt.h:77
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:71
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:65
Y , 8bpp.
Definition: pixfmt.h:73
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV444P and setting color_...
Definition: pixfmt.h:79

Definition at line 74 of file vf_interlace.c.

Referenced by query_formats().

const AVFilterPad inputs[]
static
Initial value:
= {
{
.name = "default",
.filter_frame = filter_frame,
},
{ NULL }
}
NULL
Definition: eval.c:55
static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
Definition: vf_interlace.c:173

Definition at line 238 of file vf_interlace.c.

const AVFilterPad outputs[]
static
Initial value:
= {
{
.name = "default",
.config_props = config_out_props,
.request_frame = request_frame,
},
{ NULL }
}
static int config_out_props(AVFilterLink *outlink)
Definition: vf_interlace.c:97
static int request_frame(AVFilterLink *outlink)
Definition: vf_interlace.c:225
NULL
Definition: eval.c:55

Definition at line 247 of file vf_interlace.c.

AVFilter ff_vf_interlace
Initial value:
= {
.name = "interlace",
.description = NULL_IF_CONFIG_SMALL("Convert progressive video into interlaced."),
.uninit = uninit,
.priv_class = &class,
.priv_size = sizeof(InterlaceContext),
}
static const AVFilterPad inputs[]
Definition: vf_interlace.c:238
static int query_formats(AVFilterContext *ctx)
Definition: vf_interlace.c:81
static const AVFilterPad outputs[]
Definition: vf_interlace.c:247
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:150
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_interlace.c:87

Definition at line 257 of file vf_interlace.c.