FFmpeg
Data Structures | Macros | Functions | Variables
vf_overlay_vulkan.c File Reference
#include "libavutil/random_seed.h"
#include "libavutil/opt.h"
#include "vulkan_filter.h"
#include "internal.h"
#include "framesync.h"

Go to the source code of this file.

Data Structures

struct  OverlayVulkanContext
 

Macros

#define CGROUPS   (int [3]){ 32, 32, 1 }
 
#define OFFSET(x)   offsetof(OverlayVulkanContext, x)
 
#define FLAGS   (AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM)
 

Functions

static av_cold int init_filter (AVFilterContext *ctx)
 
static int process_frames (AVFilterContext *avctx, AVFrame *out_f, AVFrame *main_f, AVFrame *overlay_f)
 
static int overlay_vulkan_blend (FFFrameSync *fs)
 
static int overlay_vulkan_config_output (AVFilterLink *outlink)
 
static int overlay_vulkan_activate (AVFilterContext *avctx)
 
static av_cold int overlay_vulkan_init (AVFilterContext *avctx)
 
static void overlay_vulkan_uninit (AVFilterContext *avctx)
 
 AVFILTER_DEFINE_CLASS (overlay_vulkan)
 

Variables

static const char overlay_noalpha []
 
static const char overlay_alpha []
 
static const AVOption overlay_vulkan_options []
 
static const AVFilterPad overlay_vulkan_inputs []
 
static const AVFilterPad overlay_vulkan_outputs []
 
const AVFilter ff_vf_overlay_vulkan
 

Macro Definition Documentation

◆ CGROUPS

#define CGROUPS   (int [3]){ 32, 32, 1 }

Definition at line 25 of file vf_overlay_vulkan.c.

◆ OFFSET

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

Definition at line 454 of file vf_overlay_vulkan.c.

◆ FLAGS

Definition at line 455 of file vf_overlay_vulkan.c.

Function Documentation

◆ init_filter()

static av_cold int init_filter ( AVFilterContext ctx)
static

Definition at line 80 of file vf_overlay_vulkan.c.

Referenced by overlay_vulkan_blend().

◆ process_frames()

static int process_frames ( AVFilterContext avctx,
AVFrame out_f,
AVFrame main_f,
AVFrame overlay_f 
)
static

Definition at line 231 of file vf_overlay_vulkan.c.

Referenced by overlay_vulkan_blend().

◆ overlay_vulkan_blend()

static int overlay_vulkan_blend ( FFFrameSync fs)
static

Definition at line 359 of file vf_overlay_vulkan.c.

Referenced by overlay_vulkan_init().

◆ overlay_vulkan_config_output()

static int overlay_vulkan_config_output ( AVFilterLink outlink)
static

Definition at line 410 of file vf_overlay_vulkan.c.

◆ overlay_vulkan_activate()

static int overlay_vulkan_activate ( AVFilterContext avctx)
static

Definition at line 427 of file vf_overlay_vulkan.c.

◆ overlay_vulkan_init()

static av_cold int overlay_vulkan_init ( AVFilterContext avctx)
static

Definition at line 434 of file vf_overlay_vulkan.c.

◆ overlay_vulkan_uninit()

static void overlay_vulkan_uninit ( AVFilterContext avctx)
static

Definition at line 443 of file vf_overlay_vulkan.c.

◆ AVFILTER_DEFINE_CLASS()

AVFILTER_DEFINE_CLASS ( overlay_vulkan  )

Variable Documentation

◆ overlay_noalpha

const char overlay_noalpha[]
static
Initial value:
= {
C(0, void overlay_noalpha(int i, ivec2 pos) )
C(0, { )
C(1, if ((o_offset[i].x <= pos.x) && (o_offset[i].y <= pos.y) &&
(pos.x < (o_offset[i].x + o_size[i].x)) &&
(pos.y < (o_offset[i].y + o_size[i].y))) { )
C(2, vec4 res = texture(overlay_img[i], pos - o_offset[i]); )
C(2, imageStore(output_img[i], pos, res); )
C(1, } else { )
C(2, vec4 res = texture(main_img[i], pos); )
C(2, imageStore(output_img[i], pos, res); )
C(1, } )
C(0, } )
}

Definition at line 49 of file vf_overlay_vulkan.c.

Referenced by init_filter().

◆ overlay_alpha

const char overlay_alpha[]
static
Initial value:
= {
C(0, void overlay_alpha_opaque(int i, ivec2 pos) )
C(0, { )
C(1, vec4 res = texture(main_img[i], pos); )
C(1, if ((o_offset[i].x <= pos.x) && (o_offset[i].y <= pos.y) &&
(pos.x < (o_offset[i].x + o_size[i].x)) &&
(pos.y < (o_offset[i].y + o_size[i].y))) { )
C(2, vec4 ovr = texture(overlay_img[i], pos - o_offset[i]); )
C(2, res = ovr * ovr.a + res * (1.0f - ovr.a); )
C(2, res.a = 1.0f; )
C(2, imageStore(output_img[i], pos, res); )
C(1, } )
C(1, imageStore(output_img[i], pos, res); )
C(0, } )
}

Definition at line 64 of file vf_overlay_vulkan.c.

Referenced by init_filter().

◆ overlay_vulkan_options

const AVOption overlay_vulkan_options[]
static
Initial value:
= {
{ "x", "Set horizontal offset", OFFSET(overlay_x), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, .flags = FLAGS },
{ "y", "Set vertical offset", OFFSET(overlay_y), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, .flags = FLAGS },
{ NULL },
}

Definition at line 456 of file vf_overlay_vulkan.c.

◆ overlay_vulkan_inputs

const AVFilterPad overlay_vulkan_inputs[]
static
Initial value:
= {
{
.name = "main",
.config_props = &ff_vk_filter_config_input,
},
{
.name = "overlay",
.config_props = &ff_vk_filter_config_input,
},
}

Definition at line 464 of file vf_overlay_vulkan.c.

◆ overlay_vulkan_outputs

const AVFilterPad overlay_vulkan_outputs[]
static
Initial value:
= {
{
.name = "default",
.config_props = &overlay_vulkan_config_output,
},
}

Definition at line 477 of file vf_overlay_vulkan.c.

◆ ff_vf_overlay_vulkan

const AVFilter ff_vf_overlay_vulkan
Initial value:
= {
.name = "overlay_vulkan",
.description = NULL_IF_CONFIG_SMALL("Overlay a source on top of another"),
.priv_size = sizeof(OverlayVulkanContext),
.priv_class = &overlay_vulkan_class,
.flags_internal = FF_FILTER_FLAG_HWFRAME_AWARE,
}

Definition at line 485 of file vf_overlay_vulkan.c.

FF_FILTER_FLAG_HWFRAME_AWARE
#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:371
overlay_noalpha
static const char overlay_noalpha[]
Definition: vf_overlay_vulkan.c:49
overlay_vulkan_activate
static int overlay_vulkan_activate(AVFilterContext *avctx)
Definition: vf_overlay_vulkan.c:427
overlay_vulkan_config_output
static int overlay_vulkan_config_output(AVFilterLink *outlink)
Definition: vf_overlay_vulkan.c:410
overlay_vulkan_outputs
static const AVFilterPad overlay_vulkan_outputs[]
Definition: vf_overlay_vulkan.c:477
AV_PIX_FMT_VULKAN
@ AV_PIX_FMT_VULKAN
Vulkan hardware images.
Definition: pixfmt.h:346
init
static int init
Definition: av_tx.c:47
C
s EdgeDetect Foobar g libavfilter vf_edgedetect c libavfilter vf_foobar c edit libavfilter and add an entry for foobar following the pattern of the other filters edit libavfilter allfilters and add an entry for foobar following the pattern of the other filters configure make j< whatever > ffmpeg ffmpeg i you should get a foobar png with Lena edge detected That s your new playground is ready Some little details about what s going which in turn will define variables for the build system and the C
Definition: writing_filters.txt:58
FLAGS
#define FLAGS
Definition: vf_overlay_vulkan.c:455
OFFSET
#define OFFSET(x)
Definition: vf_overlay_vulkan.c:454
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: internal.h:191
NULL
#define NULL
Definition: coverity.c:32
overlay_vulkan_inputs
static const AVFilterPad overlay_vulkan_inputs[]
Definition: vf_overlay_vulkan.c:464
activate
filter_frame For filters that do not use the activate() callback
overlay_vulkan_init
static av_cold int overlay_vulkan_init(AVFilterContext *avctx)
Definition: vf_overlay_vulkan.c:434
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:117
OverlayVulkanContext
Definition: vf_overlay_vulkan.c:27
FILTER_SINGLE_PIXFMT
#define FILTER_SINGLE_PIXFMT(pix_fmt_)
Definition: internal.h:181
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:271
pos
unsigned int pos
Definition: spdifenc.c:412
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:224
overlay_vulkan_uninit
static void overlay_vulkan_uninit(AVFilterContext *avctx)
Definition: vf_overlay_vulkan.c:443
ff_vk_filter_config_input
int ff_vk_filter_config_input(AVFilterLink *inlink)
Definition: vulkan_filter.c:52
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:192
uninit
static av_cold int uninit(AVCodecContext *avctx)
Definition: crystalhd.c:282