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

  /external/chromium/chrome/browser/chromeos/login/
camera_controller.h 32 void set_frame_width(int width) { frame_width_ = width; }
33 int frame_width() const { return frame_width_; }
57 int frame_width_; member in class:chromeos::CameraController
camera_controller.cc 27 : frame_width_(0),
49 camera_->Initialize(frame_width_, frame_height_);
camera.h 173 int frame_width_; member in class:chromeos::Camera
camera.cc 139 frame_width_(kFrameWidth),
237 frame_width_ = format.fmt.pix.width;
471 if (desired_width > frame_width_ || desired_height > frame_height_) {
474 if (desired_width_ * frame_height_ > frame_width_ * desired_height_) {
475 desired_width = frame_width_;
476 desired_height = (desired_height_ * frame_width_) / desired_width_;
483 int crop_left = (frame_width_ - desired_width) / 2;
484 int crop_right = frame_width_ - crop_left - desired_width;
503 crop_top * (frame_width_ / 2);

Completed in 32 milliseconds