Home
last modified time | relevance | path

Searched refs:mVideoSize (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/media/java/android/media/metrics/
DMediaItemInfo.java155 private final Size mVideoSize; field in MediaItemInfo
185 mVideoSize = videoSize; in MediaItemInfo()
269 return mVideoSize; in getVideoSize()
308 @Nullable private Size mVideoSize; field in MediaItemInfo.Builder
323 mVideoSize = new Size(VALUE_UNSPECIFIED, VALUE_UNSPECIFIED); in Builder()
393 mVideoSize = Objects.requireNonNull(videoSize); in setVideoSize()
433 mVideoSize, in build()
475 + mVideoSize in toString()
503 && Objects.equals(mVideoSize, that.mVideoSize) in equals()
526 dest.writeInt(mVideoSize.getWidth()); in writeToParcel()
[all …]
/frameworks/av/media/libstagefright/
DCameraSource.cpp135 mVideoSize.width = -1; in CameraSource()
136 mVideoSize.height = -1; in CameraSource()
378 mVideoSize.width = frameWidthActual; in checkVideoSize()
379 mVideoSize.height = frameHeightActual; in checkVideoSize()
595 mMeta->setInt32(kKeyWidth, mVideoSize.width); in initWithCameraAccess()
596 mMeta->setInt32(kKeyHeight, mVideoSize.height); in initWithCameraAccess()
597 mMeta->setInt32(kKeyStride, mVideoSize.width); in initWithCameraAccess()
598 mMeta->setInt32(kKeySliceHeight, mVideoSize.height); in initWithCameraAccess()
623 err = initBufferQueue(mVideoSize.width, mVideoSize.height, mEncoderFormat, in startCameraRecording()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
DCamera2RecordingTest.java113 private Size mVideoSize; field in Camera2RecordingTest
829 mVideoSize = new Size(profile.videoFrameWidth, profile.videoFrameHeight); in prepareRecordingWithProfile()
860 mVideoSize = sz; in prepareRecording()
1029 mVideoSize.getWidth(), mVideoSize.getHeight(),
1039 mVideoSize.getWidth(), mVideoSize.getHeight(),
1049 mVideoSize.getWidth(), mVideoSize.getHeight(),
1059 mVideoSize.getWidth(), mVideoSize.getHeight(),
DCamera2SwitchPreviewTest.java100 private Size mVideoSize; field in Camera2SwitchPreviewTest
435 mVideoSize = new Size(profile.videoFrameWidth, profile.videoFrameHeight); in prepareRecordingWithProfile()
/frameworks/av/media/tests/SampleVideoEncoder/app/src/main/java/com/android/media/samplevideoencoder/
DMainActivity.java106 private Size mVideoSize; field in MainActivity
359 mVideoSize = chooseVideoSize(map.getOutputSizes(MediaRecorder.class)); in openCamera()
362 mVideoSize); in openCamera()
540 mMediaRecorder.setVideoSize(mVideoSize.getWidth(), mVideoSize.getHeight()); in setUpMediaRecorder()
/frameworks/av/media/libstagefright/include/media/stagefright/
DCameraSource.h156 Size mVideoSize; variable