HomeSort by relevance Sort by last modified time
    Searched refs:videoFrameWidth (Results 1 - 25 of 38) sorted by null

1 2

  /cts/tests/tests/media/src/android/media/cts/
CamcorderProfileTest.java 82 "videoFrameWidth=%d, videoFrameHeight=%d, audioCodec=%d, " +
90 profile.videoFrameWidth,
100 assertTrue(profile.videoFrameWidth > 0);
105 assertTrue(isSizeSupported(profile.videoFrameWidth,
117 assertEquals(expectedProfile.videoFrameWidth, actualProfile.videoFrameWidth);
127 profile.quality, profile.videoFrameWidth, profile.videoFrameHeight));
132 assertEquals(176, profile.videoFrameWidth);
138 assertEquals(352, profile.videoFrameWidth);
144 assertTrue(720 == profile.videoFrameWidth || // SMPTE 293M/ITU-R Rec. 60
    [all...]
  /frameworks/base/media/java/android/media/
CamcorderProfile.java 290 public int videoFrameWidth;
489 this.videoFrameWidth = videoWidth;
MediaRecorder.java 436 setVideoSize(profile.videoFrameWidth, profile.videoFrameHeight);
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
MmsVideoRecorder.java 91 mCamcorderProfile.videoFrameWidth, mCamcorderProfile.videoFrameHeight);
100 return mCamcorderProfile.videoFrameWidth;
  /developers/build/prebuilts/gradle/MediaRecorder/Application/src/main/java/com/example/android/mediarecorder/
MainActivity.java 145 profile.videoFrameWidth = optimalSize.width;
149 parameters.setPreviewSize(profile.videoFrameWidth, profile.videoFrameHeight);
  /developers/samples/android/media/MediaRecorder/Application/src/main/java/com/example/android/mediarecorder/
MainActivity.java 145 profile.videoFrameWidth = optimalSize.width;
149 parameters.setPreviewSize(profile.videoFrameWidth, profile.videoFrameHeight);
  /development/samples/browseable/MediaRecorder/src/com.example.android.mediarecorder/
MainActivity.java 145 profile.videoFrameWidth = optimalSize.width;
149 parameters.setPreviewSize(profile.videoFrameWidth, profile.videoFrameHeight);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
RVCVRecordActivity.java 421 if (j.width == profile.videoFrameWidth &&
428 if (j.width == profile.videoFrameWidth &&
435 param.setPreviewSize(profile.videoFrameWidth, profile.videoFrameHeight);
436 param.setPictureSize(profile.videoFrameWidth, profile.videoFrameHeight);
447 writeVideoMetaInfo(profile.videoFrameWidth, profile.videoFrameHeight,
486 int width = mProfile.videoFrameWidth;
495 (float)mProfile.videoFrameWidth/mProfile.videoFrameHeight,
  /frameworks/base/media/jni/
android_media_MediaProfiles.cpp 192 int videoFrameWidth = sProfiles->getCamcorderProfileParamByName("vid.width", id, q);
201 videoBitRate == -1 || videoFrameRate == -1 || videoFrameWidth == -1 || videoFrameHeight == -1 ||
218 videoFrameWidth,
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaRecorderStressTestRunner.java 41 public static int mVideoWidth = profile.videoFrameWidth;
  /packages/apps/Camera2/src/com/android/camera/data/
VideoDataFactory.java 58 dimensions = new Size(profile.videoFrameWidth, profile.videoFrameHeight);
  /packages/apps/LegacyCamera/src/com/android/camera/
EffectsRecorder.java 408 + mProfile.videoFrameWidth + ", " + mProfile.videoFrameHeight);
412 tmp = mProfile.videoFrameWidth;
413 mProfile.videoFrameWidth = mProfile.videoFrameHeight;
418 "recordingWidth", mProfile.videoFrameWidth,
    [all...]
VideoCamera.java 794 mDesiredPreviewWidth = mProfile.videoFrameWidth;
809 (double) mProfile.videoFrameWidth / mProfile.videoFrameHeight);
819 (double) mProfile.videoFrameWidth / mProfile.videoFrameHeight)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
VideoModule.java 813 return new Point(profile.videoFrameWidth, profile.videoFrameHeight);
823 preferred = new Size(profile.videoFrameWidth, profile.videoFrameHeight);
839 if (size.width() == profile.videoFrameWidth
843 return new Point(profile.videoFrameWidth, profile.videoFrameHeight);
848 (double) profile.videoFrameWidth / profile.videoFrameHeight)
    [all...]
  /packages/apps/Camera/src/com/android/camera/
EffectsRecorder.java 583 int videoFrameWidth = mProfile.videoFrameWidth;
586 int tmp = videoFrameWidth;
587 videoFrameWidth = videoFrameHeight;
594 "recordingWidth", videoFrameWidth,
    [all...]
CameraSettings.java 539 if (high.videoFrameHeight * high.videoFrameWidth >
540 low.videoFrameHeight * low.videoFrameWidth) {
VideoModule.java 760 mDesiredPreviewWidth = mProfile.videoFrameWidth;
775 (double) mProfile.videoFrameWidth / mProfile.videoFrameHeight);
780 mDesiredPreviewWidth = mProfile.videoFrameWidth;
789 (double) mProfile.videoFrameWidth / mProfile.videoFrameHeight);
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
RecordingTest.java 483 if (size.equals(new Size(profile.videoFrameWidth, profile.videoFrameHeight))){
605 Size videoSz = new Size(profile.videoFrameWidth, profile.videoFrameHeight);
762 CamcorderProfile.get(cameraId, profileId).videoFrameWidth >= 1080;
    [all...]
ExtendedCameraCharacteristicsTest.java 213 maxVideoProfile.videoFrameWidth, maxVideoProfile.videoFrameHeight);
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/
MediaEncoderFilter.java 301 width = mProfile.videoFrameWidth;
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
MediaRecorderStressTest.java 93 mVideoWidth = profile.videoFrameWidth;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaRecorderStressTest.java 188 videoWidth = camcorderProfile.videoFrameWidth;
  /frameworks/av/media/libmediaplayerservice/
StagefrightRecorder.cpp     [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/video/
CameraVideoActivity.java 519 profile.videoFrameWidth, profile.videoFrameHeight));
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
MediaPlayerPerformance.java 110 mVideoWidth = mCamcorderProfile.videoFrameWidth;

Completed in 3173 milliseconds

1 2