FFmpeg
vf_blend_vulkan.c
Go to the documentation of this file.
1 /*
2  * copyright (c) 2021-2022 Wu Jianhua <jianhua.wu@intel.com>
3  * Copyright (c) Lynne
4  *
5  * The blend modes are based on the blend.c.
6  *
7  * This file is part of FFmpeg.
8  *
9  * FFmpeg is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * FFmpeg is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with FFmpeg; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  */
23 
24 #include "libavutil/random_seed.h"
25 #include "libavutil/opt.h"
26 #include "vulkan_filter.h"
27 #include "vulkan_spirv.h"
28 
29 #include "filters.h"
30 #include "framesync.h"
31 #include "blend.h"
32 #include "video.h"
33 
34 #define IN_TOP 0
35 #define IN_BOTTOM 1
36 
37 typedef struct FilterParamsVulkan {
38  const char *blend;
39  const char *blend_func;
40  double opacity;
43 
44 typedef struct BlendVulkanContext {
47 
53  VkSampler sampler;
54 
56  double all_opacity;
59 
60 #define DEFINE_BLEND_MODE(MODE, EXPR) \
61 static const char blend_##MODE[] = "blend_"#MODE; \
62 static const char blend_##MODE##_func[] = { \
63  C(0, vec4 blend_##MODE(vec4 top, vec4 bottom, float opacity) { ) \
64  C(1, vec4 dst = EXPR; ) \
65  C(1, return dst; ) \
66  C(0, } ) \
67 };
68 
69 #define A top
70 #define B bottom
71 
72 #define FN(EXPR) A + ((EXPR) - A) * opacity
73 
74 DEFINE_BLEND_MODE(NORMAL, A * opacity + B * (1.0f - opacity))
75 DEFINE_BLEND_MODE(MULTIPLY, FN(1.0f * A * B / 1.0f))
76 
77 static inline void init_blend_func(FilterParamsVulkan *param)
78 {
79 #define CASE(MODE) case BLEND_##MODE: \
80  param->blend = blend_##MODE;\
81  param->blend_func = blend_##MODE##_func; \
82  break;
83 
84  switch (param->mode) {
85  CASE(NORMAL)
86  CASE(MULTIPLY)
87  default: param->blend = NULL; break;
88  }
89 
90 #undef CASE
91 }
92 
93 static int config_params(AVFilterContext *avctx)
94 {
95  BlendVulkanContext *s = avctx->priv;
96 
97  for (int plane = 0; plane < FF_ARRAY_ELEMS(s->params); plane++) {
98  FilterParamsVulkan *param = &s->params[plane];
99 
100  if (s->all_mode >= 0)
101  param->mode = s->all_mode;
102  if (s->all_opacity < 1)
103  param->opacity = s->all_opacity;
104 
105  init_blend_func(param);
106  if (!param->blend) {
107  av_log(avctx, AV_LOG_ERROR,
108  "Currently the blend mode specified is not supported yet.\n");
109  return AVERROR(EINVAL);
110  }
111  }
112 
113  return 0;
114 }
115 
116 static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
117  char *res, int res_len, int flags)
118 {
119  int ret = ff_filter_process_command(ctx, cmd, args, res, res_len, flags);
120  if (ret < 0)
121  return ret;
122 
123  return config_params(ctx);
124 }
125 
127 {
128  int err = 0;
129  uint8_t *spv_data;
130  size_t spv_len;
131  void *spv_opaque = NULL;
132  BlendVulkanContext *s = avctx->priv;
133  FFVulkanContext *vkctx = &s->vkctx;
134  const int planes = av_pix_fmt_count_planes(s->vkctx.output_format);
135  FFVkSPIRVShader *shd = &s->shd;
136  FFVkSPIRVCompiler *spv;
138 
139  spv = ff_vk_spirv_init();
140  if (!spv) {
141  av_log(avctx, AV_LOG_ERROR, "Unable to initialize SPIR-V compiler!\n");
142  return AVERROR_EXTERNAL;
143  }
144 
145  ff_vk_qf_init(vkctx, &s->qf, VK_QUEUE_COMPUTE_BIT);
146  RET(ff_vk_exec_pool_init(vkctx, &s->qf, &s->e, s->qf.nb_queues*4, 0, 0, 0, NULL));
147  RET(ff_vk_init_sampler(vkctx, &s->sampler, 1, VK_FILTER_NEAREST));
148  RET(ff_vk_shader_init(&s->pl, &s->shd, "blend_compute",
149  VK_SHADER_STAGE_COMPUTE_BIT, 0));
150 
151  ff_vk_shader_set_compute_sizes(&s->shd, 32, 32, 1);
152 
154  {
155  .name = "top_images",
156  .type = VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER,
157  .dimensions = 2,
158  .elems = planes,
159  .stages = VK_SHADER_STAGE_COMPUTE_BIT,
160  .samplers = DUP_SAMPLER(s->sampler),
161  },
162  {
163  .name = "bottom_images",
164  .type = VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER,
165  .dimensions = 2,
166  .elems = planes,
167  .stages = VK_SHADER_STAGE_COMPUTE_BIT,
168  .samplers = DUP_SAMPLER(s->sampler),
169  },
170  {
171  .name = "output_images",
172  .type = VK_DESCRIPTOR_TYPE_STORAGE_IMAGE,
173  .mem_layout = ff_vk_shader_rep_fmt(s->vkctx.output_format),
174  .mem_quali = "writeonly",
175  .dimensions = 2,
176  .elems = planes,
177  .stages = VK_SHADER_STAGE_COMPUTE_BIT,
178  },
179  };
180 
181  RET(ff_vk_pipeline_descriptor_set_add(vkctx, &s->pl, shd, desc, 3, 0, 0));
182 
183  for (int i = 0, j = 0; i < planes; i++) {
184  for (j = 0; j < i; j++)
185  if (s->params[i].blend_func == s->params[j].blend_func)
186  break;
187  /* note: the bracket is needed, for GLSLD is a macro with multiple statements. */
188  if (j == i) {
189  GLSLD(s->params[i].blend_func);
190  }
191  }
192 
193  GLSLC(0, void main() );
194  GLSLC(0, { );
195  GLSLC(1, ivec2 size; );
196  GLSLC(1, const ivec2 pos = ivec2(gl_GlobalInvocationID.xy); );
197  for (int i = 0; i < planes; i++) {
198  GLSLC(0, );
199  GLSLF(1, size = imageSize(output_images[%i]); ,i);
200  GLSLC(1, if (IS_WITHIN(pos, size)) { );
201  GLSLF(2, const vec4 top = texture(top_images[%i], pos); ,i);
202  GLSLF(2, const vec4 bottom = texture(bottom_images[%i], pos); ,i);
203  GLSLF(2, const float opacity = %f; ,s->params[i].opacity);
204  GLSLF(2, vec4 dst = %s(top, bottom, opacity); ,s->params[i].blend);
205  GLSLC(0, );
206  GLSLF(2, imageStore(output_images[%i], pos, dst); ,i);
207  GLSLC(1, } );
208  }
209  GLSLC(0, } );
210 
211  RET(spv->compile_shader(spv, avctx, shd, &spv_data, &spv_len, "main",
212  &spv_opaque));
213  RET(ff_vk_shader_create(vkctx, shd, spv_data, spv_len, "main"));
214 
215  RET(ff_vk_init_compute_pipeline(vkctx, &s->pl, shd));
216  RET(ff_vk_exec_pipeline_register(vkctx, &s->e, &s->pl));
217 
218  s->initialized = 1;
219 
220 fail:
221  if (spv_opaque)
222  spv->free_shader(spv, &spv_opaque);
223  if (spv)
224  spv->uninit(&spv);
225 
226  return err;
227 }
228 
230 {
231  int err;
232  AVFilterContext *avctx = fs->parent;
233  BlendVulkanContext *s = avctx->priv;
234  AVFilterLink *outlink = avctx->outputs[0];
235  AVFrame *top, *bottom, *out;
236 
237  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
238  if (!out) {
239  err = AVERROR(ENOMEM);
240  goto fail;
241  }
242 
243  RET(ff_framesync_get_frame(fs, IN_TOP, &top, 0));
244  RET(ff_framesync_get_frame(fs, IN_BOTTOM, &bottom, 0));
245 
246  RET(av_frame_copy_props(out, top));
247 
248  if (!s->initialized) {
250  AVHWFramesContext *bottom_fc = (AVHWFramesContext*)bottom->hw_frames_ctx->data;
251  if (top_fc->sw_format != bottom_fc->sw_format) {
252  av_log(avctx, AV_LOG_ERROR,
253  "Currently the sw format of the bottom video need to match the top!\n");
254  err = AVERROR(EINVAL);
255  goto fail;
256  }
257  RET(init_filter(avctx));
258  }
259 
260  RET(ff_vk_filter_process_Nin(&s->vkctx, &s->e, &s->pl,
261  out, (AVFrame *[]){ top, bottom }, 2,
262  s->sampler, NULL, 0));
263 
264  return ff_filter_frame(outlink, out);
265 
266 fail:
267  av_frame_free(&out);
268  return err;
269 }
270 
271 static av_cold int init(AVFilterContext *avctx)
272 {
273  BlendVulkanContext *s = avctx->priv;
274 
275  s->fs.on_event = blend_frame;
276 
277  return ff_vk_filter_init(avctx);
278 }
279 
280 static av_cold void uninit(AVFilterContext *avctx)
281 {
282  BlendVulkanContext *s = avctx->priv;
283  FFVulkanContext *vkctx = &s->vkctx;
284  FFVulkanFunctions *vk = &vkctx->vkfn;
285 
286  ff_vk_exec_pool_free(vkctx, &s->e);
287  ff_vk_pipeline_free(vkctx, &s->pl);
288  ff_vk_shader_free(vkctx, &s->shd);
289 
290  if (s->sampler)
291  vk->DestroySampler(vkctx->hwctx->act_dev, s->sampler,
292  vkctx->hwctx->alloc);
293 
294  ff_vk_uninit(&s->vkctx);
295  ff_framesync_uninit(&s->fs);
296 
297  s->initialized = 0;
298 }
299 
300 static int config_props_output(AVFilterLink *outlink)
301 {
302  int err;
303  FilterLink *outl = ff_filter_link(outlink);
304  AVFilterContext *avctx = outlink->src;
305  BlendVulkanContext *s = avctx->priv;
306  AVFilterLink *toplink = avctx->inputs[IN_TOP];
307  FilterLink *tl = ff_filter_link(toplink);
308  AVFilterLink *bottomlink = avctx->inputs[IN_BOTTOM];
309 
310  if (toplink->w != bottomlink->w || toplink->h != bottomlink->h) {
311  av_log(avctx, AV_LOG_ERROR, "First input link %s parameters "
312  "(size %dx%d) do not match the corresponding "
313  "second input link %s parameters (size %dx%d)\n",
314  avctx->input_pads[IN_TOP].name, toplink->w, toplink->h,
315  avctx->input_pads[IN_BOTTOM].name, bottomlink->w, bottomlink->h);
316  return AVERROR(EINVAL);
317  }
318 
319  outlink->sample_aspect_ratio = toplink->sample_aspect_ratio;
320  outl->frame_rate = tl->frame_rate;
321 
323 
324  RET(ff_framesync_init_dualinput(&s->fs, avctx));
325 
327  outlink->time_base = s->fs.time_base;
328 
329  RET(config_params(avctx));
330 
331 fail:
332  return err;
333 }
334 
335 static int activate(AVFilterContext *avctx)
336 {
337  BlendVulkanContext *s = avctx->priv;
338  return ff_framesync_activate(&s->fs);
339 }
340 
341 #define OFFSET(x) offsetof(BlendVulkanContext, x)
342 #define FLAGS (AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM)
343 
344 static const AVOption blend_vulkan_options[] = {
345  { "c0_mode", "set component #0 blend mode", OFFSET(params[0].mode), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, BLEND_NB - 1, FLAGS, .unit = "mode" },
346  { "c1_mode", "set component #1 blend mode", OFFSET(params[1].mode), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, BLEND_NB - 1, FLAGS, .unit = "mode" },
347  { "c2_mode", "set component #2 blend mode", OFFSET(params[2].mode), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, BLEND_NB - 1, FLAGS, .unit = "mode" },
348  { "c3_mode", "set component #3 blend mode", OFFSET(params[3].mode), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, BLEND_NB - 1, FLAGS, .unit = "mode" },
349  { "all_mode", "set blend mode for all components", OFFSET(all_mode), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, BLEND_NB - 1, FLAGS, .unit = "mode" },
350  { "normal", "", 0, AV_OPT_TYPE_CONST, { .i64 = BLEND_NORMAL }, 0, 0, FLAGS, .unit = "mode" },
351  { "multiply", "", 0, AV_OPT_TYPE_CONST, { .i64 = BLEND_MULTIPLY }, 0, 0, FLAGS, .unit = "mode" },
352 
353  { "c0_opacity", "set color component #0 opacity", OFFSET(params[0].opacity), AV_OPT_TYPE_DOUBLE, { .dbl = 1 }, 0, 1, FLAGS },
354  { "c1_opacity", "set color component #1 opacity", OFFSET(params[1].opacity), AV_OPT_TYPE_DOUBLE, { .dbl = 1 }, 0, 1, FLAGS },
355  { "c2_opacity", "set color component #2 opacity", OFFSET(params[2].opacity), AV_OPT_TYPE_DOUBLE, { .dbl = 1 }, 0, 1, FLAGS },
356  { "c3_opacity", "set color component #3 opacity", OFFSET(params[3].opacity), AV_OPT_TYPE_DOUBLE, { .dbl = 1 }, 0, 1, FLAGS },
357  { "all_opacity", "set opacity for all color components", OFFSET(all_opacity), AV_OPT_TYPE_DOUBLE, { .dbl = 1 }, 0, 1, FLAGS },
358 
359  { NULL }
360 };
361 
362 AVFILTER_DEFINE_CLASS(blend_vulkan);
363 
365  {
366  .name = "top",
367  .type = AVMEDIA_TYPE_VIDEO,
368  .config_props = &ff_vk_filter_config_input,
369  },
370  {
371  .name = "bottom",
372  .type = AVMEDIA_TYPE_VIDEO,
373  .config_props = &ff_vk_filter_config_input,
374  },
375 };
376 
377 
379  {
380  .name = "default",
381  .type = AVMEDIA_TYPE_VIDEO,
382  .config_props = &config_props_output,
383  }
384 };
385 
387  .name = "blend_vulkan",
388  .description = NULL_IF_CONFIG_SMALL("Blend two video frames in Vulkan"),
389  .priv_size = sizeof(BlendVulkanContext),
390  .init = &init,
391  .uninit = &uninit,
392  .activate = &activate,
396  .priv_class = &blend_vulkan_class,
397  .flags_internal = FF_FILTER_FLAG_HWFRAME_AWARE,
398  .flags = AVFILTER_FLAG_HWDEVICE,
399  .process_command = &process_command,
400 };
ff_get_video_buffer
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:116
ff_framesync_configure
int ff_framesync_configure(FFFrameSync *fs)
Configure a frame sync structure.
Definition: framesync.c:137
ff_vf_blend_vulkan
const AVFilter ff_vf_blend_vulkan
Definition: vf_blend_vulkan.c:386
ff_vk_pipeline_free
void ff_vk_pipeline_free(FFVulkanContext *s, FFVulkanPipeline *pl)
Definition: vulkan.c:1810
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
opt.h
ff_framesync_uninit
void ff_framesync_uninit(FFFrameSync *fs)
Free all memory currently allocated.
Definition: framesync.c:302
out
FILE * out
Definition: movenc.c:55
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1023
AVBufferRef::data
uint8_t * data
The data buffer.
Definition: buffer.h:90
ff_framesync_get_frame
int ff_framesync_get_frame(FFFrameSync *fs, unsigned in, AVFrame **rframe, unsigned get)
Get the current frame in an input.
Definition: framesync.c:270
config_props_output
static int config_props_output(AVFilterLink *outlink)
Definition: vf_blend_vulkan.c:300
ff_vk_qf_init
int ff_vk_qf_init(FFVulkanContext *s, FFVkQueueFamilyCtx *qf, VkQueueFlagBits dev_family)
Chooses a QF and loads it into a context.
Definition: vulkan.c:228
BlendVulkanContext::shd
FFVkSPIRVShader shd
Definition: vf_blend_vulkan.c:52
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:160
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: filters.h:262
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:374
init_blend_func
static void init_blend_func(FilterParamsVulkan *param)
Definition: vf_blend_vulkan.c:77
ff_vk_filter_init
int ff_vk_filter_init(AVFilterContext *avctx)
General lavfi IO functions.
Definition: vulkan_filter.c:243
ff_vk_filter_process_Nin
int ff_vk_filter_process_Nin(FFVulkanContext *vkctx, FFVkExecPool *e, FFVulkanPipeline *pl, AVFrame *out, AVFrame *in[], int nb_in, VkSampler sampler, void *push_src, size_t push_size)
Up to 16 inputs, one output.
Definition: vulkan_filter.c:409
ff_vk_shader_create
int ff_vk_shader_create(FFVulkanContext *s, FFVkSPIRVShader *shd, uint8_t *spirv, size_t spirv_size, const char *entrypoint)
Definition: vulkan.c:1379
B
#define B
Definition: vf_blend_vulkan.c:70
AVOption
AVOption.
Definition: opt.h:429
ff_vk_uninit
void ff_vk_uninit(FFVulkanContext *s)
Frees main context.
Definition: vulkan.c:1839
FFVkSPIRVCompiler::uninit
void(* uninit)(struct FFVkSPIRVCompiler **ctx)
Definition: vulkan_spirv.h:33
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:205
BlendVulkanContext::e
FFVkExecPool e
Definition: vf_blend_vulkan.c:50
FFFrameSync
Frame sync structure.
Definition: framesync.h:168
ff_vk_shader_set_compute_sizes
void ff_vk_shader_set_compute_sizes(FFVkSPIRVShader *shd, int x, int y, int z)
Definition: vulkan.c:1337
video.h
MULTIPLY
#define MULTIPLY(var, const)
Definition: 4xm.c:165
AV_PIX_FMT_VULKAN
@ AV_PIX_FMT_VULKAN
Vulkan hardware images.
Definition: pixfmt.h:379
BLEND_NB
@ BLEND_NB
Definition: blend.h:69
BlendVulkanContext::all_opacity
double all_opacity
Definition: vf_blend_vulkan.c:56
av_pix_fmt_count_planes
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:3005
BlendVulkanContext::fs
FFFrameSync fs
Definition: vf_blend_vulkan.c:46
AVVulkanDeviceContext::alloc
const VkAllocationCallbacks * alloc
Custom memory allocator, else NULL.
Definition: hwcontext_vulkan.h:63
AVFilterContext::priv
void * priv
private data for use by the filter
Definition: avfilter.h:472
fail
#define fail()
Definition: checkasm.h:188
init
static av_cold int init(AVFilterContext *avctx)
Definition: vf_blend_vulkan.c:271
BlendVulkanContext::params
FilterParamsVulkan params[4]
Definition: vf_blend_vulkan.c:55
vulkan_filter.h
blend_vulkan_outputs
static const AVFilterPad blend_vulkan_outputs[]
Definition: vf_blend_vulkan.c:378
BlendVulkanContext::sampler
VkSampler sampler
Definition: vf_blend_vulkan.c:53
AVFilterPad
A filter pad used for either input or output.
Definition: filters.h:38
OFFSET
#define OFFSET(x)
Definition: vf_blend_vulkan.c:341
AVFilterContext::input_pads
AVFilterPad * input_pads
array of input pads
Definition: avfilter.h:464
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen.c:29
av_cold
#define av_cold
Definition: attributes.h:90
main
int main
Definition: dovi_rpuenc.c:37
blend_vulkan_inputs
static const AVFilterPad blend_vulkan_inputs[]
Definition: vf_blend_vulkan.c:364
s
#define s(width, name)
Definition: cbs_vp9.c:198
AV_OPT_TYPE_DOUBLE
@ AV_OPT_TYPE_DOUBLE
Underlying C type is double.
Definition: opt.h:267
FilterParamsVulkan
Definition: vf_blend_vulkan.c:37
filters.h
ctx
AVFormatContext * ctx
Definition: movenc.c:49
activate
static int activate(AVFilterContext *avctx)
Definition: vf_blend_vulkan.c:335
init_filter
static av_cold int init_filter(AVFilterContext *avctx)
Definition: vf_blend_vulkan.c:126
BlendVulkanContext::initialized
int initialized
Definition: vf_blend_vulkan.c:48
FFVkSPIRVCompiler::compile_shader
int(* compile_shader)(struct FFVkSPIRVCompiler *ctx, void *avctx, struct FFVkSPIRVShader *shd, uint8_t **data, size_t *size, const char *entrypoint, void **opaque)
Definition: vulkan_spirv.h:29
ff_vk_exec_pool_free
void ff_vk_exec_pool_free(FFVulkanContext *s, FFVkExecPool *pool)
Definition: vulkan.c:238
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: filters.h:263
BlendVulkanContext::qf
FFVkQueueFamilyCtx qf
Definition: vf_blend_vulkan.c:51
NULL
#define NULL
Definition: coverity.c:32
AVHWFramesContext::sw_format
enum AVPixelFormat sw_format
The pixel format identifying the actual data layout of the hardware frames.
Definition: hwcontext.h:210
av_frame_copy_props
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:711
BLEND_MULTIPLY
@ BLEND_MULTIPLY
Definition: blend.h:42
GLSLD
#define GLSLD(D)
Definition: vulkan.h:59
fs
#define fs(width, name, subs,...)
Definition: cbs_vp9.c:200
BlendMode
BlendMode
Definition: blend.h:27
AVFilterContext::inputs
AVFilterLink ** inputs
array of pointers to input links
Definition: avfilter.h:465
ff_vk_filter_config_output
int ff_vk_filter_config_output(AVFilterLink *outlink)
Definition: vulkan_filter.c:219
config_params
static int config_params(AVFilterContext *avctx)
Definition: vf_blend_vulkan.c:93
blend_vulkan_options
static const AVOption blend_vulkan_options[]
Definition: vf_blend_vulkan.c:344
ff_vk_init_compute_pipeline
int ff_vk_init_compute_pipeline(FFVulkanContext *s, FFVulkanPipeline *pl, FFVkSPIRVShader *shd)
Definition: vulkan.c:1751
ff_vk_exec_pool_init
int ff_vk_exec_pool_init(FFVulkanContext *s, FFVkQueueFamilyCtx *qf, FFVkExecPool *pool, int nb_contexts, int nb_queries, VkQueryType query_type, int query_64bit, const void *query_create_pnext)
Allocates/frees an execution pool.
Definition: vulkan.c:278
FFVulkanContext
Definition: vulkan.h:229
BlendVulkanContext
Definition: vf_blend_vulkan.c:44
A
#define A
Definition: vf_blend_vulkan.c:69
FFVulkanPipeline
Definition: vulkan.h:132
ff_filter_link
static FilterLink * ff_filter_link(AVFilterLink *link)
Definition: filters.h:197
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: filters.h:206
ff_vk_shader_init
int ff_vk_shader_init(FFVulkanPipeline *pl, FFVkSPIRVShader *shd, const char *name, VkShaderStageFlags stage, uint32_t required_subgroup_size)
Shader management.
Definition: vulkan.c:1311
planes
static const struct @452 planes[]
FLAGS
#define FLAGS
Definition: vf_blend_vulkan.c:342
f
f
Definition: af_crystalizer.c:122
FFVulkanDescriptorSetBinding
Definition: vulkan.h:83
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:94
ff_framesync_init_dualinput
int ff_framesync_init_dualinput(FFFrameSync *fs, AVFilterContext *parent)
Initialize a frame sync structure for dualinput.
Definition: framesync.c:373
blend_frame
static int blend_frame(FFFrameSync *fs)
Definition: vf_blend_vulkan.c:229
dst
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition: dsp.h:83
IN_TOP
#define IN_TOP
Definition: vf_blend_vulkan.c:34
AVFILTER_FLAG_HWDEVICE
#define AVFILTER_FLAG_HWDEVICE
The filter can create hardware frames using AVFilterContext.hw_device_ctx.
Definition: avfilter.h:173
size
int size
Definition: twinvq_data.h:10344
FFVkQueueFamilyCtx
Definition: vulkan.h:110
FilterParamsVulkan::opacity
double opacity
Definition: vf_blend_vulkan.c:40
BlendVulkanContext::pl
FFVulkanPipeline pl
Definition: vf_blend_vulkan.c:49
IN_BOTTOM
#define IN_BOTTOM
Definition: vf_blend_vulkan.c:35
FilterParamsVulkan::blend_func
const char * blend_func
Definition: vf_blend_vulkan.c:39
ff_filter_process_command
int ff_filter_process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
Generic processing of user supplied commands that are set in the same way as the filter options.
Definition: avfilter.c:894
AVERROR_EXTERNAL
#define AVERROR_EXTERNAL
Generic error in an external library.
Definition: error.h:59
FFVkSPIRVCompiler
Definition: vulkan_spirv.h:27
CASE
#define CASE(MODE)
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
BlendVulkanContext::vkctx
FFVulkanContext vkctx
Definition: vf_blend_vulkan.c:45
blend.h
DUP_SAMPLER
#define DUP_SAMPLER(x)
Definition: vulkan.h:73
ff_vk_shader_rep_fmt
const char * ff_vk_shader_rep_fmt(enum AVPixelFormat pixfmt)
Returns the format to use for images in shaders.
Definition: vulkan.c:1171
BlendVulkanContext::all_mode
enum BlendMode all_mode
Definition: vf_blend_vulkan.c:57
vulkan_spirv.h
AVFilterPad::name
const char * name
Pad name.
Definition: filters.h:44
GLSLF
#define GLSLF(N, S,...)
Definition: vulkan.h:54
FFVkSPIRVCompiler::free_shader
void(* free_shader)(struct FFVkSPIRVCompiler *ctx, void **opaque)
Definition: vulkan_spirv.h:32
AVFilter
Filter definition.
Definition: avfilter.h:201
AVHWFramesContext
This struct describes a set or pool of "hardware" frames (i.e.
Definition: hwcontext.h:115
ff_vk_pipeline_descriptor_set_add
int ff_vk_pipeline_descriptor_set_add(FFVulkanContext *s, FFVulkanPipeline *pl, FFVkSPIRVShader *shd, FFVulkanDescriptorSetBinding *desc, int nb, int singular, int print_to_shader_only)
Add descriptor to a pipeline.
Definition: vulkan.c:1429
ret
ret
Definition: filter_design.txt:187
FFVulkanContext::vkfn
FFVulkanFunctions vkfn
Definition: vulkan.h:233
FFVkExecPool
Definition: vulkan.h:211
pos
unsigned int pos
Definition: spdifenc.c:414
AVFrame::hw_frames_ctx
AVBufferRef * hw_frames_ctx
For hwaccel-format frames, this should be a reference to the AVHWFramesContext describing the frame.
Definition: frame.h:725
random_seed.h
framesync.h
uninit
static av_cold void uninit(AVFilterContext *avctx)
Definition: vf_blend_vulkan.c:280
FFVkSPIRVShader
Definition: vulkan.h:75
mode
mode
Definition: ebur128.h:83
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition: opt.h:259
process_command
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
Definition: vf_blend_vulkan.c:116
DEFINE_BLEND_MODE
#define DEFINE_BLEND_MODE(MODE, EXPR)
Definition: vf_blend_vulkan.c:60
AVFilterContext
An instance of a filter.
Definition: avfilter.h:457
desc
const char * desc
Definition: libsvtav1.c:79
GLSLC
#define GLSLC(N, S)
Definition: vulkan.h:44
ff_vk_filter_config_input
int ff_vk_filter_config_input(AVFilterLink *inlink)
Definition: vulkan_filter.c:186
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
FFVulkanContext::hwctx
AVVulkanDeviceContext * hwctx
Definition: vulkan.h:257
FilterParamsVulkan::mode
enum BlendMode mode
Definition: vf_blend_vulkan.c:41
AVVulkanDeviceContext::act_dev
VkDevice act_dev
Active device.
Definition: hwcontext_vulkan.h:84
FilterParamsVulkan::blend
const char * blend
Definition: vf_blend_vulkan.c:38
ff_vk_init_sampler
int ff_vk_init_sampler(FFVulkanContext *s, VkSampler *sampler, int unnorm_coords, VkFilter filt)
Create a sampler.
Definition: vulkan.c:1126
ff_vk_exec_pipeline_register
int ff_vk_exec_pipeline_register(FFVulkanContext *s, FFVkExecPool *pool, FFVulkanPipeline *pl)
Register a pipeline with an exec pool.
Definition: vulkan.c:1543
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:482
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
FN
#define FN(EXPR)
Definition: vf_blend_vulkan.c:72
AVFILTER_DEFINE_CLASS
AVFILTER_DEFINE_CLASS(blend_vulkan)
ff_framesync_activate
int ff_framesync_activate(FFFrameSync *fs)
Examine the frames in the filter's input and try to produce output.
Definition: framesync.c:353
ff_vk_shader_free
void ff_vk_shader_free(FFVulkanContext *s, FFVkSPIRVShader *shd)
Definition: vulkan.c:1370
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
Definition: opt.h:299
FILTER_SINGLE_PIXFMT
#define FILTER_SINGLE_PIXFMT(pix_fmt_)
Definition: filters.h:252
RET
#define RET(x)
Definition: vulkan.h:67
FFVulkanFunctions
Definition: vulkan_functions.h:249
BLEND_NORMAL
@ BLEND_NORMAL
Definition: blend.h:29
AVFilterContext::outputs
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:469