blob: b27015f8038853a60123f3731295d557bbb6cc8a [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);
Wind Yuan4bbe4ec2015-04-02 18:00:35 +080050 virtual void emit_stop ();
Wind Yuan5ddbfd22015-02-10 18:04:09 +080051
Wind Yuand50fde62015-03-25 17:43:49 +080052 SmartPtr<CLContext> get_cl_context ();
53
Wind Yuan5ddbfd22015-02-10 18:04:09 +080054private:
55 virtual XCamReturn create_handlers ();
56 XCAM_DEAD_COPY (CLImageProcessor);
57
Wind Yuan3d1d15e2015-04-16 17:40:47 +080058protected:
59
60// STREAM_LOCK only used in class derived from CLImageProcessor
61#define STREAM_LOCK SmartLock stream_lock (this->_stream_mutex)
62 // stream lock
63 Mutex _stream_mutex;
64
Wind Yuan5ddbfd22015-02-10 18:04:09 +080065private:
66 SmartPtr<CLContext> _context;
67 ImageHandlerList _handlers;
68};
69
70};
71#endif //XCAM_CL_IMAGE_PROCESSOR_H