Searched refs:frame_width_ (Results 1 - 4 of 4) sorted by relevance

/external/chromium/chrome/browser/chromeos/login/
H A Dcamera_controller.h32 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
H A Dcamera_controller.cc27 : frame_width_(0),
49 camera_->Initialize(frame_width_, frame_height_);
H A Dcamera.cc139 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);
H A Dcamera.h173 int frame_width_; member in class:chromeos::Camera

Completed in 74 milliseconds