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/vulkan_spirv.h"
26 #include "libavutil/opt.h"
27 #include "vulkan_filter.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 
52 
54  double all_opacity;
55  /* enum BlendMode */
56  int all_mode;
58 
59 #define DEFINE_BLEND_MODE(MODE, EXPR) \
60 static const char blend_##MODE[] = "blend_"#MODE; \
61 static const char blend_##MODE##_func[] = { \
62  C(0, vec4 blend_##MODE(vec4 top, vec4 bottom, float opacity) { ) \
63  C(1, vec4 dst = EXPR; ) \
64  C(1, return dst; ) \
65  C(0, } ) \
66 };
67 
68 #define A top
69 #define B bottom
70 
71 #define FN(EXPR) A + ((EXPR) - A) * opacity
72 
73 DEFINE_BLEND_MODE(NORMAL, A * opacity + B * (1.0f - opacity))
74 DEFINE_BLEND_MODE(MULTIPLY, FN(1.0f * A * B / 1.0f))
75 
76 static inline void init_blend_func(FilterParamsVulkan *param)
77 {
78 #define CASE(MODE) case BLEND_##MODE: \
79  param->blend = blend_##MODE;\
80  param->blend_func = blend_##MODE##_func; \
81  break;
82 
83  switch (param->mode) {
84  CASE(NORMAL)
85  CASE(MULTIPLY)
86  default: param->blend = NULL; break;
87  }
88 
89 #undef CASE
90 }
91 
92 static int config_params(AVFilterContext *avctx)
93 {
94  BlendVulkanContext *s = avctx->priv;
95 
96  for (int plane = 0; plane < FF_ARRAY_ELEMS(s->params); plane++) {
97  FilterParamsVulkan *param = &s->params[plane];
98 
99  if (s->all_mode >= 0)
100  param->mode = s->all_mode;
101  if (s->all_opacity < 1)
102  param->opacity = s->all_opacity;
103 
104  init_blend_func(param);
105  if (!param->blend) {
106  av_log(avctx, AV_LOG_ERROR,
107  "Currently the blend mode specified is not supported yet.\n");
108  return AVERROR(EINVAL);
109  }
110  }
111 
112  return 0;
113 }
114 
115 static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
116  char *res, int res_len, int flags)
117 {
118  int ret = ff_filter_process_command(ctx, cmd, args, res, res_len, flags);
119  if (ret < 0)
120  return ret;
121 
122  return config_params(ctx);
123 }
124 
126 {
127  int err = 0;
128  uint8_t *spv_data;
129  size_t spv_len;
130  void *spv_opaque = NULL;
131  BlendVulkanContext *s = avctx->priv;
132  FFVulkanContext *vkctx = &s->vkctx;
133  const int planes = av_pix_fmt_count_planes(s->vkctx.output_format);
134  FFVulkanShader *shd = &s->shd;
135  FFVkSPIRVCompiler *spv;
137 
138  spv = ff_vk_spirv_init();
139  if (!spv) {
140  av_log(avctx, AV_LOG_ERROR, "Unable to initialize SPIR-V compiler!\n");
141  return AVERROR_EXTERNAL;
142  }
143 
144  s->qf = ff_vk_qf_find(vkctx, VK_QUEUE_COMPUTE_BIT, 0);
145  if (!s->qf) {
146  av_log(avctx, AV_LOG_ERROR, "Device has no compute queues\n");
147  err = AVERROR(ENOTSUP);
148  goto fail;
149  }
150 
151  RET(ff_vk_exec_pool_init(vkctx, s->qf, &s->e, s->qf->num*4, 0, 0, 0, NULL));
152  RET(ff_vk_shader_init(vkctx, &s->shd, "blend",
153  VK_SHADER_STAGE_COMPUTE_BIT,
154  NULL, 0,
155  32, 32, 1,
156  0));
157 
159  {
160  .name = "top_images",
161  .type = VK_DESCRIPTOR_TYPE_STORAGE_IMAGE,
162  .mem_layout = ff_vk_shader_rep_fmt(s->vkctx.input_format, FF_VK_REP_FLOAT),
163  .mem_quali = "readonly",
164  .dimensions = 2,
165  .elems = planes,
166  .stages = VK_SHADER_STAGE_COMPUTE_BIT,
167  },
168  {
169  .name = "bottom_images",
170  .type = VK_DESCRIPTOR_TYPE_STORAGE_IMAGE,
171  .mem_layout = ff_vk_shader_rep_fmt(s->vkctx.input_format, FF_VK_REP_FLOAT),
172  .mem_quali = "readonly",
173  .dimensions = 2,
174  .elems = planes,
175  .stages = VK_SHADER_STAGE_COMPUTE_BIT,
176  },
177  {
178  .name = "output_images",
179  .type = VK_DESCRIPTOR_TYPE_STORAGE_IMAGE,
180  .mem_layout = ff_vk_shader_rep_fmt(s->vkctx.output_format, FF_VK_REP_FLOAT),
181  .mem_quali = "writeonly",
182  .dimensions = 2,
183  .elems = planes,
184  .stages = VK_SHADER_STAGE_COMPUTE_BIT,
185  },
186  };
187 
188  RET(ff_vk_shader_add_descriptor_set(vkctx, &s->shd, desc, 3, 0, 0));
189 
190  for (int i = 0, j = 0; i < planes; i++) {
191  for (j = 0; j < i; j++)
192  if (s->params[i].blend_func == s->params[j].blend_func)
193  break;
194  /* note: the bracket is needed, for GLSLD is a macro with multiple statements. */
195  if (j == i) {
196  GLSLD(s->params[i].blend_func);
197  }
198  }
199 
200  GLSLC(0, void main() );
201  GLSLC(0, { );
202  GLSLC(1, ivec2 size; );
203  GLSLC(1, const ivec2 pos = ivec2(gl_GlobalInvocationID.xy); );
204  for (int i = 0; i < planes; i++) {
205  GLSLC(0, );
206  GLSLF(1, size = imageSize(output_images[%i]); ,i);
207  GLSLC(1, if (IS_WITHIN(pos, size)) { );
208  GLSLF(2, const vec4 top = imageLoad(top_images[%i], pos); ,i);
209  GLSLF(2, const vec4 bottom = imageLoad(bottom_images[%i], pos); ,i);
210  GLSLF(2, const float opacity = %f; ,s->params[i].opacity);
211  GLSLF(2, vec4 dst = %s(top, bottom, opacity); ,s->params[i].blend);
212  GLSLC(0, );
213  GLSLF(2, imageStore(output_images[%i], pos, dst); ,i);
214  GLSLC(1, } );
215  }
216  GLSLC(0, } );
217 
218  RET(spv->compile_shader(vkctx, spv, shd, &spv_data, &spv_len, "main",
219  &spv_opaque));
220  RET(ff_vk_shader_link(vkctx, shd, spv_data, spv_len, "main"));
221 
222  RET(ff_vk_shader_register_exec(vkctx, &s->e, &s->shd));
223 
224  s->initialized = 1;
225 
226 fail:
227  if (spv_opaque)
228  spv->free_shader(spv, &spv_opaque);
229  if (spv)
230  spv->uninit(&spv);
231 
232  return err;
233 }
234 
236 {
237  int err;
238  AVFilterContext *avctx = fs->parent;
239  BlendVulkanContext *s = avctx->priv;
240  AVFilterLink *outlink = avctx->outputs[0];
241  AVFrame *top, *bottom, *out;
242 
243  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
244  if (!out) {
245  err = AVERROR(ENOMEM);
246  goto fail;
247  }
248 
249  RET(ff_framesync_get_frame(fs, IN_TOP, &top, 0));
250  RET(ff_framesync_get_frame(fs, IN_BOTTOM, &bottom, 0));
251 
252  RET(av_frame_copy_props(out, top));
253 
254  if (!s->initialized) {
256  AVHWFramesContext *bottom_fc = (AVHWFramesContext*)bottom->hw_frames_ctx->data;
257  if (top_fc->sw_format != bottom_fc->sw_format) {
258  av_log(avctx, AV_LOG_ERROR,
259  "Currently the sw format of the bottom video need to match the top!\n");
260  err = AVERROR(EINVAL);
261  goto fail;
262  }
263  RET(init_filter(avctx));
264  }
265 
266  RET(ff_vk_filter_process_Nin(&s->vkctx, &s->e, &s->shd,
267  out, (AVFrame *[]){ top, bottom }, 2,
268  VK_NULL_HANDLE, NULL, 0));
269 
270  return ff_filter_frame(outlink, out);
271 
272 fail:
273  av_frame_free(&out);
274  return err;
275 }
276 
277 static av_cold int init(AVFilterContext *avctx)
278 {
279  BlendVulkanContext *s = avctx->priv;
280 
281  s->fs.on_event = blend_frame;
282 
283  return ff_vk_filter_init(avctx);
284 }
285 
286 static av_cold void uninit(AVFilterContext *avctx)
287 {
288  BlendVulkanContext *s = avctx->priv;
289  FFVulkanContext *vkctx = &s->vkctx;
290 
291  ff_vk_exec_pool_free(vkctx, &s->e);
292  ff_vk_shader_free(vkctx, &s->shd);
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  .p.name = "blend_vulkan",
388  .p.description = NULL_IF_CONFIG_SMALL("Blend two video frames in Vulkan"),
389  .p.priv_class = &blend_vulkan_class,
390  .p.flags = AVFILTER_FLAG_HWDEVICE,
391  .priv_size = sizeof(BlendVulkanContext),
392  .init = &init,
393  .uninit = &uninit,
394  .activate = &activate,
398  .flags_internal = FF_FILTER_FLAG_HWFRAME_AWARE,
399  .process_command = &process_command,
400 };
flags
const SwsFlags flags[]
Definition: swscale.c:61
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:118
ff_framesync_configure
int ff_framesync_configure(FFFrameSync *fs)
Configure a frame sync structure.
Definition: framesync.c:137
BlendVulkanContext::all_mode
int all_mode
Definition: vf_blend_vulkan.c:56
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_vk_shader_free
void ff_vk_shader_free(FFVulkanContext *s, FFVulkanShader *shd)
Free a shader.
Definition: vulkan.c:2791
ff_vk_shader_init
int ff_vk_shader_init(FFVulkanContext *s, FFVulkanShader *shd, const char *name, VkPipelineStageFlags stage, const char *extensions[], int nb_extensions, int lg_x, int lg_y, int lg_z, uint32_t required_subgroup_size)
Initialize a shader object, with a specific set of extensions, type+bind, local group size,...
Definition: vulkan.c:2103
ff_framesync_uninit
void ff_framesync_uninit(FFFrameSync *fs)
Free all memory currently allocated.
Definition: framesync.c:301
out
static 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:1067
AVBufferRef::data
uint8_t * data
The data buffer.
Definition: buffer.h:90
RET
#define RET(x)
Definition: vulkan.h:68
ff_vk_exec_pool_init
int ff_vk_exec_pool_init(FFVulkanContext *s, AVVulkanDeviceQueueFamily *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:357
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:269
config_props_output
static int config_props_output(AVFilterLink *outlink)
Definition: vf_blend_vulkan.c:300
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:64
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: filters.h:264
mode
Definition: swscale.c:56
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:427
init_blend_func
static void init_blend_func(FilterParamsVulkan *param)
Definition: vf_blend_vulkan.c:76
ff_vk_filter_init
int ff_vk_filter_init(AVFilterContext *avctx)
General lavfi IO functions.
Definition: vulkan_filter.c:233
B
#define B
Definition: vf_blend_vulkan.c:69
AVOption
AVOption.
Definition: opt.h:429
ff_vk_uninit
void ff_vk_uninit(FFVulkanContext *s)
Frees main context.
Definition: vulkan.c:2817
FFVkSPIRVCompiler::uninit
void(* uninit)(struct FFVkSPIRVCompiler **ctx)
Definition: vulkan_spirv.h:32
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:220
BlendVulkanContext::e
FFVkExecPool e
Definition: vf_blend_vulkan.c:49
FFFrameSync
Frame sync structure.
Definition: framesync.h:168
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:54
av_pix_fmt_count_planes
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:3496
BlendVulkanContext::fs
FFFrameSync fs
Definition: vf_blend_vulkan.c:46
AVFilterContext::priv
void * priv
private data for use by the filter
Definition: avfilter.h:289
fail
#define fail()
Definition: checkasm.h:219
init
static av_cold int init(AVFilterContext *avctx)
Definition: vf_blend_vulkan.c:277
BlendVulkanContext::params
FilterParamsVulkan params[4]
Definition: vf_blend_vulkan.c:53
vulkan_filter.h
blend_vulkan_outputs
static const AVFilterPad blend_vulkan_outputs[]
Definition: vf_blend_vulkan.c:378
ff_vk_shader_register_exec
int ff_vk_shader_register_exec(FFVulkanContext *s, FFVkExecPool *pool, FFVulkanShader *shd)
Register a shader with an exec pool.
Definition: vulkan.c:2584
BlendVulkanContext::shd
FFVulkanShader shd
Definition: vf_blend_vulkan.c:51
AVFilterPad
A filter pad used for either input or output.
Definition: filters.h:40
OFFSET
#define OFFSET(x)
Definition: vf_blend_vulkan.c:341
AVFilterContext::input_pads
AVFilterPad * input_pads
array of input pads
Definition: avfilter.h:281
GLSLC
#define GLSLC(N, S)
Definition: vulkan.h:45
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:210
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen.c:29
av_cold
#define av_cold
Definition: attributes.h:106
main
int main
Definition: dovi_rpuenc.c:38
FFFilter
Definition: filters.h:267
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
FF_VK_REP_FLOAT
@ FF_VK_REP_FLOAT
Definition: vulkan.h:451
ctx
static AVFormatContext * ctx
Definition: movenc.c:49
activate
static int activate(AVFilterContext *avctx)
Definition: vf_blend_vulkan.c:335
GLSLD
#define GLSLD(D)
Definition: vulkan.h:60
init_filter
static av_cold int init_filter(AVFilterContext *avctx)
Definition: vf_blend_vulkan.c:125
BlendVulkanContext::initialized
int initialized
Definition: vf_blend_vulkan.c:48
ff_vk_exec_pool_free
void ff_vk_exec_pool_free(FFVulkanContext *s, FFVkExecPool *pool)
Definition: vulkan.c:299
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: filters.h:265
ff_vk_shader_rep_fmt
const char * ff_vk_shader_rep_fmt(enum AVPixelFormat pix_fmt, enum FFVkShaderRepFormat rep_fmt)
Definition: vulkan.c:1607
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:213
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:599
BLEND_MULTIPLY
@ BLEND_MULTIPLY
Definition: blend.h:42
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:282
planes
static const struct @559 planes[]
ff_vk_filter_config_output
int ff_vk_filter_config_output(AVFilterLink *outlink)
Definition: vulkan_filter.c:209
ff_vk_shader_link
int ff_vk_shader_link(FFVulkanContext *s, FFVulkanShader *shd, const char *spirv, size_t spirv_len, const char *entrypoint)
Link a shader into an executable.
Definition: vulkan.c:2357
config_params
static int config_params(AVFilterContext *avctx)
Definition: vf_blend_vulkan.c:92
blend_vulkan_options
static const AVOption blend_vulkan_options[]
Definition: vf_blend_vulkan.c:344
BlendVulkanContext::qf
AVVulkanDeviceQueueFamily * qf
Definition: vf_blend_vulkan.c:50
FFVulkanContext
Definition: vulkan.h:312
BlendVulkanContext
Definition: vf_blend_vulkan.c:44
A
#define A
Definition: vf_blend_vulkan.c:68
ff_filter_link
static FilterLink * ff_filter_link(AVFilterLink *link)
Definition: filters.h:199
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:208
ff_vk_filter_process_Nin
int ff_vk_filter_process_Nin(FFVulkanContext *vkctx, FFVkExecPool *e, FFVulkanShader *shd, 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:407
FLAGS
#define FLAGS
Definition: vf_blend_vulkan.c:342
f
f
Definition: af_crystalizer.c:122
FFVulkanDescriptorSetBinding
Definition: vulkan.h:112
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:372
blend_frame
static int blend_frame(FFFrameSync *fs)
Definition: vf_blend_vulkan.c:235
dst
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition: dsp.h:87
i
#define i(width, name, range_min, range_max)
Definition: cbs_h264.c:63
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:188
size
int size
Definition: twinvq_data.h:10344
FFVulkanShader
Definition: vulkan.h:225
FilterParamsVulkan::opacity
double opacity
Definition: vf_blend_vulkan.c:40
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:905
FFVkSPIRVCompiler::compile_shader
int(* compile_shader)(FFVulkanContext *s, struct FFVkSPIRVCompiler *ctx, FFVulkanShader *shd, uint8_t **data, size_t *size, const char *entrypoint, void **opaque)
Definition: vulkan_spirv.h:28
AVERROR_EXTERNAL
#define AVERROR_EXTERNAL
Generic error in an external library.
Definition: error.h:59
FFVkSPIRVCompiler
Definition: vulkan_spirv.h:26
CASE
#define CASE(MODE)
BlendVulkanContext::vkctx
FFVulkanContext vkctx
Definition: vf_blend_vulkan.c:45
blend.h
vulkan_spirv.h
AVFilterPad::name
const char * name
Pad name.
Definition: filters.h:46
FFVkSPIRVCompiler::free_shader
void(* free_shader)(struct FFVkSPIRVCompiler *ctx, void **opaque)
Definition: vulkan_spirv.h:31
AVHWFramesContext
This struct describes a set or pool of "hardware" frames (i.e.
Definition: hwcontext.h:118
ret
ret
Definition: filter_design.txt:187
FFVkExecPool
Definition: vulkan.h:290
pos
unsigned int pos
Definition: spdifenc.c:414
ff_vk_qf_find
AVVulkanDeviceQueueFamily * ff_vk_qf_find(FFVulkanContext *s, VkQueueFlagBits dev_family, VkVideoCodecOperationFlagBitsKHR vid_ops)
Chooses an appropriate QF.
Definition: vulkan.c:286
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:724
ff_vk_shader_add_descriptor_set
int ff_vk_shader_add_descriptor_set(FFVulkanContext *s, FFVulkanShader *shd, const FFVulkanDescriptorSetBinding *desc, int nb, int singular, int print_to_shader_only)
Add descriptor to a shader.
Definition: vulkan.c:2484
random_seed.h
framesync.h
uninit
static av_cold void uninit(AVFilterContext *avctx)
Definition: vf_blend_vulkan.c:286
GLSLF
#define GLSLF(N, S,...)
Definition: vulkan.h:55
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:115
DEFINE_BLEND_MODE
#define DEFINE_BLEND_MODE(MODE, EXPR)
Definition: vf_blend_vulkan.c:59
AVFilterContext
An instance of a filter.
Definition: avfilter.h:274
desc
const char * desc
Definition: libsvtav1.c:82
ff_vk_filter_config_input
int ff_vk_filter_config_input(AVFilterLink *inlink)
Definition: vulkan_filter.c:176
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:200
FFFilter::p
AVFilter p
The public AVFilter.
Definition: filters.h:271
FilterParamsVulkan::mode
enum BlendMode mode
Definition: vf_blend_vulkan.c:41
ff_vf_blend_vulkan
const FFFilter ff_vf_blend_vulkan
Definition: vf_blend_vulkan.c:386
FilterParamsVulkan::blend
const char * blend
Definition: vf_blend_vulkan.c:38
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVVulkanDeviceQueueFamily
Definition: hwcontext_vulkan.h:33
FN
#define FN(EXPR)
Definition: vf_blend_vulkan.c:71
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:352
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:254
BLEND_NORMAL
@ BLEND_NORMAL
Definition: blend.h:29
AVFilterContext::outputs
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:286