HomeSort by relevance Sort by last modified time
    Searched defs:cropped_width (Results 1 - 3 of 3) sorted by null

  /external/webrtc/talk/media/base/
videocommon_unittest.cc 181 int cropped_width, cropped_height; local
188 &cropped_width, &cropped_height);
189 EXPECT_EQ(640, cropped_width);
197 &cropped_width, &cropped_height);
198 EXPECT_EQ(640, cropped_width);
206 &cropped_width, &cropped_height);
207 EXPECT_EQ(480, cropped_width);
216 &cropped_width, &cropped_height);
217 EXPECT_EQ(640, cropped_width);
226 &cropped_width, &cropped_height)
    [all...]
videocapturer.cc 476 int cropped_width = captured_frame->width; local
497 &cropped_width, &cropped_height);
500 int adapted_width = cropped_width;
504 video_adapter_.AdaptFrameResolution(cropped_width, cropped_height);
521 cropped_width, cropped_height,
528 << cropped_width << " x " << cropped_height;
  /device/google/marlin/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg.c 990 int32_t cropped_width = 0, cropped_height = 0; local
995 cropped_width = floor((cropped_height * p_thumb_dim->dst_dim.width) /
997 if (cropped_width % 2) {
998 cropped_width -= 1;
1002 cropped_width = p_thumb_dim->crop.width;
1003 cropped_height = floor((cropped_width * p_thumb_dim->dst_dim.height) /
1010 floor((p_thumb_dim->crop.width - cropped_width) / 2);
1019 p_thumb_dim->crop.width = cropped_width;
    [all...]

Completed in 537 milliseconds