/* * cl_3a_stats_context.h - CL 3a stats context * * 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: Wind Yuan */ #ifndef XCAM_CL_3A_STATS_CONTEXT_H #define XCAM_CL_3A_STATS_CONTEXT_H #include #include #include #include #define XCAM_CL_3A_STATS_BUFFER_COUNT 6 namespace XCam { class CL3AStatsCalculatorContext { public: struct CL3AStatsStruct { uint16_t avg_y; uint16_t avg_r; uint16_t avg_gr; uint16_t avg_gb; uint16_t avg_b; uint16_t valid_wb_count; uint16_t f_value1; uint16_t f_value2; }; public: CL3AStatsCalculatorContext (const SmartPtr &context); ~CL3AStatsCalculatorContext (); void set_bit_depth (uint32_t bits); bool is_ready () const { return _data_allocated; } bool allocate_data (const VideoBufferInfo &buffer_info, uint32_t width_factor, uint32_t height_factor); void pre_stop (); void clean_up_data (); SmartPtr get_buffer (); bool release_buffer (SmartPtr &buf); SmartPtr copy_stats_out (const SmartPtr &stats_cl_buf); private: XCAM_DEAD_COPY (CL3AStatsCalculatorContext); bool fill_histogram (XCam3AStats *stats); private: SmartPtr _context; SmartPtr _stats_pool; SafeList _stats_cl_buffers; uint32_t _stats_mem_size; uint32_t _width_factor; uint32_t _height_factor; uint32_t _factor_shift; XCam3AStatsInfo _stats_info; bool _data_allocated; }; } #endif //XCAM_CL_3A_STATS_CONTEXT_H