FFmpeg
vf_avgblur_vulkan.c
Go to the documentation of this file.
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 
19 #include "libavutil/random_seed.h"
20 #include "libavutil/opt.h"
21 #include "vulkan.h"
22 #include "internal.h"
23 
24 #define CGS 32
25 
26 typedef struct AvgBlurVulkanContext {
28 
33 
34  /* Shader updators, must be in the main filter struct */
35  VkDescriptorImageInfo input_images[3];
36  VkDescriptorImageInfo tmp_images[3];
37  VkDescriptorImageInfo output_images[3];
38 
39  int size_x;
40  int size_y;
41  int planes;
43 
44 static const char blur_kernel[] = {
45  C(0, shared vec4 cache[DIR(gl_WorkGroupSize) + FILTER_RADIUS*2 + 1]; )
46  C(0, )
47  C(0, void distort(const ivec2 pos, const int idx) )
48  C(0, { )
49  C(1, const uint cp = DIR(gl_LocalInvocationID) + FILTER_RADIUS; )
50  C(0, )
51  C(1, cache[cp] = texture(input_img[idx], pos); )
52  C(0, )
53  C(1, const ivec2 loc_l = pos - INC(FILTER_RADIUS); )
54  C(1, cache[cp - FILTER_RADIUS] = texture(input_img[idx], loc_l); )
55  C(0, )
56  C(1, const ivec2 loc_h = pos + INC(DIR(gl_WorkGroupSize)); )
57  C(1, cache[cp + DIR(gl_WorkGroupSize)] = texture(input_img[idx], loc_h); )
58  C(0, )
59  C(1, barrier(); )
60  C(0, )
61  C(1, vec4 sum = vec4(0); )
62  C(1, for (int p = -FILTER_RADIUS; p <= FILTER_RADIUS; p++) )
63  C(2, sum += cache[cp + p]; )
64  C(0, )
65  C(1, sum /= vec4(FILTER_RADIUS*2 + 1); )
66  C(1, imageStore(output_img[idx], pos, sum); )
67  C(0, } )
68 };
69 
71 {
72  int err;
73  SPIRVShader *shd;
74  AvgBlurVulkanContext *s = ctx->priv;
75  const int planes = av_pix_fmt_count_planes(s->vkctx.output_format);
76  VkSampler *sampler = ff_vk_init_sampler(ctx, 1, VK_FILTER_LINEAR);
77 
78  VulkanDescriptorSetBinding desc_i[2] = {
79  {
80  .name = "input_img",
81  .type = VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER,
82  .dimensions = 2,
83  .elems = planes,
84  .stages = VK_SHADER_STAGE_COMPUTE_BIT,
85  .samplers = DUP_SAMPLER_ARRAY4(*sampler),
86  },
87  {
88  .name = "output_img",
89  .type = VK_DESCRIPTOR_TYPE_STORAGE_IMAGE,
90  .mem_layout = ff_vk_shader_rep_fmt(s->vkctx.output_format),
91  .mem_quali = "writeonly",
92  .dimensions = 2,
93  .elems = planes,
94  .stages = VK_SHADER_STAGE_COMPUTE_BIT,
95  },
96  };
97 
98  if (!sampler)
99  return AVERROR_EXTERNAL;
100 
101  s->vkctx.queue_family_idx = s->vkctx.hwctx->queue_family_comp_index;
102  s->vkctx.queue_count = GET_QUEUE_COUNT(s->vkctx.hwctx, 0, 1, 0);
103  s->vkctx.cur_queue_idx = av_get_random_seed() % s->vkctx.queue_count;
104 
105  { /* Create shader for the horizontal pass */
106  desc_i[0].updater = s->input_images;
107  desc_i[1].updater = s->tmp_images;
108 
109  s->pl_hor = ff_vk_create_pipeline(ctx);
110  if (!s->pl_hor)
111  return AVERROR(ENOMEM);
112 
113  shd = ff_vk_init_shader(ctx, s->pl_hor, "avgblur_compute_hor",
114  VK_SHADER_STAGE_COMPUTE_BIT);
115 
116  ff_vk_set_compute_shader_sizes(ctx, shd, (int [3]){ CGS, 1, 1 });
117 
118  RET(ff_vk_add_descriptor_set(ctx, s->pl_hor, shd, desc_i, 2, 0));
119 
120  GLSLF(0, #define FILTER_RADIUS (%i) ,s->size_x - 1);
121  GLSLC(0, #define INC(x) (ivec2(x, 0)) );
122  GLSLC(0, #define DIR(var) (var.x) );
123  GLSLD( blur_kernel );
124  GLSLC(0, void main() );
125  GLSLC(0, { );
126  GLSLC(1, ivec2 size; );
127  GLSLC(1, const ivec2 pos = ivec2(gl_GlobalInvocationID.xy); );
128  for (int i = 0; i < planes; i++) {
129  GLSLC(0, );
130  GLSLF(1, size = imageSize(output_img[%i]); ,i);
131  GLSLC(1, if (IS_WITHIN(pos, size)) { );
132  if (s->planes & (1 << i)) {
133  GLSLF(2, distort(pos, %i); ,i);
134  } else {
135  GLSLF(2, vec4 res = texture(input_img[%i], pos); ,i);
136  GLSLF(2, imageStore(output_img[%i], pos, res); ,i);
137  }
138  GLSLC(1, } );
139  }
140  GLSLC(0, } );
141 
142  RET(ff_vk_compile_shader(ctx, shd, "main"));
143 
144  RET(ff_vk_init_pipeline_layout(ctx, s->pl_hor));
146  }
147 
148  { /* Create shader for the vertical pass */
149  desc_i[0].updater = s->tmp_images;
150  desc_i[1].updater = s->output_images;
151 
152  s->pl_ver = ff_vk_create_pipeline(ctx);
153  if (!s->pl_ver)
154  return AVERROR(ENOMEM);
155 
156  shd = ff_vk_init_shader(ctx, s->pl_ver, "avgblur_compute_ver",
157  VK_SHADER_STAGE_COMPUTE_BIT);
158 
159  ff_vk_set_compute_shader_sizes(ctx, shd, (int [3]){ 1, CGS, 1 });
160 
161  RET(ff_vk_add_descriptor_set(ctx, s->pl_ver, shd, desc_i, 2, 0));
162 
163  GLSLF(0, #define FILTER_RADIUS (%i) ,s->size_y - 1);
164  GLSLC(0, #define INC(x) (ivec2(0, x)) );
165  GLSLC(0, #define DIR(var) (var.y) );
166  GLSLD( blur_kernel );
167  GLSLC(0, void main() );
168  GLSLC(0, { );
169  GLSLC(1, ivec2 size; );
170  GLSLC(1, const ivec2 pos = ivec2(gl_GlobalInvocationID.xy); );
171  for (int i = 0; i < planes; i++) {
172  GLSLC(0, );
173  GLSLF(1, size = imageSize(output_img[%i]); ,i);
174  GLSLC(1, if (IS_WITHIN(pos, size)) { );
175  if (s->planes & (1 << i)) {
176  GLSLF(2, distort(pos, %i); ,i);
177  } else {
178  GLSLF(2, vec4 res = texture(input_img[%i], pos); ,i);
179  GLSLF(2, imageStore(output_img[%i], pos, res); ,i);
180  }
181  GLSLC(1, } );
182  }
183  GLSLC(0, } );
184 
185  RET(ff_vk_compile_shader(ctx, shd, "main"));
186 
187  RET(ff_vk_init_pipeline_layout(ctx, s->pl_ver));
189  }
190 
191  /* Execution context */
192  RET(ff_vk_create_exec_ctx(ctx, &s->exec));
193 
194  s->initialized = 1;
195 
196  return 0;
197 
198 fail:
199  return err;
200 }
201 
202 static int process_frames(AVFilterContext *avctx, AVFrame *out_f, AVFrame *tmp_f, AVFrame *in_f)
203 {
204  int err;
205  VkCommandBuffer cmd_buf;
206  AvgBlurVulkanContext *s = avctx->priv;
207  AVVkFrame *in = (AVVkFrame *)in_f->data[0];
208  AVVkFrame *tmp = (AVVkFrame *)tmp_f->data[0];
209  AVVkFrame *out = (AVVkFrame *)out_f->data[0];
210  int planes = av_pix_fmt_count_planes(s->vkctx.output_format);
211 
212  /* Update descriptors and init the exec context */
213  ff_vk_start_exec_recording(avctx, s->exec);
214  cmd_buf = ff_vk_get_exec_buf(avctx, s->exec);
215 
216  for (int i = 0; i < planes; i++) {
217  RET(ff_vk_create_imageview(avctx, s->exec, &s->input_images[i].imageView,
218  in->img[i],
219  av_vkfmt_from_pixfmt(s->vkctx.input_format)[i],
221 
222  RET(ff_vk_create_imageview(avctx, s->exec, &s->tmp_images[i].imageView,
223  tmp->img[i],
224  av_vkfmt_from_pixfmt(s->vkctx.output_format)[i],
226 
227  RET(ff_vk_create_imageview(avctx, s->exec, &s->output_images[i].imageView,
228  out->img[i],
229  av_vkfmt_from_pixfmt(s->vkctx.output_format)[i],
231 
232  s->input_images[i].imageLayout = VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL;
233  s->tmp_images[i].imageLayout = VK_IMAGE_LAYOUT_GENERAL;
234  s->output_images[i].imageLayout = VK_IMAGE_LAYOUT_GENERAL;
235  }
236 
237  ff_vk_update_descriptor_set(avctx, s->pl_hor, 0);
238  ff_vk_update_descriptor_set(avctx, s->pl_ver, 0);
239 
240  for (int i = 0; i < planes; i++) {
241  VkImageMemoryBarrier bar[] = {
242  {
243  .sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER,
244  .srcAccessMask = 0,
245  .dstAccessMask = VK_ACCESS_SHADER_READ_BIT,
246  .oldLayout = in->layout[i],
247  .newLayout = s->input_images[i].imageLayout,
248  .srcQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED,
249  .dstQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED,
250  .image = in->img[i],
251  .subresourceRange.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
252  .subresourceRange.levelCount = 1,
253  .subresourceRange.layerCount = 1,
254  },
255  {
256  .sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER,
257  .srcAccessMask = 0,
258  .dstAccessMask = VK_ACCESS_SHADER_WRITE_BIT | VK_ACCESS_SHADER_READ_BIT,
259  .oldLayout = tmp->layout[i],
260  .newLayout = s->tmp_images[i].imageLayout,
261  .srcQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED,
262  .dstQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED,
263  .image = tmp->img[i],
264  .subresourceRange.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
265  .subresourceRange.levelCount = 1,
266  .subresourceRange.layerCount = 1,
267  },
268  {
269  .sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER,
270  .srcAccessMask = 0,
271  .dstAccessMask = VK_ACCESS_SHADER_WRITE_BIT,
272  .oldLayout = out->layout[i],
273  .newLayout = s->output_images[i].imageLayout,
274  .srcQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED,
275  .dstQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED,
276  .image = out->img[i],
277  .subresourceRange.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
278  .subresourceRange.levelCount = 1,
279  .subresourceRange.layerCount = 1,
280  },
281  };
282 
283  vkCmdPipelineBarrier(cmd_buf, VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT,
284  VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT, 0,
285  0, NULL, 0, NULL, FF_ARRAY_ELEMS(bar), bar);
286 
287  in->layout[i] = bar[0].newLayout;
288  in->access[i] = bar[0].dstAccessMask;
289 
290  tmp->layout[i] = bar[1].newLayout;
291  tmp->access[i] = bar[1].dstAccessMask;
292 
293  out->layout[i] = bar[2].newLayout;
294  out->access[i] = bar[2].dstAccessMask;
295  }
296 
297  ff_vk_bind_pipeline_exec(avctx, s->exec, s->pl_hor);
298 
299  vkCmdDispatch(cmd_buf, FFALIGN(s->vkctx.output_width, CGS)/CGS,
300  s->vkctx.output_height, 1);
301 
302  ff_vk_bind_pipeline_exec(avctx, s->exec, s->pl_ver);
303 
304  vkCmdDispatch(cmd_buf, s->vkctx.output_width,
305  FFALIGN(s->vkctx.output_height, CGS)/CGS, 1);
306 
307  ff_vk_add_exec_dep(avctx, s->exec, in_f, VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT);
308  ff_vk_add_exec_dep(avctx, s->exec, out_f, VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT);
309 
310  err = ff_vk_submit_exec_queue(avctx, s->exec);
311  if (err)
312  return err;
313 
314  return err;
315 
316 fail:
317  ff_vk_discard_exec_deps(avctx, s->exec);
318  return err;
319 }
320 
322 {
323  int err;
324  AVFrame *tmp = NULL, *out = NULL;
325  AVFilterContext *ctx = link->dst;
326  AvgBlurVulkanContext *s = ctx->priv;
327  AVFilterLink *outlink = ctx->outputs[0];
328 
329  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
330  if (!out) {
331  err = AVERROR(ENOMEM);
332  goto fail;
333  }
334 
335  tmp = ff_get_video_buffer(outlink, outlink->w, outlink->h);
336  if (!out) {
337  err = AVERROR(ENOMEM);
338  goto fail;
339  }
340 
341  if (!s->initialized)
342  RET(init_filter(ctx, in));
343 
345 
346  err = av_frame_copy_props(out, in);
347  if (err < 0)
348  goto fail;
349 
350  av_frame_free(&in);
351  av_frame_free(&tmp);
352 
353  return ff_filter_frame(outlink, out);
354 
355 fail:
356  av_frame_free(&in);
357  av_frame_free(&tmp);
358  av_frame_free(&out);
359  return err;
360 }
361 
363 {
364  AvgBlurVulkanContext *s = avctx->priv;
365 
366  ff_vk_filter_uninit(avctx);
367 
368  s->initialized = 0;
369 }
370 
371 #define OFFSET(x) offsetof(AvgBlurVulkanContext, x)
372 #define FLAGS (AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM)
374  { "sizeX", "Set horizontal radius", OFFSET(size_x), AV_OPT_TYPE_INT, {.i64 = 3}, 1, 32, .flags = FLAGS },
375  { "planes", "Set planes to filter (bitmask)", OFFSET(planes), AV_OPT_TYPE_INT, {.i64 = 0xF}, 0, 0xF, .flags = FLAGS },
376  { "sizeY", "Set vertical radius", OFFSET(size_y), AV_OPT_TYPE_INT, {.i64 = 3}, 1, 32, .flags = FLAGS },
377  { NULL },
378 };
379 
380 AVFILTER_DEFINE_CLASS(avgblur_vulkan);
381 
383  {
384  .name = "default",
385  .type = AVMEDIA_TYPE_VIDEO,
386  .filter_frame = &avgblur_vulkan_filter_frame,
387  .config_props = &ff_vk_filter_config_input,
388  },
389  { NULL }
390 };
391 
393  {
394  .name = "default",
395  .type = AVMEDIA_TYPE_VIDEO,
396  .config_props = &ff_vk_filter_config_output,
397  },
398  { NULL }
399 };
400 
402  .name = "avgblur_vulkan",
403  .description = NULL_IF_CONFIG_SMALL("Apply avgblur mask to input video"),
404  .priv_size = sizeof(AvgBlurVulkanContext),
410  .priv_class = &avgblur_vulkan_class,
411  .flags_internal = FF_FILTER_FLAG_HWFRAME_AWARE,
412 };
ff_vk_filter_query_formats
int ff_vk_filter_query_formats(AVFilterContext *avctx)
General lavfi IO functions.
Definition: vulkan.c:592
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:99
init
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:31
AvgBlurVulkanContext
Definition: vf_avgblur_vulkan.c:26
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
FLAGS
#define FLAGS
Definition: vf_avgblur_vulkan.c:372
avgblur_vulkan_outputs
static const AVFilterPad avgblur_vulkan_outputs[]
Definition: vf_avgblur_vulkan.c:392
out
FILE * out
Definition: movenc.c:54
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:339
avgblur_vulkan_inputs
static const AVFilterPad avgblur_vulkan_inputs[]
Definition: vf_avgblur_vulkan.c:382
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1096
RET
#define RET(x)
Definition: vulkan.h:46
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:203
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:318
tmp
static uint8_t tmp[11]
Definition: aes_ctr.c:27
VulkanDescriptorSetBinding
Definition: vulkan.h:73
AVOption
AVOption.
Definition: opt.h:248
ff_vk_init_sampler
VkSampler * ff_vk_init_sampler(AVFilterContext *avctx, int unnorm_coords, VkFilter filt)
Create a Vulkan sampler, will be auto-freed in ff_vk_filter_uninit()
Definition: vulkan.c:769
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:149
avgblur_vulkan_uninit
static void avgblur_vulkan_uninit(AVFilterContext *avctx)
Definition: vf_avgblur_vulkan.c:362
AvgBlurVulkanContext::initialized
int initialized
Definition: vf_avgblur_vulkan.c:29
blur_kernel
static const char blur_kernel[]
Definition: vf_avgblur_vulkan.c:44
AVFILTER_DEFINE_CLASS
AVFILTER_DEFINE_CLASS(avgblur_vulkan)
DUP_SAMPLER_ARRAY4
#define DUP_SAMPLER_ARRAY4(x)
Definition: vulkan.h:64
AVFrame::data
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:332
av_get_random_seed
uint32_t av_get_random_seed(void)
Get a seed to use in conjunction with random functions.
Definition: random_seed.c:120
av_pix_fmt_count_planes
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2613
ff_vk_init_shader
SPIRVShader * ff_vk_init_shader(AVFilterContext *avctx, VulkanPipeline *pl, const char *name, VkShaderStageFlags stage)
Inits a shader for a specific pipeline.
Definition: vulkan.c:888
AVFilterContext::priv
void * priv
private data for use by the filter
Definition: avfilter.h:356
fail
#define fail()
Definition: checkasm.h:133
SPIRVShader
Definition: vulkan.h:66
ff_vk_create_pipeline
VulkanPipeline * ff_vk_create_pipeline(AVFilterContext *avctx)
Inits a pipeline.
Definition: vulkan.c:1276
avgblur_vulkan_options
static const AVOption avgblur_vulkan_options[]
Definition: vf_avgblur_vulkan.c:373
ff_vk_add_exec_dep
int ff_vk_add_exec_dep(AVFilterContext *avctx, FFVkExecContext *e, AVFrame *frame, VkPipelineStageFlagBits in_wait_dst_flag)
Adds a frame as a queue dependency.
Definition: vulkan.c:464
AVFilterPad
A filter pad used for either input or output.
Definition: internal.h:54
ff_vk_compile_shader
int ff_vk_compile_shader(AVFilterContext *avctx, SPIRVShader *shd, const char *entrypoint)
Compiles the shader, entrypoint must be set to "main".
Definition: vulkan.c:942
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
GLSLC
#define GLSLC(N, S)
Definition: vulkan.h:38
ff_vk_filter_uninit
void ff_vk_filter_uninit(AVFilterContext *avctx)
Definition: vulkan.c:1415
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen.c:29
av_cold
#define av_cold
Definition: attributes.h:90
s
#define s(width, name)
Definition: cbs_vp9.c:257
ff_vk_filter_config_input
int ff_vk_filter_config_input(AVFilterLink *inlink)
Definition: vulkan.c:635
ff_comp_identity_map
const VkComponentMapping ff_comp_identity_map
Definition: vulkan.c:44
AvgBlurVulkanContext::input_images
VkDescriptorImageInfo input_images[3]
Definition: vf_avgblur_vulkan.c:35
outputs
static const AVFilterPad outputs[]
Definition: af_acontrast.c:203
ctx
AVFormatContext * ctx
Definition: movenc.c:48
AvgBlurVulkanContext::pl_hor
VulkanPipeline * pl_hor
Definition: vf_avgblur_vulkan.c:31
process_frames
static int process_frames(AVFilterContext *avctx, AVFrame *out_f, AVFrame *tmp_f, AVFrame *in_f)
Definition: vf_avgblur_vulkan.c:202
ff_vk_init_pipeline_layout
int ff_vk_init_pipeline_layout(AVFilterContext *avctx, VulkanPipeline *pl)
Initializes the pipeline layout after all shaders and descriptor sets have been finished.
Definition: vulkan.c:1180
GLSLD
#define GLSLD(D)
Definition: vulkan.h:41
ff_vk_add_descriptor_set
int ff_vk_add_descriptor_set(AVFilterContext *avctx, VulkanPipeline *pl, SPIRVShader *shd, VulkanDescriptorSetBinding *desc, int num, int only_print_to_shader)
Adds a descriptor set to the shader and registers them in the pipeline.
Definition: vulkan.c:1020
VulkanPipeline
Definition: vulkan.h:92
link
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 link
Definition: filter_design.txt:23
ff_vk_set_compute_shader_sizes
void ff_vk_set_compute_shader_sizes(AVFilterContext *avctx, SPIRVShader *shd, int local_size[3])
Writes the workgroup size for a shader.
Definition: vulkan.c:909
ff_vk_bind_pipeline_exec
void ff_vk_bind_pipeline_exec(AVFilterContext *avctx, FFVkExecContext *e, VulkanPipeline *pl)
Add a command to bind the completed pipeline and its descriptor sets.
Definition: vulkan.c:1316
av_vkfmt_from_pixfmt
const VkFormat * av_vkfmt_from_pixfmt(enum AVPixelFormat p)
Returns the format of each image up to the number of planes for a given sw_format.
Definition: hwcontext_vulkan.c:212
main
int main(int argc, char *argv[])
Definition: avio_list_dir.c:112
NULL
#define NULL
Definition: coverity.c:32
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:658
AvgBlurVulkanContext::output_images
VkDescriptorImageInfo output_images[3]
Definition: vf_avgblur_vulkan.c:37
AvgBlurVulkanContext::vkctx
VulkanFilterContext vkctx
Definition: vf_avgblur_vulkan.c:27
OFFSET
#define OFFSET(x)
Definition: vf_avgblur_vulkan.c:371
ff_vk_get_exec_buf
VkCommandBuffer ff_vk_get_exec_buf(AVFilterContext *avctx, FFVkExecContext *e)
Gets the command buffer to use for this submission from the exe context.
Definition: vulkan.c:458
AvgBlurVulkanContext::size_y
int size_y
Definition: vf_avgblur_vulkan.c:40
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
AvgBlurVulkanContext::planes
int planes
Definition: vf_avgblur_vulkan.c:41
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
GET_QUEUE_COUNT
#define GET_QUEUE_COUNT(hwctx, graph, comp, tx)
Definition: vulkan.h:53
AVVkFrame
Definition: hwcontext_vulkan.h:149
vulkan.h
size
int size
Definition: twinvq_data.h:10344
AvgBlurVulkanContext::tmp_images
VkDescriptorImageInfo tmp_images[3]
Definition: vf_avgblur_vulkan.c:36
VulkanDescriptorSetBinding::name
const char * name
Definition: vulkan.h:74
init_filter
static av_cold int init_filter(AVFilterContext *ctx, AVFrame *in)
Definition: vf_avgblur_vulkan.c:70
AVERROR_EXTERNAL
#define AVERROR_EXTERNAL
Generic error in an external library.
Definition: error.h:57
FFVkExecContext
Definition: vulkan.h:136
ff_vk_filter_init
int ff_vk_filter_init(AVFilterContext *avctx)
Definition: vulkan.c:756
ff_vk_update_descriptor_set
void ff_vk_update_descriptor_set(AVFilterContext *avctx, VulkanPipeline *pl, int set_id)
Updates a descriptor set via the updaters defined.
Definition: vulkan.c:1160
internal.h
in
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) #define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac) { } void ff_audio_convert_free(AudioConvert **ac) { if(! *ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);} AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map) { AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method !=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt) > 2) { ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc) { av_free(ac);return NULL;} return ac;} in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar) { ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar ? ac->channels :1;} else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;} int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in) { int use_generic=1;int len=in->nb_samples;int p;if(ac->dc) { av_log(ac->avr, AV_LOG_TRACE, "%d samples - audio_convert: %s to %s (dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> in
Definition: audio_convert.c:326
i
int i
Definition: input.c:407
AvgBlurVulkanContext::size_x
int size_x
Definition: vf_avgblur_vulkan.c:39
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:60
AVFilter
Filter definition.
Definition: avfilter.h:145
ff_vk_start_exec_recording
int ff_vk_start_exec_recording(AVFilterContext *avctx, FFVkExecContext *e)
Begin recording to the command buffer.
Definition: vulkan.c:417
pos
unsigned int pos
Definition: spdifenc.c:412
AvgBlurVulkanContext::exec
FFVkExecContext * exec
Definition: vf_avgblur_vulkan.c:30
ff_vk_submit_exec_queue
int ff_vk_submit_exec_queue(AVFilterContext *avctx, FFVkExecContext *e)
Submits a command buffer to the queue for execution.
Definition: vulkan.c:522
AvgBlurVulkanContext::pl_ver
VulkanPipeline * pl_ver
Definition: vf_avgblur_vulkan.c:32
ff_vk_shader_rep_fmt
const char * ff_vk_shader_rep_fmt(enum AVPixelFormat pixfmt)
Gets the glsl format string for a pixel format.
Definition: vulkan.c:817
ff_vf_avgblur_vulkan
AVFilter ff_vf_avgblur_vulkan
Definition: vf_avgblur_vulkan.c:401
random_seed.h
GLSLF
#define GLSLF(N, S,...)
Definition: vulkan.h:40
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:225
CGS
#define CGS
Definition: vf_avgblur_vulkan.c:24
AVFilterContext
An instance of a filter.
Definition: avfilter.h:341
avgblur_vulkan_filter_frame
static int avgblur_vulkan_filter_frame(AVFilterLink *link, AVFrame *in)
Definition: vf_avgblur_vulkan.c:321
planes
static const struct @322 planes[]
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
ff_vk_create_exec_ctx
int ff_vk_create_exec_ctx(AVFilterContext *avctx, FFVkExecContext **ctx)
Init an execution context for command recording and queue submission.
Definition: vulkan.c:339
VulkanFilterContext
Definition: vulkan.h:159
FFALIGN
#define FFALIGN(x, a)
Definition: macros.h:48
ff_vk_discard_exec_deps
void ff_vk_discard_exec_deps(AVFilterContext *avctx, FFVkExecContext *e)
Discards all queue dependencies.
Definition: vulkan.c:400
query_formats
static int query_formats(AVFilterContext *ctx)
Definition: aeval.c:243
ff_vk_init_compute_pipeline
int ff_vk_init_compute_pipeline(AVFilterContext *avctx, VulkanPipeline *pl)
Initializes a compute pipeline.
Definition: vulkan.c:1281
VulkanDescriptorSetBinding::updater
void * updater
Definition: vulkan.h:83
uninit
static av_cold int uninit(AVCodecContext *avctx)
Definition: crystalhd.c:279
ff_vk_create_imageview
int ff_vk_create_imageview(AVFilterContext *avctx, FFVkExecContext *e, VkImageView *v, VkImage img, VkFormat fmt, const VkComponentMapping map)
Create an imageview.
Definition: vulkan.c:836
ff_vk_filter_config_output
int ff_vk_filter_config_output(AVFilterLink *outlink)
Definition: vulkan.c:705