blob: 75b1f853d3b1e97c15aa31ffb6811c024b3f7ea9 [file] [log] [blame]
Wind Yuan5ddbfd22015-02-10 18:04:09 +08001/*
2 * cl_image_processor.h - CL image processor
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: Wind Yuan <feng.yuan@intel.com>
19 */
20
21#ifndef XCAM_CL_IMAGE_PROCESSOR_H
22#define XCAM_CL_IMAGE_PROCESSOR_H
23
24#include "xcam_utils.h"
25#include "image_processor.h"
26#include <list>
27
28namespace XCam {
29
30class CLImageHandler;
31class CLContext;
32
33class CLImageProcessor
34 : public ImageProcessor
35{
36 typedef std::list<SmartPtr<CLImageHandler>> ImageHandlerList;
37public:
Wind Yuand50fde62015-03-25 17:43:49 +080038 explicit CLImageProcessor (const char* name = NULL);
Wind Yuan5ddbfd22015-02-10 18:04:09 +080039 virtual ~CLImageProcessor ();
40
Wind Yuanffe35592015-02-11 16:05:12 +080041 bool add_handler (SmartPtr<CLImageHandler> &handler);
42
Wind Yuand50fde62015-03-25 17:43:49 +080043protected:
44
Wind Yuan5ddbfd22015-02-10 18:04:09 +080045 //derive from ImageProcessor
46 virtual bool can_process_result (SmartPtr<X3aResult> &result);
47 virtual XCamReturn apply_3a_results (X3aResultList &results);
48 virtual XCamReturn apply_3a_result (SmartPtr<X3aResult> &result);
49 virtual XCamReturn process_buffer (SmartPtr<VideoBuffer> &input, SmartPtr<VideoBuffer> &output);
50
Wind Yuand50fde62015-03-25 17:43:49 +080051 SmartPtr<CLContext> get_cl_context ();
52
Wind Yuan5ddbfd22015-02-10 18:04:09 +080053private:
54 virtual XCamReturn create_handlers ();
55 XCAM_DEAD_COPY (CLImageProcessor);
56
57private:
58 SmartPtr<CLContext> _context;
59 ImageHandlerList _handlers;
60};
61
62};
63#endif //XCAM_CL_IMAGE_PROCESSOR_H