Searched defs:mVideoHeight (Results 1 - 13 of 13) 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/
H A DStagefrightRecorder.h96 int32_t mVideoWidth, mVideoHeight; member in struct:android::StagefrightRecorder
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.h91 int32_t mVideoHeight; member in struct:android::NuPlayer::Decoder
/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/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/media/
H A DLocalPlayer.java64 private int mVideoHeight; field in class:LocalPlayer
296 protected int getVideoHeight() { return mVideoHeight; }
367 mVideoHeight = height;
371 mVideoWidth = mVideoHeight = 0;
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/media/
H A DLocalPlayer.java64 private int mVideoHeight; field in class:LocalPlayer
296 protected int getVideoHeight() { return mVideoHeight; }
367 mVideoHeight = height;
371 mVideoWidth = mVideoHeight = 0;
/frameworks/av/include/media/
H A Dmediaplayer.h286 int mVideoHeight; member in class:android::MediaPlayer
/frameworks/base/core/java/android/widget/
H A DVideoView.java103 private int mVideoHeight; field in class:VideoView
139 mVideoHeight = 0;
158 int height = getDefaultSize(mVideoHeight, heightMeasureSpec);
159 if (mVideoWidth > 0 && mVideoHeight > 0) {
172 if ( mVideoWidth * height < width * mVideoHeight ) {
174 width = height * mVideoWidth / mVideoHeight;
175 } else if ( mVideoWidth * height > width * mVideoHeight ) {
177 height = width * mVideoHeight / mVideoWidth;
182 height = width * mVideoHeight / mVideoWidth;
190 width = height * mVideoWidth / mVideoHeight;
[all...]

Completed in 355 milliseconds