blob: b4e992ac0bca108c6eccb7ff5a5a561b4888b802 [file] [log] [blame]
/*
* cl_blc_handler.cpp - CL black level correction handler
*
* Copyright (c) 2015 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Author: Shincy Tu <shincy.tu@intel.com>
*/
#include "xcam_utils.h"
#include "cl_blc_handler.h"
namespace XCam {
CLBlcImageKernel::CLBlcImageKernel (SmartPtr<CLContext> &context)
: CLImageKernel (context, "kernel_blc")
{
}
XCamReturn
CLBlcImageKernel::prepare_arguments (
SmartPtr<DrmBoBuffer> &input, SmartPtr<DrmBoBuffer> &output,
CLArgument args[], uint32_t &arg_count,
CLWorkSize &work_size)
{
SmartPtr<CLContext> context = get_context ();
const VideoBufferInfo & video_info = input->get_video_info ();
cl_libva_image image_info;
uint32_t channel_bits = XCAM_ALIGN_UP (video_info.color_bits, 8);
xcam_mem_clear (&image_info);
image_info.fmt.image_channel_order = CL_R;
if (channel_bits == 8)
image_info.fmt.image_channel_data_type = CL_UNSIGNED_INT8;
else if (channel_bits == 16)
image_info.fmt.image_channel_data_type = CL_UNSIGNED_INT16;
image_info.offset = 0;
image_info.width = video_info.width;
image_info.height = (video_info.size / video_info.strides[0]) / 4 * 4;
image_info.row_pitch = video_info.strides[0];
_image_in = new CLVaImage (context, input, &image_info);
_image_out = new CLVaImage (context, output, &image_info);
XCAM_ASSERT (_image_in->is_valid () && _image_out->is_valid ());
XCAM_FAIL_RETURN (
WARNING,
_image_in->is_valid () && _image_out->is_valid (),
XCAM_RETURN_ERROR_MEM,
"cl image kernel(%s) in/out memory not available", get_kernel_name ());
_blc_config.level_b = (cl_float)XCAM_CL_BLACK_LEVEL / XCAM_CL_10BIT_NOR;
_blc_config.level_gr = (cl_float)XCAM_CL_BLACK_LEVEL / XCAM_CL_10BIT_NOR;
_blc_config.level_gb = (cl_float)XCAM_CL_BLACK_LEVEL / XCAM_CL_10BIT_NOR;
_blc_config.level_r = (cl_float)XCAM_CL_BLACK_LEVEL / XCAM_CL_10BIT_NOR;
//set args;
args[0].arg_adress = &_image_in->get_mem_id ();
args[0].arg_size = sizeof (cl_mem);
args[1].arg_adress = &_image_out->get_mem_id ();
args[1].arg_size = sizeof (cl_mem);
args[2].arg_adress = &_blc_config;
args[2].arg_size = sizeof (BLCConfig);
arg_count = 3;
work_size.dim = XCAM_DEFAULT_IMAGE_DIM;
work_size.global[0] = image_info.width / 2;
work_size.global[1] = image_info.height / 2;
work_size.local[0] = 8;
work_size.local[1] = 4;
return XCAM_RETURN_NO_ERROR;
}
SmartPtr<CLImageHandler>
create_cl_blc_image_handler (SmartPtr<CLContext> &context)
{
SmartPtr<CLImageHandler> blc_handler;
SmartPtr<CLImageKernel> blc_kernel;
XCamReturn ret = XCAM_RETURN_NO_ERROR;
blc_kernel = new CLBlcImageKernel (context);
{
XCAM_CL_KERNEL_FUNC_SOURCE_BEGIN(kernel_blc)
#include "kernel_blc.cl"
XCAM_CL_KERNEL_FUNC_END;
ret = blc_kernel->load_from_source (kernel_blc_body, strlen (kernel_blc_body));
XCAM_FAIL_RETURN (
WARNING,
ret == XCAM_RETURN_NO_ERROR,
NULL,
"CL image handler(%s) load source failed", blc_kernel->get_kernel_name());
}
XCAM_ASSERT (blc_kernel->is_valid ());
blc_handler = new CLImageHandler ("cl_handler_blc");
blc_handler->add_kernel (blc_kernel);
return blc_handler;
}
}