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

/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.java1744 private int mVideoWidth; field in class:TvInputManager.Session
1880 mVideoWidth = 0;
2070 if (mVideoWidth != videoWidth || mVideoHeight != videoHeight) {
2071 mVideoWidth = videoWidth;
/frameworks/base/core/java/android/widget/
H A DVideoView.java112 private int mVideoWidth; field in class:VideoView
151 mVideoWidth = 0;
174 int width = getDefaultSize(mVideoWidth, widthMeasureSpec);
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 / mVideoHeigh
[all...]
/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/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/support/v17/leanback/src/android/support/v17/leanback/media/
H A DPlaybackBaseControlGlue.java80 int mVideoWidth = 0; field in class:PlaybackBaseControlGlue
127 mVideoWidth = width;
186 if (mVideoWidth != 0 && mVideoHeight != 0) {
187 mPlayerCallback.onVideoSizeChanged(mVideoWidth, mVideoHeight);
/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/stagefright/
H A DCameraSourceTimeLapse.h65 int32_t mVideoWidth; member in class:android::CameraSourceTimeLapse
H A DMediaCodec.h330 int32_t mVideoWidth; member in struct:android::MediaCodec
/frameworks/av/media/libstagefright/foundation/include/
H A DCameraSourceTimeLapse.h65 int32_t mVideoWidth; member in class:android::CameraSourceTimeLapse
H A DMediaCodec.h330 int32_t mVideoWidth; member in struct:android::MediaCodec
/frameworks/av/media/libstagefright/include/
H A DCameraSourceTimeLapse.h65 int32_t mVideoWidth; member in class:android::CameraSourceTimeLapse
H A DMediaCodec.h330 int32_t mVideoWidth; member in struct:android::MediaCodec
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp144 mAnalyticsItem->setInt32(kRecorderWidth, mVideoWidth);
304 mVideoWidth = width;
1344 if (mVideoWidth < minFrameWidth && minFrameWidth != -1) {
1346 " and will be set to (%d)", mVideoWidth, minFrameWidth);
1347 mVideoWidth = minFrameWidth;
1348 } else if (mVideoWidth > maxFrameWidth && maxFrameWidth != -1) {
1350 " and will be set to (%d)", mVideoWidth, maxFrameWidth);
1351 mVideoWidth = maxFrameWidth;
1413 videoFrameWidth == mVideoWidth &&
1567 videoSize.width = mVideoWidth;
[all...]
H A DStagefrightRecorder.h101 int32_t mVideoWidth, mVideoHeight; member in struct:android::StagefrightRecorder
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.h97 int32_t mVideoWidth; member in struct:android::NuPlayer::Decoder
H A DNuPlayerDecoder.cpp77 mVideoWidth(0),
/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/media/
H A DLocalPlayer.java64 private int mVideoWidth; field in class:LocalPlayer
296 protected int getVideoWidth() { return mVideoWidth; }
367 mVideoWidth = width;
372 mVideoWidth = mVideoHeight = 0;
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/media/
H A DLocalPlayer.java64 private int mVideoWidth; field in class:LocalPlayer
296 protected int getVideoWidth() { return mVideoWidth; }
367 mVideoWidth = width;
372 mVideoWidth = mVideoHeight = 0;
/frameworks/av/include/media/
H A Dmediaplayer.h306 int mVideoWidth; member in class:android::MediaPlayer
/frameworks/av/media/libmedia/include/media/
H A Dmediaplayer.h306 int mVideoWidth; member in class:android::MediaPlayer
/frameworks/av/media/libmedia/
H A Dmediaplayer.cpp67 mVideoWidth = mVideoHeight = 0;
109 mVideoWidth = mVideoHeight = 0;
497 *w = mVideoWidth;
944 mVideoWidth = ext1;
/frameworks/av/media/libstagefright/
H A DCameraSourceTimeLapse.cpp89 mVideoWidth = videoSize.width;
H A DMediaCodec.cpp482 mVideoWidth(0),
703 format->findInt32("width", &mVideoWidth);
710 mAnalyticsItem->setInt32(kCodecWidth, mVideoWidth);
717 && (uint64_t)mVideoWidth * mVideoHeight > (uint64_t)INT32_MAX / 4) {
718 ALOGE("buffer size is too big, width=%d, height=%d", mVideoWidth, mVideoHeight);
872 size += mPortBuffers[i].size() * mVideoWidth * mVideoHeight * 3 / 2;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DMediaRecorderStressTest.java195 videoWidth = MediaRecorderStressTestRunner.mVideoWidth;

Completed in 482 milliseconds