HomeSort by relevance Sort by last modified time
    Searched full:num_pixels (Results 26 - 50 of 50) sorted by null

12

  /external/webrtc/webrtc/modules/video_processing/
content_analysis_sse2.cc 19 uint32_t num_pixels = 0; // counter for # of pixels local
75 num_pixels += (width_end - border_);
104 static_cast<float>(tempDiffSum) / static_cast<float>(num_pixels);
106 static_cast<float>(pixelSum) / static_cast<float>(num_pixels);
108 static_cast<float>(pixelSqSum) / static_cast<float>(num_pixels);
deflickering.cc 260 mean_val = ((stats.sum << kmean_valueScaling) / stats.num_pixels);
  /external/webp/src/dsp/
lossless_enc_mips_dsp_r2.c 22 int num_pixels) {
24 uint32_t* const p_loop1_end = argb_data + (num_pixels & ~3);
25 uint32_t* const p_loop2_end = p_loop1_end + (num_pixels & 3);
82 int num_pixels) {
88 uint32_t* const p_loop_end = data + (num_pixels & ~1);
148 if (num_pixels & 1) {
lossless_enc_sse2.c 27 static void SubtractGreenFromBlueAndRed(uint32_t* argb_data, int num_pixels) {
29 for (i = 0; i + 4 <= num_pixels; i += 4) {
38 VP8LSubtractGreenFromBlueAndRed_C(argb_data + i, num_pixels - i);
45 uint32_t* argb_data, int num_pixels) {
57 for (i = 0; i + 4 <= num_pixels; i += 4) {
72 VP8LTransformColor_C(m, argb_data + i, num_pixels - i);
lossless_enc.c 713 void VP8LSubtractGreenFromBlueAndRed_C(uint32_t* argb_data, int num_pixels) {
715 for (i = 0; i < num_pixels; ++i) {
751 int num_pixels) {
753 for (i = 0; i < num_pixels; ++i) {
    [all...]
  /external/webrtc/webrtc/modules/video_processing/test/
video_processing_unittest.cc 105 EXPECT_EQ(stats.num_pixels, 0u);
144 EXPECT_GT(stats.num_pixels, 0u);
150 EXPECT_GT(stats.num_pixels, 0u);
159 EXPECT_GT(stats.num_pixels, 0u);
182 EXPECT_GT(stats.num_pixels, 0u);
188 static_cast<unsigned int>(stats.num_pixels),
deflickering_test.cc 67 EXPECT_GT(stats.num_pixels, 0u);
  /external/webp/src/dec/
alpha.c 98 const size_t num_pixels = num_rows * width; local
99 assert(dec->alpha_data_size_ >= ALPHA_HEADER_LEN + offset + num_pixels);
101 dec->alpha_data_ + ALPHA_HEADER_LEN + offset, num_pixels);
vp8l.c 1407 const uint64_t num_pixels = (uint64_t)dec->width_ * dec->height_; local
    [all...]
  /external/opencv3/3rdparty/include/ffmpeg_/libswscale/
swscale.h 333 * @param num_pixels number of pixels to convert
336 void sws_convertPalette8ToPacked32(const uint8_t *src, uint8_t *dst, int num_pixels, const uint8_t *palette);
345 * @param num_pixels number of pixels to convert
348 void sws_convertPalette8ToPacked24(const uint8_t *src, uint8_t *dst, int num_pixels, const uint8_t *palette);
  /external/webrtc/talk/media/base/
videoadapter.cc 87 // to num_pixels.
140 // fewer than num_pixels.
252 void VideoAdapter::SetOutputNumPixels(int num_pixels) {
253 output_num_pixels_ = num_pixels;
383 int* num_pixels) {
386 *num_pixels /= 2;
390 *num_pixels *= 2;
619 int num_pixels = GetOutputNumPixels(); local
620 return new_pixels <= num_pixels;
videoadapter.h 52 void SetOutputNumPixels(int num_pixels);
172 int* num_pixels);
videocommon.cc 82 // fewer than num_pixels.
  /external/webrtc/webrtc/video/
overuse_frame_detector.cc 220 bool OveruseFrameDetector::FrameSizeChanged(int num_pixels) const {
221 if (num_pixels != num_pixels_) {
234 void OveruseFrameDetector::ResetAll(int num_pixels) {
235 num_pixels_ = num_pixels;
  /external/webrtc/webrtc/modules/video_processing/include/
video_processing.h 35 uint32_t num_pixels; member in struct:webrtc::VideoProcessing::FrameStats
  /cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/
layered_filter_fast_f32.rs 557 const int num_pixels = width * height;
558 ResetSharpImage(g_sharp_image, num_pixels);
559 ResetIntegralImage(g_integral_image, num_pixels);
560 ResetFuzzyImage(g_fuzzy_image, num_pixels);
layered_filter_fast_d1new.rs     [all...]
  /external/opencv3/3rdparty/libwebp/dsp/
lossless.h 59 void VP8LConvertFromBGRA(const uint32_t* const in_data, int num_pixels,
  /external/opencv3/3rdparty/libwebp/utils/
utils.h 35 // somewhere (like: malloc(num_pixels * sizeof(*something))). That's why this
  /frameworks/rs/java/tests/Refocus/src/com/android/rs/test/
layered_filter_fast_f32.rs 559 const int num_pixels = width * height;
560 ResetSharpImage(g_sharp_image, num_pixels);
561 ResetIntegralImage(g_integral_image, num_pixels);
562 ResetFuzzyImage(g_fuzzy_image, num_pixels);
layered_filter_fast_d1new.rs     [all...]
  /external/webp/src/utils/
utils.h 39 // somewhere (like: malloc(num_pixels * sizeof(*something))). That's why this
  /external/webrtc/webrtc/modules/video_coding/
media_opt_util.cc 145 int num_pixels = parameters->codecWidth * parameters->codecHeight; local
146 if (num_pixels <= 352 * 288) {
148 } else if (num_pixels > 640 * 480) {
  /external/opencv3/3rdparty/libwebp/dec/
vp8l.c 1065 const uint64_t num_pixels = (uint64_t)dec->width_ * dec->height_; local
    [all...]
  /external/chromium-trace/catapult/tracing/test_data/
huge_trace.json     [all...]

Completed in 647 milliseconds

12