|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "libavutil/random_seed.h" |
|
#include "libavutil/opt.h" |
|
#include "vulkan_filter.h" |
|
#include "vulkan_spirv.h" |
|
#include "internal.h" |
|
#include "framesync.h" |
|
#include "blend.h" |
|
#include "video.h" |
|
|
|
#define IN_TOP 0 |
|
#define IN_BOTTOM 1 |
|
|
|
typedef struct FilterParamsVulkan { |
|
const char *blend; |
|
const char *blend_func; |
|
double opacity; |
|
enum BlendMode mode; |
|
} FilterParamsVulkan; |
|
|
|
typedef struct BlendVulkanContext { |
|
FFVulkanContext vkctx; |
|
FFFrameSync fs; |
|
|
|
int initialized; |
|
FFVulkanPipeline pl; |
|
FFVkExecPool e; |
|
FFVkQueueFamilyCtx qf; |
|
FFVkSPIRVShader shd; |
|
VkSampler sampler; |
|
|
|
FilterParamsVulkan params[4]; |
|
double all_opacity; |
|
enum BlendMode all_mode; |
|
} BlendVulkanContext; |
|
|
|
#define DEFINE_BLEND_MODE(MODE, EXPR) \ |
|
static const char blend_##MODE[] = "blend_"#MODE; \ |
|
static const char blend_##MODE##_func[] = { \ |
|
C(0, vec4 blend_##MODE(vec4 top, vec4 bottom, float opacity) { ) \ |
|
C(1, vec4 dst = EXPR; ) \ |
|
C(1, return dst; ) \ |
|
C(0, } ) \ |
|
}; |
|
|
|
#define A top |
|
#define B bottom |
|
|
|
#define FN(EXPR) A + ((EXPR) - A) * opacity |
|
|
|
DEFINE_BLEND_MODE(NORMAL, A * opacity + B * (1.0f - opacity)) |
|
DEFINE_BLEND_MODE(MULTIPLY, FN(1.0f * A * B / 1.0f)) |
|
|
|
static inline void init_blend_func(FilterParamsVulkan *param) |
|
{ |
|
#define CASE(MODE) case BLEND_##MODE: \ |
|
param->blend = blend_##MODE;\ |
|
param->blend_func = blend_##MODE##_func; \ |
|
break; |
|
|
|
switch (param->mode) { |
|
CASE(NORMAL) |
|
CASE(MULTIPLY) |
|
default: param->blend = NULL; break; |
|
} |
|
|
|
#undef CASE |
|
} |
|
|
|
static int config_params(AVFilterContext *avctx) |
|
{ |
|
BlendVulkanContext *s = avctx->priv; |
|
|
|
for (int plane = 0; plane < FF_ARRAY_ELEMS(s->params); plane++) { |
|
FilterParamsVulkan *param = &s->params[plane]; |
|
|
|
if (s->all_mode >= 0) |
|
param->mode = s->all_mode; |
|
if (s->all_opacity < 1) |
|
param->opacity = s->all_opacity; |
|
|
|
init_blend_func(param); |
|
if (!param->blend) { |
|
av_log(avctx, AV_LOG_ERROR, |
|
"Currently the blend mode specified is not supported yet.\n"); |
|
return AVERROR(EINVAL); |
|
} |
|
} |
|
|
|
return 0; |
|
} |
|
|
|
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, |
|
char *res, int res_len, int flags) |
|
{ |
|
int ret = ff_filter_process_command(ctx, cmd, args, res, res_len, flags); |
|
if (ret < 0) |
|
return ret; |
|
|
|
return config_params(ctx); |
|
} |
|
|
|
static av_cold int init_filter(AVFilterContext *avctx) |
|
{ |
|
int err = 0; |
|
uint8_t *spv_data; |
|
size_t spv_len; |
|
void *spv_opaque = NULL; |
|
BlendVulkanContext *s = avctx->priv; |
|
FFVulkanContext *vkctx = &s->vkctx; |
|
const int planes = av_pix_fmt_count_planes(s->vkctx.output_format); |
|
FFVkSPIRVShader *shd = &s->shd; |
|
FFVkSPIRVCompiler *spv; |
|
FFVulkanDescriptorSetBinding *desc; |
|
|
|
spv = ff_vk_spirv_init(); |
|
if (!spv) { |
|
av_log(avctx, AV_LOG_ERROR, "Unable to initialize SPIR-V compiler!\n"); |
|
return AVERROR_EXTERNAL; |
|
} |
|
|
|
ff_vk_qf_init(vkctx, &s->qf, VK_QUEUE_COMPUTE_BIT); |
|
RET(ff_vk_exec_pool_init(vkctx, &s->qf, &s->e, s->qf.nb_queues*4, 0, 0, 0, NULL)); |
|
RET(ff_vk_init_sampler(vkctx, &s->sampler, 1, VK_FILTER_NEAREST)); |
|
RET(ff_vk_shader_init(&s->pl, &s->shd, "blend_compute", |
|
VK_SHADER_STAGE_COMPUTE_BIT, 0)); |
|
|
|
ff_vk_shader_set_compute_sizes(&s->shd, 32, 32, 1); |
|
|
|
desc = (FFVulkanDescriptorSetBinding []) { |
|
{ |
|
.name = "top_images", |
|
.type = VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, |
|
.dimensions = 2, |
|
.elems = planes, |
|
.stages = VK_SHADER_STAGE_COMPUTE_BIT, |
|
.samplers = DUP_SAMPLER(s->sampler), |
|
}, |
|
{ |
|
.name = "bottom_images", |
|
.type = VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, |
|
.dimensions = 2, |
|
.elems = planes, |
|
.stages = VK_SHADER_STAGE_COMPUTE_BIT, |
|
.samplers = DUP_SAMPLER(s->sampler), |
|
}, |
|
{ |
|
.name = "output_images", |
|
.type = VK_DESCRIPTOR_TYPE_STORAGE_IMAGE, |
|
.mem_layout = ff_vk_shader_rep_fmt(s->vkctx.output_format), |
|
.mem_quali = "writeonly", |
|
.dimensions = 2, |
|
.elems = planes, |
|
.stages = VK_SHADER_STAGE_COMPUTE_BIT, |
|
}, |
|
}; |
|
|
|
RET(ff_vk_pipeline_descriptor_set_add(vkctx, &s->pl, shd, desc, 3, 0, 0)); |
|
|
|
for (int i = 0, j = 0; i < planes; i++) { |
|
for (j = 0; j < i; j++) |
|
if (s->params[i].blend_func == s->params[j].blend_func) |
|
break; |
|
|
|
if (j == i) { |
|
GLSLD(s->params[i].blend_func); |
|
} |
|
} |
|
|
|
GLSLC(0, void main() ); |
|
GLSLC(0, { ); |
|
GLSLC(1, ivec2 size; ); |
|
GLSLC(1, const ivec2 pos = ivec2(gl_GlobalInvocationID.xy); ); |
|
for (int i = 0; i < planes; i++) { |
|
GLSLC(0, ); |
|
GLSLF(1, size = imageSize(output_images[%i]); ,i); |
|
GLSLC(1, if (IS_WITHIN(pos, size)) { ); |
|
GLSLF(2, const vec4 top = texture(top_images[%i], pos); ,i); |
|
GLSLF(2, const vec4 bottom = texture(bottom_images[%i], pos); ,i); |
|
GLSLF(2, const float opacity = %f; ,s->params[i].opacity); |
|
GLSLF(2, vec4 dst = %s(top, bottom, opacity); ,s->params[i].blend); |
|
GLSLC(0, ); |
|
GLSLF(2, imageStore(output_images[%i], pos, dst); ,i); |
|
GLSLC(1, } ); |
|
} |
|
GLSLC(0, } ); |
|
|
|
RET(spv->compile_shader(spv, avctx, shd, &spv_data, &spv_len, "main", |
|
&spv_opaque)); |
|
RET(ff_vk_shader_create(vkctx, shd, spv_data, spv_len, "main")); |
|
|
|
RET(ff_vk_init_compute_pipeline(vkctx, &s->pl, shd)); |
|
RET(ff_vk_exec_pipeline_register(vkctx, &s->e, &s->pl)); |
|
|
|
s->initialized = 1; |
|
|
|
fail: |
|
if (spv_opaque) |
|
spv->free_shader(spv, &spv_opaque); |
|
if (spv) |
|
spv->uninit(&spv); |
|
|
|
return err; |
|
} |
|
|
|
static int blend_frame(FFFrameSync *fs) |
|
{ |
|
int err; |
|
AVFilterContext *avctx = fs->parent; |
|
BlendVulkanContext *s = avctx->priv; |
|
AVFilterLink *outlink = avctx->outputs[0]; |
|
AVFrame *top, *bottom, *out; |
|
|
|
out = ff_get_video_buffer(outlink, outlink->w, outlink->h); |
|
if (!out) { |
|
err = AVERROR(ENOMEM); |
|
goto fail; |
|
} |
|
|
|
RET(ff_framesync_get_frame(fs, IN_TOP, &top, 0)); |
|
RET(ff_framesync_get_frame(fs, IN_BOTTOM, &bottom, 0)); |
|
|
|
RET(av_frame_copy_props(out, top)); |
|
|
|
if (!s->initialized) { |
|
AVHWFramesContext *top_fc = (AVHWFramesContext*)top->hw_frames_ctx->data; |
|
AVHWFramesContext *bottom_fc = (AVHWFramesContext*)bottom->hw_frames_ctx->data; |
|
if (top_fc->sw_format != bottom_fc->sw_format) { |
|
av_log(avctx, AV_LOG_ERROR, |
|
"Currently the sw format of the bottom video need to match the top!\n"); |
|
err = AVERROR(EINVAL); |
|
goto fail; |
|
} |
|
RET(init_filter(avctx)); |
|
} |
|
|
|
RET(ff_vk_filter_process_Nin(&s->vkctx, &s->e, &s->pl, |
|
out, (AVFrame *[]){ top, bottom }, 2, |
|
s->sampler, NULL, 0)); |
|
|
|
return ff_filter_frame(outlink, out); |
|
|
|
fail: |
|
av_frame_free(&out); |
|
return err; |
|
} |
|
|
|
static av_cold int init(AVFilterContext *avctx) |
|
{ |
|
BlendVulkanContext *s = avctx->priv; |
|
|
|
s->fs.on_event = blend_frame; |
|
|
|
return ff_vk_filter_init(avctx); |
|
} |
|
|
|
static av_cold void uninit(AVFilterContext *avctx) |
|
{ |
|
BlendVulkanContext *s = avctx->priv; |
|
FFVulkanContext *vkctx = &s->vkctx; |
|
FFVulkanFunctions *vk = &vkctx->vkfn; |
|
|
|
ff_vk_exec_pool_free(vkctx, &s->e); |
|
ff_vk_pipeline_free(vkctx, &s->pl); |
|
ff_vk_shader_free(vkctx, &s->shd); |
|
|
|
if (s->sampler) |
|
vk->DestroySampler(vkctx->hwctx->act_dev, s->sampler, |
|
vkctx->hwctx->alloc); |
|
|
|
ff_vk_uninit(&s->vkctx); |
|
ff_framesync_uninit(&s->fs); |
|
|
|
s->initialized = 0; |
|
} |
|
|
|
static int config_props_output(AVFilterLink *outlink) |
|
{ |
|
int err; |
|
AVFilterContext *avctx = outlink->src; |
|
BlendVulkanContext *s = avctx->priv; |
|
AVFilterLink *toplink = avctx->inputs[IN_TOP]; |
|
AVFilterLink *bottomlink = avctx->inputs[IN_BOTTOM]; |
|
|
|
if (toplink->w != bottomlink->w || toplink->h != bottomlink->h) { |
|
av_log(avctx, AV_LOG_ERROR, "First input link %s parameters " |
|
"(size %dx%d) do not match the corresponding " |
|
"second input link %s parameters (size %dx%d)\n", |
|
avctx->input_pads[IN_TOP].name, toplink->w, toplink->h, |
|
avctx->input_pads[IN_BOTTOM].name, bottomlink->w, bottomlink->h); |
|
return AVERROR(EINVAL); |
|
} |
|
|
|
outlink->sample_aspect_ratio = toplink->sample_aspect_ratio; |
|
outlink->frame_rate = toplink->frame_rate; |
|
|
|
RET(ff_vk_filter_config_output(outlink)); |
|
|
|
RET(ff_framesync_init_dualinput(&s->fs, avctx)); |
|
|
|
RET(ff_framesync_configure(&s->fs)); |
|
outlink->time_base = s->fs.time_base; |
|
|
|
RET(config_params(avctx)); |
|
|
|
fail: |
|
return err; |
|
} |
|
|
|
static int activate(AVFilterContext *avctx) |
|
{ |
|
BlendVulkanContext *s = avctx->priv; |
|
return ff_framesync_activate(&s->fs); |
|
} |
|
|
|
#define OFFSET(x) offsetof(BlendVulkanContext, x) |
|
#define FLAGS (AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM) |
|
|
|
static const AVOption blend_vulkan_options[] = { |
|
{ "c0_mode", "set component #0 blend mode", OFFSET(params[0].mode), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, BLEND_NB - 1, FLAGS, "mode" }, |
|
{ "c1_mode", "set component #1 blend mode", OFFSET(params[1].mode), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, BLEND_NB - 1, FLAGS, "mode" }, |
|
{ "c2_mode", "set component #2 blend mode", OFFSET(params[2].mode), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, BLEND_NB - 1, FLAGS, "mode" }, |
|
{ "c3_mode", "set component #3 blend mode", OFFSET(params[3].mode), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, BLEND_NB - 1, FLAGS, "mode" }, |
|
{ "all_mode", "set blend mode for all components", OFFSET(all_mode), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, BLEND_NB - 1, FLAGS, "mode" }, |
|
{ "normal", "", 0, AV_OPT_TYPE_CONST, { .i64 = BLEND_NORMAL }, 0, 0, FLAGS, "mode" }, |
|
{ "multiply", "", 0, AV_OPT_TYPE_CONST, { .i64 = BLEND_MULTIPLY }, 0, 0, FLAGS, "mode" }, |
|
|
|
{ "c0_opacity", "set color component #0 opacity", OFFSET(params[0].opacity), AV_OPT_TYPE_DOUBLE, { .dbl = 1 }, 0, 1, FLAGS }, |
|
{ "c1_opacity", "set color component #1 opacity", OFFSET(params[1].opacity), AV_OPT_TYPE_DOUBLE, { .dbl = 1 }, 0, 1, FLAGS }, |
|
{ "c2_opacity", "set color component #2 opacity", OFFSET(params[2].opacity), AV_OPT_TYPE_DOUBLE, { .dbl = 1 }, 0, 1, FLAGS }, |
|
{ "c3_opacity", "set color component #3 opacity", OFFSET(params[3].opacity), AV_OPT_TYPE_DOUBLE, { .dbl = 1 }, 0, 1, FLAGS }, |
|
{ "all_opacity", "set opacity for all color components", OFFSET(all_opacity), AV_OPT_TYPE_DOUBLE, { .dbl = 1 }, 0, 1, FLAGS }, |
|
|
|
{ NULL } |
|
}; |
|
|
|
AVFILTER_DEFINE_CLASS(blend_vulkan); |
|
|
|
static const AVFilterPad blend_vulkan_inputs[] = { |
|
{ |
|
.name = "top", |
|
.type = AVMEDIA_TYPE_VIDEO, |
|
.config_props = &ff_vk_filter_config_input, |
|
}, |
|
{ |
|
.name = "bottom", |
|
.type = AVMEDIA_TYPE_VIDEO, |
|
.config_props = &ff_vk_filter_config_input, |
|
}, |
|
}; |
|
|
|
|
|
static const AVFilterPad blend_vulkan_outputs[] = { |
|
{ |
|
.name = "default", |
|
.type = AVMEDIA_TYPE_VIDEO, |
|
.config_props = &config_props_output, |
|
} |
|
}; |
|
|
|
const AVFilter ff_vf_blend_vulkan = { |
|
.name = "blend_vulkan", |
|
.description = NULL_IF_CONFIG_SMALL("Blend two video frames in Vulkan"), |
|
.priv_size = sizeof(BlendVulkanContext), |
|
.init = &init, |
|
.uninit = &uninit, |
|
.activate = &activate, |
|
FILTER_INPUTS(blend_vulkan_inputs), |
|
FILTER_OUTPUTS(blend_vulkan_outputs), |
|
FILTER_SINGLE_PIXFMT(AV_PIX_FMT_VULKAN), |
|
.priv_class = &blend_vulkan_class, |
|
.flags_internal = FF_FILTER_FLAG_HWFRAME_AWARE, |
|
.flags = AVFILTER_FLAG_HWDEVICE, |
|
.process_command = &process_command, |
|
}; |
|
|