FFmpeg
|
vf_idet.c File Reference
#include <float.h>
#include "libavutil/cpu.h"
#include "libavutil/common.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avfilter.h"
#include "internal.h"
Include dependency graph for vf_idet.c:
Go to the source code of this file.
Data Structures | |
struct | IDETContext |
Macros | |
#define | HIST_SIZE 4 |
#define | OFFSET(x) offsetof(IDETContext, x) |
#define | FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Enumerations | |
enum | Type { TFF, BFF, PROGRSSIVE, UNDETERMINED } |
Functions | |
AVFILTER_DEFINE_CLASS (idet) | |
static const char * | type2str (Type type) |
static int | filter_line_c (const uint8_t *a, const uint8_t *b, const uint8_t *c, int w) |
static int | filter_line_c_16bit (const uint16_t *a, const uint16_t *b, const uint16_t *c, int w) |
static void | filter (AVFilterContext *ctx) |
static int | filter_frame (AVFilterLink *link, AVFrame *picref) |
static int | request_frame (AVFilterLink *link) |
static av_cold void | uninit (AVFilterContext *ctx) |
static int | query_formats (AVFilterContext *ctx) |
static av_cold int | init (AVFilterContext *ctx) |
Variables | |
static const AVOption | idet_options [] |
static const AVFilterPad | idet_inputs [] |
static const AVFilterPad | idet_outputs [] |
AVFilter | avfilter_vf_idet |
Macro Definition Documentation
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
#define OFFSET | ( | x | ) | offsetof(IDETContext, x) |
Enumeration Type Documentation
Function Documentation
AVFILTER_DEFINE_CLASS | ( | idet | ) |
|
static |
Definition at line 106 of file vf_idet.c.
Referenced by filter_frame().
|
static |
|
static |
Definition at line 93 of file vf_idet.c.
Referenced by filter_frame().
|
static |
|
static |
|
static |
|
static |
|
static |
Variable Documentation
AVFilter avfilter_vf_idet |
Initial value:
= {
.name = "idet",
.description = NULL_IF_CONFIG_SMALL("Interlace detect Filter."),
.priv_size = sizeof(IDETContext),
.inputs = idet_inputs,
.outputs = idet_outputs,
.priv_class = &idet_class,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: libavutil/internal.h:123
Definition: vf_idet.c:39
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several inputs
Definition: filter_design.txt:216
|
static |
Initial value:
= {
{
.name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.filter_frame = filter_frame,
},
{ NULL }
}
Definition: avutil.h:143
|
static |
Initial value:
= {
{ "intl_thres", "set interlacing threshold", OFFSET(interlace_threshold), AV_OPT_TYPE_FLOAT, {.dbl = 1.04}, -1, FLT_MAX, FLAGS },
{ "prog_thres", "set progressive threshold", OFFSET(progressive_threshold), AV_OPT_TYPE_FLOAT, {.dbl = 1.5}, -1, FLT_MAX, FLAGS },
{ NULL }
}
Definition: opt.h:225
|
static |
Initial value:
= {
{
.name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.request_frame = request_frame,
},
{ NULL }
}
Definition: avutil.h:143
Generated on Mon Nov 18 2024 06:52:10 for FFmpeg by 1.8.11