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

/frameworks/base/core/java/android/widget/
H A DVideoView.java99 private int mVideoHeight; field in class:VideoView
144 int height = getDefaultSize(mVideoHeight, heightMeasureSpec);
145 if (mVideoWidth > 0 && mVideoHeight > 0) {
158 if ( mVideoWidth * height < width * mVideoHeight ) {
160 width = height * mVideoWidth / mVideoHeight;
161 } else if ( mVideoWidth * height > width * mVideoHeight ) {
163 height = width * mVideoHeight / mVideoWidth;
168 height = width * mVideoHeight / mVideoWidth;
176 width = height * mVideoWidth / mVideoHeight;
184 height = mVideoHeight;
[all...]
/frameworks/base/media/java/android/media/tv/
H A DTvTrackInfo.java52 private final int mVideoHeight; field in class:TvTrackInfo
67 mVideoHeight = videoHeight;
81 mVideoHeight = in.readInt();
156 return mVideoHeight;
208 dest.writeInt(mVideoHeight);
238 private int mVideoHeight; field in class:TvTrackInfo.Builder
333 mVideoHeight = videoHeight;
387 mAudioSampleRate, mVideoWidth, mVideoHeight, mVideoFrameRate,
H A DTvInputManager.java1359 private int mVideoHeight; field in class:TvInputManager.Session
1498 mVideoHeight = 0;
1687 if (mVideoWidth != videoWidth || mVideoHeight != videoHeight) {
1689 mVideoHeight = videoHeight;
/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/av/include/media/stagefright/
H A DCameraSourceTimeLapse.h62 int32_t mVideoHeight; member in class:android::CameraSourceTimeLapse
H A DMediaCodec.h305 int32_t mVideoHeight; member in struct:android::MediaCodec
/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);
460 assertTrue(stressVideoRecord(frameRate, mVideoWidth, mVideoHeight,
481 assertTrue(stressVideoRecord(frameRate, mVideoWidth, mVideoHeight,
503 assertTrue(stressVideoRecord(frameRate, mVideoWidth, mVideoHeight,
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.h87 int32_t mVideoHeight; member in struct:android::NuPlayer::Decoder
H A DNuPlayerDecoder.cpp66 mVideoHeight(0),
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp201 mVideoHeight = height;
1286 videoFrameHeight == mVideoHeight &&
1402 if (minFrameHeight != -1 && mVideoHeight < minFrameHeight) {
1404 " and will be set to (%d)", mVideoHeight, minFrameHeight);
1405 mVideoHeight = minFrameHeight;
1406 } else if (maxFrameHeight != -1 && mVideoHeight > maxFrameHeight) {
1408 " and will be set to (%d)", mVideoHeight, maxFrameHeight);
1409 mVideoHeight = maxFrameHeight;
1440 videoSize.height = mVideoHeight;
1536 format->setInt32("height", mVideoHeight);
[all...]
H A DStagefrightRecorder.h91 int32_t mVideoWidth, mVideoHeight; member in struct:android::StagefrightRecorder
/frameworks/av/include/media/
H A Dmediaplayer.h287 int mVideoHeight; member in class:android::MediaPlayer
/frameworks/av/media/libmedia/
H A Dmediaplayer.cpp64 mVideoWidth = mVideoHeight = 0;
104 mVideoWidth = mVideoHeight = 0;
464 *h = mVideoHeight;
890 mVideoHeight = ext2;
/frameworks/av/media/libstagefright/
H A DCameraSourceTimeLapse.cpp88 mVideoHeight = videoSize.height;
H A DAwesomePlayer.cpp631 mStats.mVideoHeight = -1;
1196 mStats.mVideoHeight = usableHeight;
2957 mStats.mVideoHeight,
H A DMediaCodec.cpp252 mVideoHeight(0),
415 format->findInt32("height", &mVideoHeight);
514 size += mPortBuffers[i].size() * mVideoWidth * mVideoHeight * 3 / 2;
/frameworks/av/media/libstagefright/include/
H A DAwesomePlayer.h348 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 497 milliseconds