Home
last modified time | relevance | path

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

/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/base/media/java/android/media/tv/
DTvTrackInfo.java72 int audioChannelCount, int audioSampleRate, int videoWidth, int videoHeight, in TvTrackInfo() argument
82 mVideoHeight = videoHeight; in TvTrackInfo()
414 public final Builder setVideoHeight(int videoHeight) { in setVideoHeight() argument
418 mVideoHeight = videoHeight; in setVideoHeight()
DTvInputManager.java2069 int videoHeight = track.getVideoHeight();
2070 if (mVideoWidth != videoWidth || mVideoHeight != videoHeight) {
2072 mVideoHeight = videoHeight;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
DMediaRecorderStressTest.java178 int videoHeight; in recordVideoAndPlayback() local
189 videoHeight = camcorderProfile.videoFrameHeight; in recordVideoAndPlayback()
196 videoHeight = MediaRecorderStressTestRunner.mVideoHeight; in recordVideoAndPlayback()
225 Log.v(TAG, "video height : " + videoHeight); in recordVideoAndPlayback()
235 mRecorder.setVideoSize(videoWidth, videoHeight); in recordVideoAndPlayback()
/frameworks/base/media/java/android/media/
DCamcorderProfile.java477 int videoHeight, in CamcorderProfile() argument
490 this.videoFrameHeight = videoHeight; in CamcorderProfile()
/frameworks/av/cmds/screenrecord/
Dscreenrecord.cpp249 uint32_t videoWidth, videoHeight; in setDisplayProjection() local
253 videoHeight = gVideoHeight; in setDisplayProjection()
256 videoHeight = gVideoWidth; in setDisplayProjection()
258 if (videoHeight > (uint32_t)(videoWidth * displayAspect)) { in setDisplayProjection()
264 outHeight = videoHeight; in setDisplayProjection()
265 outWidth = (uint32_t)(videoHeight / displayAspect); in setDisplayProjection()
269 offY = (videoHeight - outHeight) / 2; in setDisplayProjection()
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
DPlaybackFragmentGlueHost.java131 public void onVideoSizeChanged(int videoWidth, int videoHeight) {
132 mFragment.onVideoSizeChanged(videoWidth, videoHeight);
DPlaybackSupportFragmentGlueHost.java128 public void onVideoSizeChanged(int videoWidth, int videoHeight) {
129 mFragment.onVideoSizeChanged(videoWidth, videoHeight);
DPlaybackSupportFragment.java1133 protected void onVideoSizeChanged(int videoWidth, int videoHeight) { in onVideoSizeChanged() argument
DPlaybackFragment.java1136 protected void onVideoSizeChanged(int videoWidth, int videoHeight) { in onVideoSizeChanged() argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/media/
DPlaybackGlueHost.java95 public void onVideoSizeChanged(int videoWidth, int videoHeight) { in onVideoSizeChanged() argument
/frameworks/av/services/camera/libcameraservice/api1/client2/
DParameters.cpp118 videoHeight = previewHeight; in initialize()
121 params.setVideoSize(videoWidth, videoHeight); in initialize()
1933 &validatedParams.videoHeight); in set()
1935 validatedParams.videoHeight != videoHeight) { in set()
1939 __FUNCTION__, videoWidth, videoHeight, validatedParams.videoWidth, in set()
1940 validatedParams.videoHeight); in set()
1942 validatedParams.videoHeight = videoHeight; in set()
1943 newParams.setVideoSize(videoWidth, videoHeight); in set()
1949 validatedParams.videoHeight)) break; in set()
1954 validatedParams.videoHeight); in set()
[all …]
DStreamingProcessor.cpp325 streamInfo.height != (uint32_t)params.videoHeight || in recordingStreamNeedsUpdate()
357 streamInfo.height != (uint32_t)params.videoHeight || in updateRecordingStream()
380 params.videoWidth, params.videoHeight, in updateRecordingStream()
DParameters.h142 int videoWidth, videoHeight, videoFormat; member
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
DMediaRecorderTest.java314 int videoHeight = highQuality? videoCap.mMaxFrameHeight: videoCap.mMinFrameHeight; in recordVideoWithPara() local
340 Log.v(TAG, "videoHeight : " + videoHeight); in recordVideoWithPara()
353 mMediaRecorder.setVideoSize(videoWidth, videoHeight); in recordVideoWithPara()
366 recordSuccess = validateVideo(filename, videoWidth, videoHeight); in recordVideoWithPara()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
DCodecTest.java267 public static int videoHeight(String filePath) throws Exception { in videoHeight() method in CodecTest
269 int videoHeight = 0; in videoHeight() local
292 videoHeight = mMediaPlayer.getVideoHeight(); in videoHeight()
298 return videoHeight; in videoHeight()
/frameworks/av/media/libstagefright/
DStagefrightMetadataRetriever.cpp799 int32_t videoHeight = -1; in parseMetaData() local
828 CHECK(trackMeta->findInt32(kKeyHeight, &videoHeight)); in parseMetaData()
865 sprintf(tmp, "%d", videoHeight); in parseMetaData()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediaplayback/
DMediaPlayerApiTest.java307 height = CodecTest.videoHeight(MediaNames.VIDEO_LARGE_SIZE_3GP); in testLargeVideoHeigth()
/frameworks/av/services/camera/libcameraservice/api1/
DCamera2Client.cpp335 p.videoHeight); in dumpClient()