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

  /external/chromium_org/remoting/codec/
video_encoder_vpx.h 69 int active_map_width_; member in class:remoting::VideoEncoderVpx
video_encoder_vpx.cc 269 act_map.cols = active_map_width_;
321 active_map_width_(0),
341 active_map_width_ = (image_->w + kMacroBlockSize - 1) / kMacroBlockSize;
343 active_map_.reset(new uint8[active_map_width_ * active_map_height_]);
431 memset(active_map_.get(), 0, active_map_width_ * active_map_height_);
441 DCHECK_LT(right, active_map_width_);
444 uint8* map = active_map_.get() + top * active_map_width_;
448 map += active_map_width_;

Completed in 34 milliseconds