HomeSort by relevance Sort by last modified time
    Searched full:crop_aspect (Results 1 - 1 of 1) sorted by null

  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videocommon.cc 175 float crop_aspect = static_cast<float>(cropped_format_width) / local
191 if (frame_aspect > crop_aspect &&
192 frame_aspect < crop_aspect * kAspectThresh) {
196 new_frame_width = static_cast<int>((crop_aspect * frame_height *
198 } else if (crop_aspect > frame_aspect &&
199 crop_aspect < frame_aspect * kAspectThresh) {
201 (crop_aspect * pixel_height) + 0.5f) & ~1;

Completed in 44 milliseconds