Home | History | Annotate | Download | only in ocl
      1 /*
      2  * cl_3a_image_processor.h - CL 3A 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: wangfei <feix.w.wang (at) intel.com>
     19  */
     20 
     21 #ifndef XCAM_CL_CSC_IMAGE_PROCESSOR_H
     22 #define XCAM_CL_CSC_IMAGE_PROCESSOR_H
     23 
     24 #include <xcam_std.h>
     25 #include <stats_callback_interface.h>
     26 #include <ocl/cl_image_processor.h>
     27 
     28 namespace XCam {
     29 
     30 class CLCscImageHandler;
     31 
     32 class CLCscImageProcessor
     33     : public CLImageProcessor
     34 {
     35 
     36 public:
     37     explicit CLCscImageProcessor ();
     38     virtual ~CLCscImageProcessor ();
     39 
     40 private:
     41     virtual XCamReturn create_handlers ();
     42     XCAM_DEAD_COPY (CLCscImageProcessor);
     43 
     44 private:
     45     SmartPtr<CLCscImageHandler>        _csc;
     46 };
     47 
     48 };
     49 #endif //XCAM_CL_CSC_IMAGE_PROCESSOR_H
     50