FFmpeg
Data Structures | Macros | Functions | Variables
vf_sr.c File Reference
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "libavformat/avio.h"
#include "libswscale/swscale.h"
#include "dnn_interface.h"

Go to the source code of this file.

Data Structures

struct  SRContext
 

Macros

#define OFFSET(x)   offsetof(SRContext, x)
 
#define FLAGS   AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM
 

Functions

 AVFILTER_DEFINE_CLASS (sr)
 
static av_cold int init (AVFilterContext *context)
 
static int query_formats (AVFilterContext *context)
 
static int config_props (AVFilterLink *inlink)
 
static int filter_frame (AVFilterLink *inlink, AVFrame *in)
 
static av_cold void uninit (AVFilterContext *context)
 

Variables

static const AVOption sr_options []
 
static const AVFilterPad sr_inputs []
 
static const AVFilterPad sr_outputs []
 
AVFilter ff_vf_sr
 

Detailed Description

Filter implementing image super-resolution using deep convolutional networks. https://arxiv.org/abs/1501.00092 https://arxiv.org/abs/1609.05158

Definition in file vf_sr.c.

Macro Definition Documentation

◆ OFFSET

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

Definition at line 51 of file vf_sr.c.

◆ FLAGS

Definition at line 52 of file vf_sr.c.

Function Documentation

◆ AVFILTER_DEFINE_CLASS()

AVFILTER_DEFINE_CLASS ( sr  )

◆ init()

static av_cold int init ( AVFilterContext context)
static

Definition at line 66 of file vf_sr.c.

◆ query_formats()

static int query_formats ( AVFilterContext context)
static

Definition at line 98 of file vf_sr.c.

◆ config_props()

static int config_props ( AVFilterLink inlink)
static

Definition at line 114 of file vf_sr.c.

◆ filter_frame()

static int filter_frame ( AVFilterLink inlink,
AVFrame in 
)
static

Definition at line 227 of file vf_sr.c.

◆ uninit()

static av_cold void uninit ( AVFilterContext context)
static

Definition at line 277 of file vf_sr.c.

Variable Documentation

◆ sr_options

const AVOption sr_options[]
static
Initial value:
= {
{ "dnn_backend", "DNN backend used for model execution", OFFSET(backend_type), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, FLAGS, "backend" },
{ "native", "native backend flag", 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, 0, 0, FLAGS, "backend" },
{ "scale_factor", "scale factor for SRCNN model", OFFSET(scale_factor), AV_OPT_TYPE_INT, { .i64 = 2 }, 2, 4, FLAGS },
{ "model", "path to model file specifying network architecture and its parameters", OFFSET(model_filename), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
{ NULL }
}

Definition at line 53 of file vf_sr.c.

◆ sr_inputs

const AVFilterPad sr_inputs[]
static
Initial value:
= {
{
.name = "default",
.config_props = config_props,
.filter_frame = filter_frame,
},
{ NULL }
}

Definition at line 292 of file vf_sr.c.

◆ sr_outputs

const AVFilterPad sr_outputs[]
static
Initial value:
= {
{
.name = "default",
},
{ NULL }
}

Definition at line 302 of file vf_sr.c.

◆ ff_vf_sr

AVFilter ff_vf_sr
Initial value:
= {
.name = "sr",
.description = NULL_IF_CONFIG_SMALL("Apply DNN-based image super resolution to the input."),
.priv_size = sizeof(SRContext),
.init = init,
.priv_class = &sr_class,
}

Definition at line 310 of file vf_sr.c.

sr_outputs
static const AVFilterPad sr_outputs[]
Definition: vf_sr.c:302
SRContext
Definition: af_acrusher.c:35
uninit
static av_cold void uninit(AVFilterContext *context)
Definition: vf_sr.c:277
query_formats
static int query_formats(AVFilterContext *context)
Definition: vf_sr.c:98
init
static av_cold int init(AVFilterContext *context)
Definition: vf_sr.c:66
FLAGS
#define FLAGS
Definition: vf_sr.c:52
outputs
static const AVFilterPad outputs[]
Definition: af_acontrast.c:203
OFFSET
#define OFFSET(x)
Definition: vf_sr.c:51
NULL
#define NULL
Definition: coverity.c:32
inputs
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:243
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:188
AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
Definition: avfilter.h:125
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_sr.c:227
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:223
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
sr_inputs
static const AVFilterPad sr_inputs[]
Definition: vf_sr.c:292
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:565
AV_OPT_TYPE_STRING
@ AV_OPT_TYPE_STRING
Definition: opt.h:227
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:232
config_props
static int config_props(AVFilterLink *inlink)
Definition: vf_sr.c:114