HomeSort by relevance Sort by last modified time
    Searched refs:kMaxHeight (Results 1 - 20 of 20) 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/gpu/effects/
GrAlphaThresholdFragmentProcessor.fp 69 const int kMaxHeight = 1000;
71 uint32_t height = testData->fRandom->nextULessThan(kMaxHeight);
73 uint32_t y = testData->fRandom->nextULessThan(kMaxHeight - height);
GrMagnifierEffect.fp 74 const int kMaxHeight = 200;
77 uint32_t height = d->fRandom->nextULessThan(kMaxHeight);
80 SkIRect bounds = SkIRect::MakeWH(SkIntToScalar(kMaxWidth), SkIntToScalar(kMaxHeight));
GrAlphaThresholdFragmentProcessor.cpp 115 const int kMaxHeight = 1000;
117 uint32_t height = testData->fRandom->nextULessThan(kMaxHeight);
119 uint32_t y = testData->fRandom->nextULessThan(kMaxHeight - height);
GrMagnifierEffect.cpp 176 const int kMaxHeight = 200;
179 uint32_t height = d->fRandom->nextULessThan(kMaxHeight);
182 SkIRect bounds = SkIRect::MakeWH(SkIntToScalar(kMaxWidth), SkIntToScalar(kMaxHeight));
  /external/skqp/src/gpu/effects/
GrAlphaThresholdFragmentProcessor.fp 69 const int kMaxHeight = 1000;
71 uint32_t height = testData->fRandom->nextULessThan(kMaxHeight);
73 uint32_t y = testData->fRandom->nextULessThan(kMaxHeight - height);
GrMagnifierEffect.fp 74 const int kMaxHeight = 200;
77 uint32_t height = d->fRandom->nextULessThan(kMaxHeight);
80 SkIRect bounds = SkIRect::MakeWH(SkIntToScalar(kMaxWidth), SkIntToScalar(kMaxHeight));
GrAlphaThresholdFragmentProcessor.cpp 115 const int kMaxHeight = 1000;
117 uint32_t height = testData->fRandom->nextULessThan(kMaxHeight);
119 uint32_t y = testData->fRandom->nextULessThan(kMaxHeight - height);
GrMagnifierEffect.cpp 178 const int kMaxHeight = 200;
181 uint32_t height = d->fRandom->nextULessThan(kMaxHeight);
184 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 19 static int kMaxHeight = 8192;
114 // We clip to kMaxWidth / kMaxHeight for performance reasons.
117 SkTMin(bounds.height(), kMaxHeight));
  /external/skqp/tools/skiaserve/
Request.cpp 19 static int kMaxHeight = 8192;
114 // We clip to kMaxWidth / kMaxHeight for performance reasons.
117 SkTMin(bounds.height(), kMaxHeight));
  /external/libaom/libaom/test/
blend_a64_mask_1d_test.cc 39 static const int kMaxHeight = MAX_SB_SIZE;
40 static const int kBufSize = kMaxWidth * kMaxHeight;
blend_a64_mask_test.cc 39 static const int kMaxHeight = MAX_SB_SIZE;
40 static const int kBufSize = kMaxWidth * kMaxHeight;

Completed in 1770 milliseconds