Searched defs:mVideoHeight (Results 1 - 19 of 19) 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.h331 int32_t mVideoHeight; member in struct:android::MediaCodec
/frameworks/av/media/libstagefright/foundation/include/
H A DCameraSourceTimeLapse.h66 int32_t mVideoHeight; member in class:android::CameraSourceTimeLapse
H A DMediaCodec.h331 int32_t mVideoHeight; member in struct:android::MediaCodec
/frameworks/av/media/libstagefright/include/
H A DCameraSourceTimeLapse.h66 int32_t mVideoHeight; member in class:android::CameraSourceTimeLapse
H A DMediaCodec.h331 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.h101 int32_t mVideoWidth, mVideoHeight; member in struct:android::StagefrightRecorder
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.h98 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.java1746 private int mVideoHeight; field in class:TvInputManager.Session
1881 mVideoHeight = 0;
2070 if (mVideoWidth != videoWidth || mVideoHeight != videoHeight) {
2072 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.java65 private int mVideoHeight; field in class:LocalPlayer
297 protected int getVideoHeight() { return mVideoHeight; }
368 mVideoHeight = height;
372 mVideoWidth = mVideoHeight = 0;
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/media/
H A DLocalPlayer.java65 private int mVideoHeight; field in class:LocalPlayer
297 protected int getVideoHeight() { return mVideoHeight; }
368 mVideoHeight = height;
372 mVideoWidth = mVideoHeight = 0;
/frameworks/av/include/media/
H A Dmediaplayer.h307 int mVideoHeight; member in class:android::MediaPlayer
/frameworks/av/media/libmedia/include/media/
H A Dmediaplayer.h307 int mVideoHeight; member in class:android::MediaPlayer
/frameworks/support/v17/leanback/src/android/support/v17/leanback/media/
H A DPlaybackBaseControlGlue.java81 int mVideoHeight = 0; field in class:PlaybackBaseControlGlue
128 mVideoHeight = height;
186 if (mVideoWidth != 0 && mVideoHeight != 0) {
187 mPlayerCallback.onVideoSizeChanged(mVideoWidth, mVideoHeight);
/frameworks/base/core/java/android/widget/
H A DVideoView.java113 private int mVideoHeight; field in class:VideoView
152 mVideoHeight = 0;
175 int height = getDefaultSize(mVideoHeight, heightMeasureSpec);
176 if (mVideoWidth > 0 && mVideoHeight > 0) {
189 if ( mVideoWidth * height < width * mVideoHeight ) {
191 width = height * mVideoWidth / mVideoHeight;
192 } else if ( mVideoWidth * height > width * mVideoHeight ) {
194 height = width * mVideoHeight / mVideoWidth;
199 height = width * mVideoHeight / mVideoWidth;
207 width = height * mVideoWidth / mVideoHeight;
[all...]

Completed in 3144 milliseconds