Home
last modified time | relevance | path

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

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