Searched refs:mVideoWidth (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/media/java/android/media/tv/
H A DTvTrackInfo.java47 private final int mVideoWidth; field in class:TvTrackInfo
60 mVideoWidth = videoWidth;
72 mVideoWidth = in.readInt();
129 return mVideoWidth;
179 dest.writeInt(mVideoWidth);
207 private int mVideoWidth; field in class:TvTrackInfo.Builder
280 mVideoWidth = videoWidth;
329 mVideoWidth, mVideoHeight, mVideoFrameRate, mExtra);
H A DTvInputManager.java1188 private int mVideoWidth; field in class:TvInputManager.Session
1332 mVideoWidth = 0;
1518 if (mVideoWidth != videoWidth || mVideoHeight != videoHeight) {
1519 mVideoWidth = videoWidth;
/frameworks/base/core/java/android/widget/
H A DVideoView.java100 private int mVideoWidth; field in class:VideoView
145 int width = getDefaultSize(mVideoWidth, widthMeasureSpec);
147 if (mVideoWidth > 0 && mVideoHeight > 0) {
160 if ( mVideoWidth * height < width * mVideoHeight ) {
162 width = height * mVideoWidth / mVideoHeight;
163 } else if ( mVideoWidth * height > width * mVideoHeight ) {
165 height = width * mVideoHeight / mVideoWidth;
170 height = width * mVideoHeight / mVideoWidth;
178 width = height * mVideoWidth / mVideoHeight;
185 width = mVideoWidth;
[all...]
/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/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);
445 assertTrue(stressVideoRecord(frameRate, mVideoWidth, mVideoHeight,
466 assertTrue(stressVideoRecord(frameRate, mVideoWidth, mVideoHeight,
488 assertTrue(stressVideoRecord(frameRate, mVideoWidth, mVideoHeight,
/frameworks/av/include/media/stagefright/
H A DCameraSourceTimeLapse.h61 int32_t mVideoWidth; member in class:android::CameraSourceTimeLapse
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp200 mVideoWidth = width;
1154 if (mVideoWidth < minFrameWidth && minFrameWidth != -1) {
1156 " and will be set to (%d)", mVideoWidth, minFrameWidth);
1157 mVideoWidth = minFrameWidth;
1158 } else if (mVideoWidth > maxFrameWidth && maxFrameWidth != -1) {
1160 " and will be set to (%d)", mVideoWidth, maxFrameWidth);
1161 mVideoWidth = maxFrameWidth;
1239 videoFrameWidth == mVideoWidth &&
1395 videoSize.width = mVideoWidth;
1492 format->setInt32("width", mVideoWidth);
[all...]
H A DStagefrightRecorder.h89 int32_t mVideoWidth, mVideoHeight; member in struct:android::StagefrightRecorder
/frameworks/av/media/libmedia/
H A Dmediaplayer.cpp61 mVideoWidth = mVideoHeight = 0;
101 mVideoWidth = mVideoHeight = 0;
386 *w = mVideoWidth;
812 mVideoWidth = ext1;
/frameworks/av/include/media/
H A Dmediaplayer.h285 int mVideoWidth; member in class:android::MediaPlayer
/frameworks/av/media/libstagefright/
H A DCameraSourceTimeLapse.cpp87 mVideoWidth = videoSize.width;
H A DAwesomePlayer.cpp628 mStats.mVideoWidth = -1;
1188 mStats.mVideoWidth = usableWidth;
2905 mStats.mVideoWidth,
/frameworks/av/media/libstagefright/include/
H A DAwesomePlayer.h343 int32_t mVideoWidth; member in struct:android::AwesomePlayer::Stats
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DMediaRecorderStressTest.java195 videoWidth = MediaRecorderStressTestRunner.mVideoWidth;

Completed in 4837 milliseconds