Searched defs:mVideoWidth (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
44 mVideoWidth = mp.getVideoWidth();
56 mVideoWidth, mVideoHeight,
/frameworks/av/include/media/stagefright/
H A DCameraSourceTimeLapse.h65 int32_t mVideoWidth; member in class:android::CameraSourceTimeLapse
H A DMediaCodec.h313 int32_t mVideoWidth; member in struct:android::MediaCodec
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
H A DMediaRecorderStressTestRunner.java41 public static int mVideoWidth = profile.videoFrameWidth; field in class:MediaRecorderStressTestRunner
87 mVideoWidth = Integer.parseInt(videoWidth);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.h86 int32_t mVideoWidth; 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.java63 private final int mVideoWidth; field in class:TvTrackInfo
81 mVideoWidth = videoWidth;
96 mVideoWidth = in.readInt();
169 return mVideoWidth;
253 dest.writeInt(mVideoWidth);
281 ? mVideoWidth == obj.mVideoWidth
315 private int mVideoWidth; field in class:TvTrackInfo.Builder
403 mVideoWidth = videoWidth;
494 mAudioSampleRate, mVideoWidth, mVideoHeigh
[all...]
H A DTvInputManager.java1658 private int mVideoWidth; field in class:TvInputManager.Session
1794 mVideoWidth = 0;
1984 if (mVideoWidth != videoWidth || mVideoHeight != videoHeight) {
1985 mVideoWidth = videoWidth;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
H A DMediaPlayerPerformance.java91 private int mVideoWidth; field in class:MediaPlayerPerformance
110 mVideoWidth = mCamcorderProfile.videoFrameWidth;
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.h285 int mVideoWidth; member in class:android::MediaPlayer
/frameworks/base/core/java/android/widget/
H A DVideoView.java99 private int mVideoWidth; field in class:VideoView
144 int width = getDefaultSize(mVideoWidth, widthMeasureSpec);
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;
184 width = mVideoWidth;
[all...]

Completed in 361 milliseconds