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

  /external/libyuv/files/unit_test/
unit_test.h 55 static const int kMaxHeight = 32768;
61 if (src_width > kMaxWidth || src_height > kMaxHeight ||
62 dst_width > kMaxWidth || dst_height > kMaxHeight) {
  /external/webrtc/talk/media/base/
videocommon.cc 111 const int kMaxHeight = 3072;
121 if (new_frame_height > kMaxHeight) {
122 new_frame_width = new_frame_width * kMaxHeight / new_frame_height;
123 new_frame_height = kMaxHeight;
videocapturer_unittest.cc 318 const int kMaxHeight = 3072;
320 int kHeight = kMaxHeight + 4;
    [all...]
  /external/skia/src/effects/
GrAlphaThresholdFragmentProcessor.cpp 120 const int kMaxHeight = 1000;
122 uint32_t height = testData->fRandom->nextULessThan(kMaxHeight);
124 uint32_t y = testData->fRandom->nextULessThan(kMaxHeight - height);
SkMagnifierImageFilter.cpp 257 const int kMaxHeight = 200;
260 uint32_t height = d->fRandom->nextULessThan(kMaxHeight);
264 SkIRect bounds = SkIRect::MakeWH(SkIntToScalar(kMaxWidth), SkIntToScalar(kMaxHeight));
  /external/webrtc/talk/app/webrtc/
mediaconstraintsinterface.h 69 static const char kMaxHeight[]; // maxHeight
mediaconstraintsinterface.cc 43 const char MediaConstraintsInterface::kMaxHeight[] = "maxHeight";
videosource_unittest.cc 253 constraints.AddMandatory(MediaConstraintsInterface::kMaxHeight, 288);
475 constraints.AddMandatory(MediaConstraintsInterface::kMaxHeight, 288);
517 constraints.AddMandatory(MediaConstraintsInterface::kMaxHeight, 270);
videosource.cc 100 } else if (constraint.key == MediaConstraintsInterface::kMaxHeight) {
144 } else if (constraint.key == MediaConstraintsInterface::kMaxHeight) {
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/test/
m4v_h263_enc_test.cpp 39 kMaxHeight = 480,
53 fprintf(stderr, "Max height %d\n", kMaxHeight);
75 if (width > kMaxWidth || height > kMaxHeight || width <= 0 || height <= 0) {
  /external/skia/tools/skiaserve/
Request.cpp 21 static int kMaxHeight = 8192;
164 // We clip to kMaxWidth / kMaxHeight for performance reasons.
167 SkTMin(bounds.height(), kMaxHeight));

Completed in 200 milliseconds