blob: 85bba382513b68620dea7944aa110582f61f0a40 [file] [log] [blame]
wangfei11987462015-03-12 15:02:57 +08001/*
2 * cl_hdr_handler.h - CL hdr handler
3 *
4 * Copyright (c) 2015 Intel Corporation
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *
18 * Author: wangfei <feix.w.wang@intel.com>
19 */
20
21#ifndef XCAM_CL_HDR_HANLDER_H
22#define XCAM_CL_HDR_HANLDER_H
23
24#include "xcam_utils.h"
25#include "cl_image_handler.h"
26
27namespace XCam {
28
29class CLHdrImageKernel
30 : public CLImageKernel
31{
32public:
33 explicit CLHdrImageKernel (SmartPtr<CLContext> &context);
34
35 virtual XCamReturn post_execute ();
36protected:
37 virtual XCamReturn prepare_arguments (
38 SmartPtr<DrmBoBuffer> &input, SmartPtr<DrmBoBuffer> &output,
39 CLArgument args[], uint32_t &arg_count,
40 CLWorkSize &work_size);
41
42private:
43 XCAM_DEAD_COPY (CLHdrImageKernel);
44};
45
46SmartPtr<CLImageHandler>
47create_cl_hdr_image_handler (SmartPtr<CLContext> &context);
48
49};
50
51#endif //XCAM_CL_HDR_HANLDER_H