|
Libav
|
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 |
progressive to interlaced content filter, inspired by heavy debugging of tinterlace filter
Definition in file vf_interlace.c.
| #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.
| 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.
|
static |
Definition at line 81 of file vf_interlace.c.
|
static |
Definition at line 87 of file vf_interlace.c.
|
static |
Definition at line 97 of file vf_interlace.c.
|
static |
Definition at line 125 of file vf_interlace.c.
Referenced by filter_frame().
|
static |
Definition at line 173 of file vf_interlace.c.
|
static |
Definition at line 225 of file vf_interlace.c.
|
static |
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.
| version = LIBAVUTIL_VERSION_INT |
Definition at line 70 of file vf_interlace.c.
| const { ... } |
|
static |
Definition at line 74 of file vf_interlace.c.
Referenced by query_formats().
|
static |
Definition at line 238 of file vf_interlace.c.
|
static |
Definition at line 247 of file vf_interlace.c.
| AVFilter ff_vf_interlace |
Definition at line 257 of file vf_interlace.c.
1.8.8