FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Functions | Variables
vf_hwupload.c File Reference
#include "libavutil/buffer.h"
#include "libavutil/hwcontext.h"
#include "libavutil/hwcontext_internal.h"
#include "libavutil/log.h"
#include "libavutil/pixdesc.h"
#include "libavutil/opt.h"
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "video.h"

Go to the source code of this file.

Data Structures

struct  HWUploadContext
 

Functions

static int hwupload_query_formats (AVFilterContext *avctx)
 
static int hwupload_config_output (AVFilterLink *outlink)
 
static int hwupload_filter_frame (AVFilterLink *link, AVFrame *input)
 
static av_cold void hwupload_uninit (AVFilterContext *avctx)
 

Variables

static const AVClass hwupload_class
 
static const AVFilterPad hwupload_inputs []
 
static const AVFilterPad hwupload_outputs []
 
AVFilter ff_vf_hwupload
 

Function Documentation

static int hwupload_query_formats ( AVFilterContext avctx)
static

Definition at line 41 of file vf_hwupload.c.

static int hwupload_config_output ( AVFilterLink outlink)
static

Definition at line 96 of file vf_hwupload.c.

static int hwupload_filter_frame ( AVFilterLink link,
AVFrame input 
)
static

Definition at line 151 of file vf_hwupload.c.

static av_cold void hwupload_uninit ( AVFilterContext avctx)
static

Definition at line 192 of file vf_hwupload.c.

Variable Documentation

const AVClass hwupload_class
static
Initial value:
= {
.class_name = "hwupload",
.item_name = av_default_item_name,
.option = NULL,
}
#define NULL
Definition: coverity.c:32
#define LIBAVUTIL_VERSION_INT
Definition: version.h:86
av_default_item_name

Definition at line 200 of file vf_hwupload.c.

const AVFilterPad hwupload_inputs[]
static
Initial value:
= {
{
.name = "default",
.filter_frame = hwupload_filter_frame,
},
{ NULL }
}
#define NULL
Definition: coverity.c:32
static int hwupload_filter_frame(AVFilterLink *link, AVFrame *input)
Definition: vf_hwupload.c:151

Definition at line 207 of file vf_hwupload.c.

const AVFilterPad hwupload_outputs[]
static
Initial value:
= {
{
.name = "default",
.config_props = hwupload_config_output,
},
{ NULL }
}
#define NULL
Definition: coverity.c:32
static int hwupload_config_output(AVFilterLink *outlink)
Definition: vf_hwupload.c:96

Definition at line 216 of file vf_hwupload.c.

AVFilter ff_vf_hwupload
Initial value:
= {
.name = "hwupload",
.description = NULL_IF_CONFIG_SMALL("Upload a normal frame to a hardware frame"),
.uninit = hwupload_uninit,
.query_formats = hwupload_query_formats,
.priv_size = sizeof(HWUploadContext),
.priv_class = &hwupload_class,
.flags_internal = FF_FILTER_FLAG_HWFRAME_AWARE,
}
static int hwupload_query_formats(AVFilterContext *avctx)
Definition: vf_hwupload.c:41
#define FF_FILTER_FLAG_HWFRAME_AWARE
The filter is aware of hardware frames, and any hardware frame context should not be automatically pr...
Definition: internal.h:385
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:179
static const AVFilterPad outputs[]
Definition: af_afftfilt.c:389
static const AVFilterPad inputs[]
Definition: af_afftfilt.c:379
static av_cold void hwupload_uninit(AVFilterContext *avctx)
Definition: vf_hwupload.c:192
static const AVFilterPad hwupload_outputs[]
Definition: vf_hwupload.c:216
static const AVFilterPad hwupload_inputs[]
Definition: vf_hwupload.c:207
static const AVClass hwupload_class
Definition: vf_hwupload.c:200

Definition at line 225 of file vf_hwupload.c.