HomeSort by relevance Sort by last modified time
    Searched defs:cropped_width (Results 1 - 5 of 5) 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;
  /hardware/libhardware/modules/camera/3_4/arc/
cached_frame.cpp 140 int cropped_width = yu12_frame_->GetHeight() * yu12_frame_->GetHeight() / local
142 if (cropped_width % 2 == 1) {
143 // Make cropped_width to the closest even number.
144 cropped_width++;
147 int margin = (yu12_frame_->GetWidth() - cropped_width) / 2;
149 int rotated_height = cropped_width;
183 yu12_frame_->GetHeight(), cropped_width, cropped_height, rotation_mode,
  /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...]
  /hardware/qcom/camera/msm8998/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg.c 1155 int32_t cropped_width = 0, cropped_height = 0; local
1160 cropped_width = floor((cropped_height * p_thumb_dim->dst_dim.width) /
1162 if (cropped_width % 2) {
1163 cropped_width -= 1;
1167 cropped_width = p_thumb_dim->crop.width;
1168 cropped_height = floor((cropped_width * p_thumb_dim->dst_dim.height) /
1175 floor((p_thumb_dim->crop.width - cropped_width) / 2);
1184 p_thumb_dim->crop.width = cropped_width;
    [all...]

Completed in 489 milliseconds