1 /*
2 * Copyright (C) 2013 Wei Gao <weigao@multicorewareinc.com>
3 * Copyright (C) 2013 Lenny Wang
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 /**
23 * @file
24 * unsharp input video
25 */
26
30
32 #define ROUND_TO_16(a) (((((a) - 1)/16)+1)*16)
33
35 {
36 int i;
37 for (i = 0; i <
len; i++) {
38 dst[i] = counter1[i] + counter2[i];
39 }
40 }
41
43 {
45 int counter_size = sizeof(uint32_t) * (2 * step + 1);
46 uint32_t *temp1_counter, *temp2_counter, **counter;
48 if (!temp1_counter) {
51 }
53 if (!temp2_counter) {
56 }
58 if (!counter) {
61 }
62 for (i = 0; i < 2 * step + 1; i++) {
64 if (!counter[i]) {
67 }
68 }
69 for (i = 0; i < 2 * step + 1; i++) {
70 memset(temp1_counter, 0, counter_size);
71 temp1_counter[i] = 1;
72 for (z = 0; z < step * 2; z += 2) {
74 memcpy(counter[z], temp1_counter, counter_size);
76 memcpy(counter[z + 1], temp2_counter, counter_size);
77 }
78 }
79 memcpy(mask, temp1_counter, counter_size);
83 for (i = 0; i < 2 * step + 1; i++) {
85 }
88 }
89
91 {
93 uint32_t *mask_x, *mask_y;
94 size_t size_mask_x = sizeof(uint32_t) * (2 * step_x + 1);
95 size_t size_mask_y = sizeof(uint32_t) * (2 * step_y + 1);
97 if (!mask_x) {
100 }
102 if (!mask_y) {
105 }
106
108 if (ret < 0)
111 if (ret < 0)
113
119
121 }
122
124 {
125 cl_mem masks[4];
127 int i,
ret = 0, step_x[2], step_y[2];
128
130 mask_matrix[0] = unsharp->opencl_ctx.cl_luma_mask;
131 mask_matrix[1] = unsharp->opencl_ctx.cl_chroma_mask;
132 masks[0] = unsharp->opencl_ctx.cl_luma_mask_x;
133 masks[1] = unsharp->opencl_ctx.cl_luma_mask_y;
134 masks[2] = unsharp->opencl_ctx.cl_chroma_mask_x;
135 masks[3] = unsharp->opencl_ctx.cl_chroma_mask_y;
140
141 /* use default kernel if any matrix dim larger than 8 due to limited local mem size */
142 if (step_x[0]>8 || step_x[1]>8 || step_y[0]>8 || step_y[1]>8)
143 unsharp->opencl_ctx.use_fast_kernels = 0;
144 else
145 unsharp->opencl_ctx.use_fast_kernels = 1;
146
147 if (!masks[0] || !masks[1] || !masks[2] || !masks[3]) {
150 }
151 if (!mask_matrix[0] || !mask_matrix[1]) {
154 }
155 for (i = 0; i < 2; i++) {
157 if (ret < 0)
159 }
161 }
162
164 {
168 cl_int status;
175 size_t globalWorkSize1d = width * height + 2 * ch * cw;
176 size_t globalWorkSize2dLuma[2];
177 size_t globalWorkSize2dChroma[2];
178 size_t localWorkSize2d[2] = {16, 16};
179
180 if (unsharp->opencl_ctx.use_fast_kernels) {
181 globalWorkSize2dLuma[0] = (size_t)
ROUND_TO_16(width);
182 globalWorkSize2dLuma[1] = (size_t)
ROUND_TO_16(height);
183 globalWorkSize2dChroma[0] = (size_t)
ROUND_TO_16(cw);
184 globalWorkSize2dChroma[1] = (size_t)(2*
ROUND_TO_16(ch));
185
187 kernel1.
kernel = unsharp->opencl_ctx.kernel_luma;
201 if (ret < 0)
203
205 kernel2.
kernel = unsharp->opencl_ctx.kernel_chroma;
223 if (ret < 0)
225 status = clEnqueueNDRangeKernel(unsharp->opencl_ctx.command_queue,
226 unsharp->opencl_ctx.kernel_luma, 2,
NULL,
227 globalWorkSize2dLuma, localWorkSize2d, 0,
NULL,
NULL);
228 status |=clEnqueueNDRangeKernel(unsharp->opencl_ctx.command_queue,
229 unsharp->opencl_ctx.kernel_chroma, 2,
NULL,
230 globalWorkSize2dChroma, localWorkSize2d, 0,
NULL,
NULL);
231 if (status != CL_SUCCESS) {
234 }
235 } else { /* use default kernel */
237 kernel1.
kernel = unsharp->opencl_ctx.kernel_default;
238
263 if (ret < 0)
265 status = clEnqueueNDRangeKernel(unsharp->opencl_ctx.command_queue,
266 unsharp->opencl_ctx.kernel_default, 1,
NULL,
268 if (status != CL_SUCCESS) {
271 }
272 }
273 //blocking map is suffficient, no need for clFinish
274 //clFinish(unsharp->opencl_ctx.command_queue);
275
277 unsharp->opencl_ctx.plane_num, unsharp->opencl_ctx.cl_outbuf,
278 unsharp->opencl_ctx.cl_outbuf_size);
279 }
280
282 {
284 char build_opts[96];
287 if (ret < 0)
291 CL_MEM_READ_ONLY,
NULL);
292 if (ret < 0)
296 CL_MEM_READ_ONLY,
NULL);
297 // separable filters
298 if (ret < 0)
301 sizeof(uint32_t) * (2 * unsharp->
luma.
steps_x + 1),
302 CL_MEM_READ_ONLY,
NULL);
303 if (ret < 0)
306 sizeof(uint32_t) * (2 * unsharp->
luma.
steps_y + 1),
307 CL_MEM_READ_ONLY,
NULL);
308 if (ret < 0)
312 CL_MEM_READ_ONLY,
NULL);
313 if (ret < 0)
317 CL_MEM_READ_ONLY,
NULL);
318 if (ret < 0)
321 if (ret < 0)
323 unsharp->opencl_ctx.plane_num =
PLANE_NUM;
325 if (!unsharp->opencl_ctx.command_queue) {
326 av_log(ctx,
AV_LOG_ERROR,
"Unable to get OpenCL command queue in filter 'unsharp'\n");
328 }
329 snprintf(build_opts, 96,
"-D LU_RADIUS_X=%d -D LU_RADIUS_Y=%d -D CH_RADIUS_X=%d -D CH_RADIUS_Y=%d",
332 if (!unsharp->opencl_ctx.program) {
335 }
336 if (unsharp->opencl_ctx.use_fast_kernels) {
337 if (!unsharp->opencl_ctx.kernel_luma) {
338 unsharp->opencl_ctx.kernel_luma = clCreateKernel(unsharp->opencl_ctx.program, "unsharp_luma", &ret);
339 if (ret != CL_SUCCESS) {
342 }
343 }
344 if (!unsharp->opencl_ctx.kernel_chroma) {
345 unsharp->opencl_ctx.kernel_chroma = clCreateKernel(unsharp->opencl_ctx.program, "unsharp_chroma", &ret);
346 if (ret < 0) {
349 }
350 }
351 }
352 else {
353 if (!unsharp->opencl_ctx.kernel_default) {
354 unsharp->opencl_ctx.kernel_default = clCreateKernel(unsharp->opencl_ctx.program, "unsharp_default", &ret);
355 if (ret < 0) {
358 }
359 }
360 }
362 }
363
365 {
375 clReleaseKernel(unsharp->opencl_ctx.kernel_default);
376 clReleaseKernel(unsharp->opencl_ctx.kernel_luma);
377 clReleaseKernel(unsharp->opencl_ctx.kernel_chroma);
378 clReleaseProgram(unsharp->opencl_ctx.program);
379 unsharp->opencl_ctx.command_queue =
NULL;
381 }
382
384 {
389
390 if ((!unsharp->opencl_ctx.cl_inbuf) || (!unsharp->opencl_ctx.cl_outbuf)) {
391 unsharp->opencl_ctx.in_plane_size[0] = (in->
linesize[0] * in->
height);
392 unsharp->opencl_ctx.in_plane_size[1] = (in->
linesize[1] * ch);
393 unsharp->opencl_ctx.in_plane_size[2] = (in->
linesize[2] * ch);
394 unsharp->opencl_ctx.out_plane_size[0] = (out->
linesize[0] * out->
height);
395 unsharp->opencl_ctx.out_plane_size[1] = (out->
linesize[1] * ch);
396 unsharp->opencl_ctx.out_plane_size[2] = (out->
linesize[2] * ch);
397 unsharp->opencl_ctx.cl_inbuf_size = unsharp->opencl_ctx.in_plane_size[0] +
398 unsharp->opencl_ctx.in_plane_size[1] +
399 unsharp->opencl_ctx.in_plane_size[2];
400 unsharp->opencl_ctx.cl_outbuf_size = unsharp->opencl_ctx.out_plane_size[0] +
401 unsharp->opencl_ctx.out_plane_size[1] +
402 unsharp->opencl_ctx.out_plane_size[2];
403 if (!unsharp->opencl_ctx.cl_inbuf) {
405 unsharp->opencl_ctx.cl_inbuf_size,
406 CL_MEM_READ_ONLY,
NULL);
407 if (ret < 0)
409 }
410 if (!unsharp->opencl_ctx.cl_outbuf) {
412 unsharp->opencl_ctx.cl_outbuf_size,
413 CL_MEM_READ_WRITE,
NULL);
414 if (ret < 0)
416 }
417 }
419 unsharp->opencl_ctx.cl_inbuf_size,
420 0, in->
data, unsharp->opencl_ctx.in_plane_size,
421 unsharp->opencl_ctx.plane_num);
422 }