HomeSort by relevance Sort by last modified time
    Searched refs:sub_sampling_factor (Results 1 - 4 of 4) sorted by null

  /external/webrtc/webrtc/modules/video_processing/
video_processing_impl.cc 52 stats->sub_sampling_factor = GetSubSamplingFactor(width, height);
56 for (int i = 0; i < height; i += (1 << stats->sub_sampling_factor)) {
58 for (int j = 0; j < width; j += (1 << stats->sub_sampling_factor)) {
64 stats->num_pixels = (width * height) / ((1 << stats->sub_sampling_factor) *
65 (1 << stats->sub_sampling_factor));
84 stats->sub_sampling_factor = 0;
brightness_detection.cc 66 for (int h = 0; h < height; h += (1 << stats.sub_sampling_factor)) {
68 for (int w = 0; w < width; w += (1 << stats.sub_sampling_factor)) {
  /external/webrtc/webrtc/modules/video_processing/include/
video_processing.h 36 uint32_t sub_sampling_factor; // Sub-sampling factor, in powers of 2. member in struct:webrtc::VideoProcessing::FrameStats
  /external/webrtc/webrtc/modules/video_processing/test/
video_processing_unittest.cc 189 static_cast<unsigned int>(stats.sub_sampling_factor),

Completed in 87 milliseconds