Home
last modified time | relevance | path

Searched refs:ocf (Results 1 – 16 of 16) sorted by relevance

/third_party/ffmpeg/libavfilter/
Dvf_program_opencl.c32 OpenCLFilterContext ocf; member
60 ctx->command_queue = clCreateCommandQueue(ctx->ocf.hwctx->context, in program_opencl_load()
61 ctx->ocf.hwctx->device_id, in program_opencl_load()
69 ctx->kernel = clCreateKernel(ctx->ocf.program, ctx->kernel_name, &cle); in program_opencl_load()
259 ctx->ocf.output_width = ctx->width; in program_opencl_init()
260 ctx->ocf.output_height = ctx->height; in program_opencl_init()
263 if (!ctx->ocf.output_width || !ctx->ocf.output_height) { in program_opencl_init()
270 ctx->ocf.output_format = ctx->source_format; in program_opencl_init()
Dvf_nlmeans_opencl.c53 OpenCLFilterContext ocf; member
105 ctx->command_queue = clCreateCommandQueue(ctx->ocf.hwctx->context, in nlmeans_opencl_init()
106 ctx->ocf.hwctx->device_id, in nlmeans_opencl_init()
111 ctx->vert_kernel = clCreateKernel(ctx->ocf.program, in nlmeans_opencl_init()
116 ctx->horiz_kernel = clCreateKernel(ctx->ocf.program, in nlmeans_opencl_init()
121 ctx->accum_kernel = clCreateKernel(ctx->ocf.program, in nlmeans_opencl_init()
126 ctx->average_kernel = clCreateKernel(ctx->ocf.program, in nlmeans_opencl_init()
131 ctx->integral_img = clCreateBuffer(ctx->ocf.hwctx->context, 0, in nlmeans_opencl_init()
137 ctx->weight = clCreateBuffer(ctx->ocf.hwctx->context, 0, in nlmeans_opencl_init()
142 ctx->sum = clCreateBuffer(ctx->ocf.hwctx->context, 0, in nlmeans_opencl_init()
[all …]
Dvf_pad_opencl.c58 OpenCLFilterContext ocf; member
101 ctx->ocf.hwctx->context, in pad_opencl_init()
102 ctx->ocf.hwctx->device_id, in pad_opencl_init()
121 ctx->kernel_pad = clCreateKernel(ctx->ocf.program, "pad", &cle); in pad_opencl_init()
327 ctx->ocf.output_width = ctx->w; in pad_opencl_config_output()
329 ctx->ocf.output_width = avctx->inputs[0]->w; in pad_opencl_config_output()
333 ctx->ocf.output_height = ctx->h; in pad_opencl_config_output()
335 ctx->ocf.output_height = avctx->inputs[0]->h; in pad_opencl_config_output()
338 if (ctx->x + avctx->inputs[0]->w > ctx->ocf.output_width || in pad_opencl_config_output()
339 ctx->y + avctx->inputs[0]->h > ctx->ocf.output_height) { in pad_opencl_config_output()
Dvf_colorkey_opencl.c29 OpenCLFilterContext ocf; member
60 ctx->ocf.hwctx->context, in colorkey_opencl_init()
61 ctx->ocf.hwctx->device_id, in colorkey_opencl_init()
69 ctx->kernel_colorkey = clCreateKernel(ctx->ocf.program, "colorkey_blend", &cle); in colorkey_opencl_init()
72 ctx->kernel_colorkey = clCreateKernel(ctx->ocf.program, "colorkey", &cle); in colorkey_opencl_init()
Dvf_unsharp_opencl.c34 OpenCLFilterContext ocf; member
76 ctx->command_queue = clCreateCommandQueue(ctx->ocf.hwctx->context, in unsharp_opencl_init()
77 ctx->ocf.hwctx->device_id, in unsharp_opencl_init()
88 ctx->kernel = clCreateKernel(ctx->ocf.program, in unsharp_opencl_init()
116 desc = av_pix_fmt_desc_get(ctx->ocf.output_format); in unsharp_opencl_make_filter_params()
166 buffer = clCreateBuffer(ctx->ocf.hwctx->context, in unsharp_opencl_make_filter_params()
175 buffer = clCreateBuffer(ctx->ocf.hwctx->context, in unsharp_opencl_make_filter_params()
185 buffer = clCreateBuffer(ctx->ocf.hwctx->context, in unsharp_opencl_make_filter_params()
Dvf_transpose_opencl.c35 OpenCLFilterContext ocf; member
53 ctx->command_queue = clCreateCommandQueue(ctx->ocf.hwctx->context, in transpose_opencl_init()
54 ctx->ocf.hwctx->device_id, in transpose_opencl_init()
59 ctx->kernel = clCreateKernel(ctx->ocf.program, "transpose", &cle); in transpose_opencl_init()
106 s->ocf.output_width = inlink->h; in transpose_opencl_config_output()
107 s->ocf.output_height = inlink->w; in transpose_opencl_config_output()
Dvf_neighbor_opencl.c36 OpenCLFilterContext ocf; member
61 ctx->command_queue = clCreateCommandQueue(ctx->ocf.hwctx->context, in neighbor_opencl_init()
62 ctx->ocf.hwctx->device_id, in neighbor_opencl_init()
72 ctx->kernel = clCreateKernel(ctx->ocf.program, kernel_name, &cle); in neighbor_opencl_init()
105 buffer = clCreateBuffer(ctx->ocf.hwctx->context, in neighbor_opencl_make_filter_params()
Dvf_avgblur_opencl.c34 OpenCLFilterContext ocf; member
64 ctx->command_queue = clCreateCommandQueue(ctx->ocf.hwctx->context, in avgblur_opencl_init()
65 ctx->ocf.hwctx->device_id, in avgblur_opencl_init()
70 ctx->kernel_horiz = clCreateKernel(ctx->ocf.program,"avgblur_horiz", &cle); in avgblur_opencl_init()
74 ctx->kernel_vert = clCreateKernel(ctx->ocf.program,"avgblur_vert", &cle); in avgblur_opencl_init()
Dvf_overlay_opencl.c32 OpenCLFilterContext ocf; member
100 ctx->command_queue = clCreateCommandQueue(ctx->ocf.hwctx->context, in overlay_opencl_load()
101 ctx->ocf.hwctx->device_id, in overlay_opencl_load()
106 ctx->kernel = clCreateKernel(ctx->ocf.program, kernel, &cle); in overlay_opencl_load()
Dvf_convolution_opencl.c36 OpenCLFilterContext ocf; member
67 ctx->command_queue = clCreateCommandQueue(ctx->ocf.hwctx->context, in convolution_opencl_init()
68 ctx->ocf.hwctx->device_id, in convolution_opencl_init()
82 ctx->kernel = clCreateKernel(ctx->ocf.program, kernel_name, &cle); in convolution_opencl_init()
154 buffer = clCreateBuffer(ctx->ocf.hwctx->context, in convolution_opencl_make_filter_params()
Dvf_tonemap_opencl.c53 OpenCLFilterContext ocf; member
253 ctx->command_queue = clCreateCommandQueue(ctx->ocf.hwctx->context, in tonemap_opencl_init()
254 ctx->ocf.hwctx->device_id, in tonemap_opencl_init()
259 ctx->kernel = clCreateKernel(ctx->ocf.program, "tonemap", &cle); in tonemap_opencl_init()
263 clCreateBuffer(ctx->ocf.hwctx->context, 0, in tonemap_opencl_init()
298 s->ocf.output_format = s->format == AV_PIX_FMT_NONE ? AV_PIX_FMT_NV12 : s->format; in tonemap_opencl_config_output()
Dopencl.h94 ctx->kernel_ ## kernel_name = clCreateKernel(ctx->ocf.program, #kernel_name, &cle); \
199 ctx->ocf.hwctx->context, \
Dvf_xfade_opencl.c46 OpenCLFilterContext ocf; member
102 ctx->command_queue = clCreateCommandQueue(ctx->ocf.hwctx->context, in xfade_opencl_load()
103 ctx->ocf.hwctx->device_id, in xfade_opencl_load()
124 ctx->kernel = clCreateKernel(ctx->ocf.program, kernel_name, &cle); in xfade_opencl_load()
Dvf_deshake_opencl.c201 OpenCLFilterContext ocf; member
1280 ctx->ocf.hwctx->context, in deshake_opencl_init()
1281 ctx->ocf.hwctx->device_id, in deshake_opencl_init()
1315 ctx->ocf.hwctx->context, in deshake_opencl_init()
/third_party/icu/icu4c/source/test/intltest/
Dloctest.cpp1408 UChar ocf = 0x00f4; in Test4139940() local
1410 if (str.indexOf(oda) < 0 || str.indexOf(ocf) >= 0) { in Test4139940()
1414 str.indexOf(oda), str.indexOf(ocf)); in Test4139940()
/third_party/astc-encoder/Test/Images/HDRIHaven/HDR-RGB/
Dhdr-rgb-riverwalk.hdr3328 …Ӛ�ј��ف�pv������aqQbm�[�}Nj���描������������������ԍ��������ԍ������耶���|ZS>M��ocf�fpo�j���������\R�Js…