Home
last modified time | relevance | path

Searched refs:videoHeight (Results 1 – 16 of 16) sorted by relevance

/frameworks/av/services/mediametrics/
Dstatsd_mediaparser.cpp79 int32_t videoHeight = -1; in statsd_mediaparser() local
80 item->getInt32("android.media.mediaparser.videoHeight", &videoHeight); in statsd_mediaparser()
101 videoHeight, in statsd_mediaparser()
121 << " video_height:" << videoHeight in statsd_mediaparser()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
DMediaRecorderStressTestRunner.java69 String videoHeight = (String) icicle.get("video_height"); in onCreate() local
89 if (videoHeight != null) { in onCreate()
90 mVideoHeight = Integer.parseInt(videoHeight); in onCreate()
/frameworks/av/camera/tests/fuzzer/
Dcamera_Parameters_fuzzer.cpp112 int32_t videoWidth, videoHeight; in callCameraParametersAPIs() local
118 videoHeight = mFDP->ConsumeBool() ? supportedVideoSizes[idx].height in callCameraParametersAPIs()
120 obj->setVideoSize(videoWidth, videoHeight); in callCameraParametersAPIs()
124 int32_t videoWidth, videoHeight; in callCameraParametersAPIs() local
125 obj->getVideoSize(&videoWidth, &videoHeight); in callCameraParametersAPIs()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
DMediaRecorderStressTest.java179 int videoHeight; in recordVideoAndPlayback() local
190 videoHeight = camcorderProfile.videoFrameHeight; in recordVideoAndPlayback()
197 videoHeight = MediaRecorderStressTestRunner.mVideoHeight; in recordVideoAndPlayback()
226 Log.v(TAG, "video height : " + videoHeight); in recordVideoAndPlayback()
236 mRecorder.setVideoSize(videoWidth, videoHeight); in recordVideoAndPlayback()
/frameworks/base/media/java/android/media/tv/
DTvTrackInfo.java102 int videoHeight, float videoFrameRate, float videoPixelAspectRatio, in TvTrackInfo() argument
116 mVideoHeight = videoHeight; in TvTrackInfo()
665 public Builder setVideoHeight(int videoHeight) { in setVideoHeight() argument
669 mVideoHeight = videoHeight; in setVideoHeight()
DTvInputManager.java3476 int videoHeight = track.getVideoHeight();
3477 if (mVideoWidth != videoWidth || mVideoHeight != videoHeight) {
3479 mVideoHeight = videoHeight;
/frameworks/base/media/java/android/media/
DCamcorderProfile.java708 int videoHeight, in CamcorderProfile() argument
721 this.videoFrameHeight = videoHeight; in CamcorderProfile()
/frameworks/av/cmds/screenrecord/
Dscreenrecord.cpp298 uint32_t videoWidth, videoHeight; in setDisplayProjection() local
302 videoHeight = gVideoHeight; in setDisplayProjection()
305 videoHeight = gVideoWidth; in setDisplayProjection()
307 if (videoHeight > (uint32_t)(videoWidth * displayAspect)) { in setDisplayProjection()
313 outHeight = videoHeight; in setDisplayProjection()
314 outWidth = (uint32_t)(videoHeight / displayAspect); in setDisplayProjection()
318 offY = (videoHeight - outHeight) / 2; in setDisplayProjection()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
DMediaRecorderTest.java309 int videoHeight = highQuality? videoCap.mMaxFrameHeight: videoCap.mMinFrameHeight; in recordVideoWithPara() local
335 Log.v(TAG, "videoHeight : " + videoHeight); in recordVideoWithPara()
348 mMediaRecorder.setVideoSize(videoWidth, videoHeight); in recordVideoWithPara()
361 recordSuccess = validateVideo(filename, videoWidth, videoHeight); in recordVideoWithPara()
/frameworks/av/services/camera/libcameraservice/api1/client2/
DParameters.cpp152 videoHeight = previewHeight; in initialize()
155 params.setVideoSize(videoWidth, videoHeight); in initialize()
2030 &validatedParams.videoHeight); in set()
2032 validatedParams.videoHeight != videoHeight) { in set()
2036 __FUNCTION__, videoWidth, videoHeight, validatedParams.videoWidth, in set()
2037 validatedParams.videoHeight); in set()
2039 validatedParams.videoHeight = videoHeight; in set()
2040 newParams.setVideoSize(videoWidth, videoHeight); in set()
2046 validatedParams.videoHeight)) break; in set()
2051 validatedParams.videoHeight); in set()
[all …]
DStreamingProcessor.cpp331 streamInfo.height != (uint32_t)params.videoHeight || in recordingStreamNeedsUpdate()
363 streamInfo.height != (uint32_t)params.videoHeight || in updateRecordingStream()
386 params.videoWidth, params.videoHeight, in updateRecordingStream()
DParameters.h145 int videoWidth, videoHeight, videoFormat; member
/frameworks/av/media/libmediaplayerservice/
DStagefrightMetadataRetriever.cpp603 int32_t videoHeight = -1; in parseMetaData() local
658 && trackMeta->findInt32(kKeyHeight, &videoHeight)) { in parseMetaData()
727 CHECK(videoHeight >= 0); in parseMetaData()
728 sprintf(tmp, "%d", videoHeight); in parseMetaData()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
DCodecTest.java258 public static int videoHeight(String filePath) throws Exception { in videoHeight() method in CodecTest
260 int videoHeight = 0; in videoHeight() local
283 videoHeight = mMediaPlayer.getVideoHeight(); in videoHeight()
289 return videoHeight; in videoHeight()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediaplayback/
DMediaPlayerApiTest.java305 height = CodecTest.videoHeight(MediaNames.VIDEO_LARGE_SIZE_3GP); in testLargeVideoHeigth()
/frameworks/av/services/camera/libcameraservice/api1/
DCamera2Client.cpp378 p.videoHeight); in dumpClient()