Searched defs:mVideoHeight (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DVideoViewCaptureActivity.java36 private int mVideoWidth, mVideoHeight; field in class:VideoViewCaptureActivity
45 mVideoHeight = mp.getVideoHeight();
56 mVideoWidth, mVideoHeight,
/frameworks/av/include/media/stagefright/
H A DCameraSourceTimeLapse.h66 int32_t mVideoHeight; member in class:android::CameraSourceTimeLapse
H A DMediaCodec.h314 int32_t mVideoHeight; member in struct:android::MediaCodec
/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/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.h87 int32_t mVideoHeight; member in struct:android::NuPlayer::Decoder
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.h96 int32_t mVideoWidth, mVideoHeight; member in struct:android::StagefrightRecorder
/frameworks/base/media/java/android/media/tv/
H A DTvTrackInfo.java64 private final int mVideoHeight; field in class:TvTrackInfo
82 mVideoHeight = videoHeight;
97 mVideoHeight = in.readInt();
182 return mVideoHeight;
254 dest.writeInt(mVideoHeight);
282 && mVideoHeight == obj.mVideoHeight
316 private int mVideoHeight; field in class:TvTrackInfo.Builder
418 mVideoHeight = videoHeight;
494 mAudioSampleRate, mVideoWidth, mVideoHeight, mVideoFrameRat
[all...]
H A DTvInputManager.java1660 private int mVideoHeight; field in class:TvInputManager.Session
1795 mVideoHeight = 0;
1984 if (mVideoWidth != videoWidth || mVideoHeight != videoHeight) {
1986 mVideoHeight = 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);
460 assertTrue(stressVideoRecord(frameRate, mVideoWidth, mVideoHeight,
481 assertTrue(stressVideoRecord(frameRate, mVideoWidth, mVideoHeight,
503 assertTrue(stressVideoRecord(frameRate, mVideoWidth, mVideoHeight,
/frameworks/av/include/media/
H A Dmediaplayer.h286 int mVideoHeight; member in class:android::MediaPlayer
/frameworks/base/core/java/android/widget/
H A DVideoView.java100 private int mVideoHeight; field in class:VideoView
145 int height = getDefaultSize(mVideoHeight, heightMeasureSpec);
146 if (mVideoWidth > 0 && mVideoHeight > 0) {
159 if ( mVideoWidth * height < width * mVideoHeight ) {
161 width = height * mVideoWidth / mVideoHeight;
162 } else if ( mVideoWidth * height > width * mVideoHeight ) {
164 height = width * mVideoHeight / mVideoWidth;
169 height = width * mVideoHeight / mVideoWidth;
177 width = height * mVideoWidth / mVideoHeight;
185 height = mVideoHeight;
[all...]

Completed in 4457 milliseconds