Searched refs:kMaxHeight (Results 1 - 9 of 9) sorted by relevance

/external/webrtc/talk/media/base/
H A Dvideocommon.cc111 const int kMaxHeight = 3072; local
121 if (new_frame_height > kMaxHeight) {
122 new_frame_width = new_frame_width * kMaxHeight / new_frame_height;
123 new_frame_height = kMaxHeight;
H A Dvideocapturer_unittest.cc318 const int kMaxHeight = 3072; local
320 int kHeight = kMaxHeight + 4;
/external/libyuv/files/unit_test/
H A Dunit_test.h55 static const int kMaxHeight = 32768; variable
59 if (src_width > kMaxWidth || src_height > kMaxHeight ||
60 dst_width > kMaxWidth || dst_height > kMaxHeight) {
/external/webrtc/talk/app/webrtc/
H A Dmediaconstraintsinterface.h69 static const char kMaxHeight[]; // maxHeight member in class:webrtc::MediaConstraintsInterface
H A Dmediaconstraintsinterface.cc43 const char MediaConstraintsInterface::kMaxHeight[] = "maxHeight"; member in class:webrtc::MediaConstraintsInterface
H A Dvideosource_unittest.cc253 constraints.AddMandatory(MediaConstraintsInterface::kMaxHeight, 288);
475 constraints.AddMandatory(MediaConstraintsInterface::kMaxHeight, 288);
517 constraints.AddMandatory(MediaConstraintsInterface::kMaxHeight, 270);
H A Dvideosource.cc100 } else if (constraint.key == MediaConstraintsInterface::kMaxHeight) {
144 } else if (constraint.key == MediaConstraintsInterface::kMaxHeight) {
/external/skia/src/effects/
H A DSkMagnifierImageFilter.cpp193 const int kMaxHeight = 200; local
196 uint32_t height = d->fRandom->nextULessThan(kMaxHeight);
198 uint32_t y = d->fRandom->nextULessThan(kMaxHeight - height);
203 SkRect::MakeWH(SkIntToScalar(kMaxWidth), SkIntToScalar(kMaxHeight)),
H A DSkAlphaThresholdFilter.cpp228 const int kMaxHeight = 1000; local
230 uint32_t height = d->fRandom->nextULessThan(kMaxHeight);
232 uint32_t y = d->fRandom->nextULessThan(kMaxHeight - height);

Completed in 394 milliseconds