Home
last modified time | relevance | path

Searched refs:_stats_info (Results 1 – 4 of 4) sorted by relevance

/external/libxcam/xcore/
Dx3a_stats_pool.cpp79 _stats_info = info; in set_stats_info()
87 _stats_info.aligned_width = (info.width + grid - 1) / grid; in fixate_video_info()
88 _stats_info.aligned_height = (info.height + grid - 1) / grid; in fixate_video_info()
90 _stats_info.width = info.width / grid; in fixate_video_info()
91 _stats_info.height = info.height / grid; in fixate_video_info()
92 _stats_info.grid_pixel_size = grid; in fixate_video_info()
93 _stats_info.bit_depth = _bit_depth; in fixate_video_info()
94 _stats_info.histogram_bins = (1 << _bit_depth); in fixate_video_info()
107 sizeof (XCamHistogram) * _stats_info.histogram_bins + in allocate_data()
108 sizeof (uint32_t) * _stats_info.histogram_bins + in allocate_data()
[all …]
Dx3a_stats_pool.h68 return _stats_info; in get_stats_info()
84 XCam3AStatsInfo _stats_info;
/external/libxcam/modules/ocl/
Dcl_3a_stats_context.cpp61 _stats_info = _stats_pool->get_stats_info (); in allocate_data()
73 _stats_info.aligned_width * _width_factor * in allocate_data()
74 _stats_info.aligned_height * _height_factor * sizeof (CL3AStatsStruct); in allocate_data()
220 …memset (stats_ptr->stats, 0, sizeof (XCamGridStat) * _stats_info.aligned_width * _stats_info.align… in copy_stats_out()
223 uint32_t cl_stats_width = _stats_info.aligned_width * _width_factor; in copy_stats_out()
225 for (uint32_t h = 0; h < _stats_info.height; ++h) { in copy_stats_out()
226 XCamGridStat *grid_stats_line = &stats_ptr->stats[_stats_info.aligned_width * h]; in copy_stats_out()
230 for (uint32_t w = 0; w < _stats_info.width; ++w) { in copy_stats_out()
Dcl_3a_stats_context.h76 XCam3AStatsInfo _stats_info; variable