blob: fc0cdaab0cdf21b9e43016f0b157f2f61fa57485 [file] [log] [blame]
/*
* cl_hdr_handler.cpp - CL hdr 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: wangfei <feix.w.wang@intel.com>
*/
#include "xcam_utils.h"
#include "cl_hdr_handler.h"
namespace XCam {
CLHdrImageKernel::CLHdrImageKernel (SmartPtr<CLContext> &context)
: CLImageKernel (context, "kernel_hdr")
{
}
XCamReturn
CLHdrImageKernel::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_UNORM_INT8;
else if (channel_bits == 16)
image_info.fmt.image_channel_data_type = CL_UNORM_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 ());
//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);
arg_count = 2;
work_size.dim = XCAM_DEFAULT_IMAGE_DIM;
work_size.global[0] = image_info.row_pitch;
work_size.global[1] = image_info.height;
work_size.local[0] = 8;
work_size.local[1] = 4;
return XCAM_RETURN_NO_ERROR;
}
XCamReturn
CLHdrImageKernel::post_execute ()
{
return CLImageKernel::post_execute ();
}
SmartPtr<CLImageHandler>
create_cl_hdr_image_handler (SmartPtr<CLContext> &context)
{
SmartPtr<CLImageHandler> hdr_handler;
SmartPtr<CLImageKernel> hdr_kernel;
XCamReturn ret = XCAM_RETURN_NO_ERROR;
hdr_kernel = new CLHdrImageKernel (context);
{
XCAM_CL_KERNEL_FUNC_SOURCE_BEGIN(kernel_hdr)
#include "kernel_hdr.cl"
XCAM_CL_KERNEL_FUNC_END;
ret = hdr_kernel->load_from_source (kernel_hdr_body, strlen (kernel_hdr_body));
XCAM_FAIL_RETURN (
WARNING,
ret == XCAM_RETURN_NO_ERROR,
NULL,
"CL image handler(%s) load source failed", hdr_kernel->get_kernel_name());
}
XCAM_ASSERT (hdr_kernel->is_valid ());
hdr_handler = new CLImageHandler ("cl_handler_hdr");
hdr_handler->add_kernel (hdr_kernel);
return hdr_handler;
}
};