int ff_opencl_deshake_init(AVFilterContext *ctx) { int ret = 0; DeshakeContext *deshake = ctx->priv; ret = av_opencl_init(NULL); if (ret < 0) return ret; deshake->opencl_ctx.matrix_size = MATRIX_SIZE; deshake->opencl_ctx.plane_num = PLANE_NUM; ret = av_opencl_buffer_create(&deshake->opencl_ctx.cl_matrix_y, deshake->opencl_ctx.matrix_size*sizeof(cl_float), CL_MEM_READ_ONLY, NULL); if (ret < 0) return ret; ret = av_opencl_buffer_create(&deshake->opencl_ctx.cl_matrix_uv, deshake->opencl_ctx.matrix_size*sizeof(cl_float), CL_MEM_READ_ONLY, NULL); if (ret < 0) return ret; if (!deshake->opencl_ctx.kernel_env.kernel) { ret = av_opencl_create_kernel(&deshake->opencl_ctx.kernel_env, "avfilter_transform"); if (ret < 0) { av_log(ctx, AV_LOG_ERROR, "OpenCL failed to create kernel for name 'avfilter_transform'\n"); return ret; } } return ret; }
int ff_opencl_deshake_process_inout_buf(AVFilterContext *ctx, AVFrame *in, AVFrame *out) { int ret = 0; AVFilterLink *link = ctx->inputs[0]; DeshakeContext *deshake = ctx->priv; const int hshift = av_pix_fmt_desc_get(link->format)->log2_chroma_h; int chroma_height = FF_CEIL_RSHIFT(link->h, hshift); if ((!deshake->opencl_ctx.cl_inbuf) || (!deshake->opencl_ctx.cl_outbuf)) { deshake->opencl_ctx.in_plane_size[0] = (in->linesize[0] * in->height); deshake->opencl_ctx.in_plane_size[1] = (in->linesize[1] * chroma_height); deshake->opencl_ctx.in_plane_size[2] = (in->linesize[2] * chroma_height); deshake->opencl_ctx.out_plane_size[0] = (out->linesize[0] * out->height); deshake->opencl_ctx.out_plane_size[1] = (out->linesize[1] * chroma_height); deshake->opencl_ctx.out_plane_size[2] = (out->linesize[2] * chroma_height); deshake->opencl_ctx.cl_inbuf_size = deshake->opencl_ctx.in_plane_size[0] + deshake->opencl_ctx.in_plane_size[1] + deshake->opencl_ctx.in_plane_size[2]; deshake->opencl_ctx.cl_outbuf_size = deshake->opencl_ctx.out_plane_size[0] + deshake->opencl_ctx.out_plane_size[1] + deshake->opencl_ctx.out_plane_size[2]; if (!deshake->opencl_ctx.cl_inbuf) { ret = av_opencl_buffer_create(&deshake->opencl_ctx.cl_inbuf, deshake->opencl_ctx.cl_inbuf_size, CL_MEM_READ_ONLY, NULL); if (ret < 0) return ret; } if (!deshake->opencl_ctx.cl_outbuf) { ret = av_opencl_buffer_create(&deshake->opencl_ctx.cl_outbuf, deshake->opencl_ctx.cl_outbuf_size, CL_MEM_READ_WRITE, NULL); if (ret < 0) return ret; } } ret = av_opencl_buffer_write_image(deshake->opencl_ctx.cl_inbuf, deshake->opencl_ctx.cl_inbuf_size, 0, in->data,deshake->opencl_ctx.in_plane_size, deshake->opencl_ctx.plane_num); if(ret < 0) return ret; return ret; }
int ff_opencl_unsharp_process_inout_buf(AVFilterContext *ctx, AVFrame *in, AVFrame *out) { int ret = 0; AVFilterLink *link = ctx->inputs[0]; UnsharpContext *unsharp = ctx->priv; int ch = FF_CEIL_RSHIFT(link->h, unsharp->vsub); if ((!unsharp->opencl_ctx.cl_inbuf) || (!unsharp->opencl_ctx.cl_outbuf)) { unsharp->opencl_ctx.in_plane_size[0] = (in->linesize[0] * in->height); unsharp->opencl_ctx.in_plane_size[1] = (in->linesize[1] * ch); unsharp->opencl_ctx.in_plane_size[2] = (in->linesize[2] * ch); unsharp->opencl_ctx.out_plane_size[0] = (out->linesize[0] * out->height); unsharp->opencl_ctx.out_plane_size[1] = (out->linesize[1] * ch); unsharp->opencl_ctx.out_plane_size[2] = (out->linesize[2] * ch); unsharp->opencl_ctx.cl_inbuf_size = unsharp->opencl_ctx.in_plane_size[0] + unsharp->opencl_ctx.in_plane_size[1] + unsharp->opencl_ctx.in_plane_size[2]; unsharp->opencl_ctx.cl_outbuf_size = unsharp->opencl_ctx.out_plane_size[0] + unsharp->opencl_ctx.out_plane_size[1] + unsharp->opencl_ctx.out_plane_size[2]; if (!unsharp->opencl_ctx.cl_inbuf) { ret = av_opencl_buffer_create(&unsharp->opencl_ctx.cl_inbuf, unsharp->opencl_ctx.cl_inbuf_size, CL_MEM_READ_ONLY, NULL); if (ret < 0) return ret; } if (!unsharp->opencl_ctx.cl_outbuf) { ret = av_opencl_buffer_create(&unsharp->opencl_ctx.cl_outbuf, unsharp->opencl_ctx.cl_outbuf_size, CL_MEM_READ_WRITE, NULL); if (ret < 0) return ret; } } return av_opencl_buffer_write_image(unsharp->opencl_ctx.cl_inbuf, unsharp->opencl_ctx.cl_inbuf_size, 0, in->data, unsharp->opencl_ctx.in_plane_size, unsharp->opencl_ctx.plane_num); }
int ff_opencl_deshake_init(AVFilterContext *ctx) { int ret = 0; DeshakeContext *deshake = ctx->priv; ret = av_opencl_init(NULL); if (ret < 0) return ret; deshake->opencl_ctx.matrix_size = MATRIX_SIZE; deshake->opencl_ctx.plane_num = PLANE_NUM; ret = av_opencl_buffer_create(&deshake->opencl_ctx.cl_matrix_y, deshake->opencl_ctx.matrix_size*sizeof(cl_float), CL_MEM_READ_ONLY, NULL); if (ret < 0) return ret; ret = av_opencl_buffer_create(&deshake->opencl_ctx.cl_matrix_uv, deshake->opencl_ctx.matrix_size*sizeof(cl_float), CL_MEM_READ_ONLY, NULL); if (ret < 0) return ret; deshake->opencl_ctx.command_queue = av_opencl_get_command_queue(); if (!deshake->opencl_ctx.command_queue) { av_log(ctx, AV_LOG_ERROR, "Unable to get OpenCL command queue in filter 'deshake'\n"); return AVERROR(EINVAL); } deshake->opencl_ctx.program = av_opencl_compile("avfilter_transform", NULL); if (!deshake->opencl_ctx.program) { av_log(ctx, AV_LOG_ERROR, "OpenCL failed to compile program 'avfilter_transform'\n"); return AVERROR(EINVAL); } if (!deshake->opencl_ctx.kernel) { deshake->opencl_ctx.kernel = clCreateKernel(deshake->opencl_ctx.program, "avfilter_transform", &ret); if (ret != CL_SUCCESS) { av_log(ctx, AV_LOG_ERROR, "OpenCL failed to create kernel 'avfilter_transform'\n"); return AVERROR(EINVAL); } } return ret; }
int ff_opencl_unsharp_init(AVFilterContext *ctx) { int ret = 0; char build_opts[96]; UnsharpContext *unsharp = ctx->priv; ret = av_opencl_init(NULL); if (ret < 0) return ret; ret = av_opencl_buffer_create(&unsharp->opencl_ctx.cl_luma_mask, sizeof(uint32_t) * (2 * unsharp->luma.steps_x + 1) * (2 * unsharp->luma.steps_y + 1), CL_MEM_READ_ONLY, NULL); if (ret < 0) return ret; ret = av_opencl_buffer_create(&unsharp->opencl_ctx.cl_chroma_mask, sizeof(uint32_t) * (2 * unsharp->chroma.steps_x + 1) * (2 * unsharp->chroma.steps_y + 1), CL_MEM_READ_ONLY, NULL); if (ret < 0) return ret; ret = generate_mask(ctx); if (ret < 0) return ret; unsharp->opencl_ctx.plane_num = PLANE_NUM; unsharp->opencl_ctx.command_queue = av_opencl_get_command_queue(); if (!unsharp->opencl_ctx.command_queue) { av_log(ctx, AV_LOG_ERROR, "Unable to get OpenCL command queue in filter 'unsharp'\n"); return AVERROR(EINVAL); } snprintf(build_opts, 96, "-D LU_RADIUS_X=%d -D LU_RADIUS_Y=%d -D CH_RADIUS_X=%d -D CH_RADIUS_Y=%d", 2*unsharp->luma.steps_x+1, 2*unsharp->luma.steps_y+1, 2*unsharp->chroma.steps_x+1, 2*unsharp->chroma.steps_y+1); unsharp->opencl_ctx.program = av_opencl_compile("unsharp", build_opts); if (!unsharp->opencl_ctx.program) { av_log(ctx, AV_LOG_ERROR, "OpenCL failed to compile program 'unsharp'\n"); return AVERROR(EINVAL); } if (unsharp->opencl_ctx.use_fast_kernels) { if (!unsharp->opencl_ctx.kernel_luma) { unsharp->opencl_ctx.kernel_luma = clCreateKernel(unsharp->opencl_ctx.program, "unsharp_luma", &ret); if (ret != CL_SUCCESS) { av_log(ctx, AV_LOG_ERROR, "OpenCL failed to create kernel 'unsharp_luma'\n"); return ret; } } if (!unsharp->opencl_ctx.kernel_chroma) { unsharp->opencl_ctx.kernel_chroma = clCreateKernel(unsharp->opencl_ctx.program, "unsharp_chroma", &ret); if (ret < 0) { av_log(ctx, AV_LOG_ERROR, "OpenCL failed to create kernel 'unsharp_chroma'\n"); return ret; } } } else { if (!unsharp->opencl_ctx.kernel_default) { unsharp->opencl_ctx.kernel_default = clCreateKernel(unsharp->opencl_ctx.program, "unsharp_default", &ret); if (ret < 0) { av_log(ctx, AV_LOG_ERROR, "OpenCL failed to create kernel 'unsharp_default'\n"); return ret; } } } return ret; }