Searched refs:mVideoHeight (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/media/java/android/media/tv/
H A DTvTrackInfo.java48 private final int mVideoHeight; field in class:TvTrackInfo
61 mVideoHeight = videoHeight;
73 mVideoHeight = in.readInt();
140 return mVideoHeight;
180 dest.writeInt(mVideoHeight);
208 private int mVideoHeight; field in class:TvTrackInfo.Builder
294 mVideoHeight = videoHeight;
329 mVideoWidth, mVideoHeight, mVideoFrameRate, mExtra);
H A DTvInputManager.java1190 private int mVideoHeight; field in class:TvInputManager.Session
1333 mVideoHeight = 0;
1518 if (mVideoWidth != videoWidth || mVideoHeight != videoHeight) {
1520 mVideoHeight = videoHeight;
/frameworks/base/core/java/android/widget/
H A DVideoView.java101 private int mVideoHeight; field in class:VideoView
146 int height = getDefaultSize(mVideoHeight, heightMeasureSpec);
147 if (mVideoWidth > 0 && mVideoHeight > 0) {
160 if ( mVideoWidth * height < width * mVideoHeight ) {
162 width = height * mVideoWidth / mVideoHeight;
163 } else if ( mVideoWidth * height > width * mVideoHeight ) {
165 height = width * mVideoHeight / mVideoWidth;
170 height = width * mVideoHeight / mVideoWidth;
178 width = height * mVideoWidth / mVideoHeight;
186 height = mVideoHeight;
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
H A DMediaRecorderStressTestRunner.java42 public static int mVideoHeight = profile.videoFrameHeight; field in class:MediaRecorderStressTestRunner
90 mVideoHeight = Integer.parseInt(videoHeight);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
H A DMediaPlayerPerformance.java92 private int mVideoHeight; field in class:MediaPlayerPerformance
111 mVideoHeight = mCamcorderProfile.videoFrameHeight;
112 Log.v(TAG, "height = " + mVideoHeight + " width= " + mVideoWidth);
445 assertTrue(stressVideoRecord(frameRate, mVideoWidth, mVideoHeight,
466 assertTrue(stressVideoRecord(frameRate, mVideoWidth, mVideoHeight,
488 assertTrue(stressVideoRecord(frameRate, mVideoWidth, mVideoHeight,
/frameworks/av/include/media/stagefright/
H A DCameraSourceTimeLapse.h62 int32_t mVideoHeight; member in class:android::CameraSourceTimeLapse
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp201 mVideoHeight = height;
1240 videoFrameHeight == mVideoHeight &&
1356 if (minFrameHeight != -1 && mVideoHeight < minFrameHeight) {
1358 " and will be set to (%d)", mVideoHeight, minFrameHeight);
1359 mVideoHeight = minFrameHeight;
1360 } else if (maxFrameHeight != -1 && mVideoHeight > maxFrameHeight) {
1362 " and will be set to (%d)", mVideoHeight, maxFrameHeight);
1363 mVideoHeight = maxFrameHeight;
1396 videoSize.height = mVideoHeight;
1493 format->setInt32("height", mVideoHeight);
[all...]
H A DStagefrightRecorder.h89 int32_t mVideoWidth, mVideoHeight; member in struct:android::StagefrightRecorder
/frameworks/av/media/libmedia/
H A Dmediaplayer.cpp61 mVideoWidth = mVideoHeight = 0;
101 mVideoWidth = mVideoHeight = 0;
395 *h = mVideoHeight;
813 mVideoHeight = ext2;
/frameworks/av/include/media/
H A Dmediaplayer.h286 int mVideoHeight; member in class:android::MediaPlayer
/frameworks/av/media/libstagefright/
H A DCameraSourceTimeLapse.cpp88 mVideoHeight = videoSize.height;
H A DAwesomePlayer.cpp629 mStats.mVideoHeight = -1;
1189 mStats.mVideoHeight = usableHeight;
2906 mStats.mVideoHeight,
/frameworks/av/media/libstagefright/include/
H A DAwesomePlayer.h344 int32_t mVideoHeight; member in struct:android::AwesomePlayer::Stats
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DMediaRecorderStressTest.java196 videoHeight = MediaRecorderStressTestRunner.mVideoHeight;

Completed in 4622 milliseconds