OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:videoSz
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
Camera2RecordingTest.java
390
Size
videoSz
= new Size(profile.videoFrameWidth, profile.videoFrameHeight);
396
(
videoSz
.getWidth() > maxPreviewSize.getWidth() ||
397
videoSz
.getHeight() > maxPreviewSize.getHeight())) {
401
assertTrue("Video size " +
videoSz
.toString() + " for profile ID " + profileId +
403
mSupportedVideoSizes.contains(
videoSz
));
409
Log.v(TAG, "Testing camera recording with video size " +
videoSz
.toString());
416
+
videoSz
.toString() + ".mp4";
422
updatePreviewSurfaceWithVideo(
videoSz
, profile.videoFrameRate);
443
validateRecording(
videoSz
, durationMs);
549
Size
videoSz
= new Size(profile.videoFrameWidth, profile.videoFrameHeight)
[
all
...]
Camera2SwitchPreviewTest.java
351
Size
videoSz
= new Size(profile.videoFrameWidth, profile.videoFrameHeight);
357
(
videoSz
.getWidth() > maxPreviewSize.getWidth() ||
358
videoSz
.getHeight() > maxPreviewSize.getHeight())) {
362
assertTrue("Video size " +
videoSz
.toString() + " for profile ID " + profileId +
364
mSupportedVideoSizes.contains(
videoSz
));
370
Log.v(TAG, "Testing camera recording with video size " +
videoSz
.toString());
377
+
videoSz
.toString() + ".mp4";
383
updatePreviewSurfaceWithVideo(
videoSz
, profile.videoFrameRate);
/cts/tests/camera/src/android/hardware/camera2/cts/
RecordingTest.java
640
Size
videoSz
= new Size(profile.videoFrameWidth, profile.videoFrameHeight);
651
(
videoSz
.getWidth() > maxPreviewSize.getWidth() ||
652
videoSz
.getHeight() > maxPreviewSize.getHeight())) {
656
assertTrue("Video size " +
videoSz
.toString() + " for profile ID " + profileId +
658
mSupportedVideoSizes.contains(
videoSz
));
664
Log.v(TAG, "Testing camera recording with video size " +
videoSz
.toString());
671
+
videoSz
.toString() + ".mp4";
677
updatePreviewSurfaceWithVideo(
videoSz
, profile.videoFrameRate);
698
validateRecording(
videoSz
, durationMs, frameDurationMs, FRMDRP_RATE_TOLERANCE);
[
all
...]
Completed in 98 milliseconds