HomeSort by relevance Sort by last modified time
    Searched refs:mVideoWidth (Results 1 - 25 of 34) sorted by null

1 2

  /frameworks/base/media/java/android/media/tv/
TvTrackInfo.java 47 private final int mVideoWidth;
60 mVideoWidth = videoWidth;
72 mVideoWidth = in.readInt();
129 return mVideoWidth;
179 dest.writeInt(mVideoWidth);
207 private int mVideoWidth;
280 mVideoWidth = videoWidth;
329 mVideoWidth, mVideoHeight, mVideoFrameRate, mExtra);
TvInputManager.java     [all...]
  /frameworks/base/core/java/android/widget/
VideoView.java 100 private int mVideoWidth;
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...]
  /hardware/intel/common/libmix/videoencoder/
PVSoftMPEG4Encoder.cpp 87 mVideoWidth(176),
167 mEncParams->encWidth[0] = mVideoWidth;
189 (uint8_t *) malloc((mVideoWidth * mVideoHeight * 3 ) >> 1);
196 (uint8_t *) malloc((mVideoWidth * mVideoHeight * 3 ) >> 1);
201 if (mVideoWidth % 16 != 0 || mVideoHeight % 16 != 0) {
203 mVideoWidth, mVideoHeight);
310 mVideoWidth = mComParams.resolution.width;
410 const android::Rect rect(mVideoWidth, mVideoHeight);
430 trimBuffer(img, mTrimedInputData, mVideoWidth, mVideoHeight,
431 ALIGN(mVideoHeight, 32), ALIGN(mVideoWidth, 128))
    [all...]
PVSoftMPEG4Encoder.h 55 int32_t mVideoWidth;
  /development/samples/ApiDemos/src/com/example/android/apis/media/
MediaPlayerDemo_Video.java 40 private int mVideoWidth;
154 mVideoWidth = width;
208 mVideoWidth = 0;
216 holder.setFixedSize(mVideoWidth, mVideoHeight);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ContentVideoView.java 72 private int mVideoWidth;
118 if (mVideoWidth > 0 && mVideoHeight > 0) {
119 width = getDefaultSize(mVideoWidth, widthMeasureSpec);
121 if (mVideoWidth * height > width * mVideoHeight) {
122 height = width * mVideoHeight / mVideoWidth;
123 } else if (mVideoWidth * height < width * mVideoHeight) {
124 width = height * mVideoWidth / mVideoHeight;
286 mVideoWidth = width;
289 mVideoSurfaceView.getHolder().setFixedSize(mVideoWidth, mVideoHeight);
  /cts/suite/cts/deviceTests/videoperf/src/com/android/cts/videoperf/
VideoEncoderDecoderTest.java 74 private int mVideoWidth;
174 mVideoWidth = w;
348 buffer.put(yBuffer, srcOffsetY, mVideoWidth);
355 buffer.put(uvBuffer, srcOffsetU, mVideoWidth);
363 buffer.put(uvBuffer, srcOffsetU, mVideoWidth / 2);
367 buffer.put(uvBuffer, srcOffsetV, mVideoWidth / 2);
371 int size = mVideoHeight * mVideoWidth * 3 / 2;
509 mVideoWidth, mVideoHeight,
516 int size = mVideoHeight * mVideoWidth * 3 / 2;
611 printByteBuffer("UV ", buf, mVideoWidth * mVideoHeight, 20)
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaRecorderStressTestRunner.java 41 public static int mVideoWidth = profile.videoFrameWidth;
87 mVideoWidth = Integer.parseInt(videoWidth);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/
PlayVideoActivity.java 70 private int mVideoWidth;
171 mVideoWidth = width;
190 mHolder.setFixedSize(mVideoWidth, mVideoHeight);
194 float aspectRatio = ((float) mVideoWidth) / mVideoHeight;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
MediaPlayerPerformance.java 91 private int mVideoWidth;
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/
CameraSourceTimeLapse.h 61 int32_t mVideoWidth;
  /frameworks/av/media/libmediaplayerservice/
StagefrightRecorder.cpp 200 mVideoWidth = width;
    [all...]
StagefrightRecorder.h 89 int32_t mVideoWidth, mVideoHeight;
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
MediaRecorderStressTest.java 67 private int mVideoWidth;
90 mVideoWidth = profile.videoFrameWidth;
386 Log.v(TAG, "videoWidth : " + mVideoWidth);
397 mRecorder.setVideoSize(mVideoWidth, mVideoHeight);
  /developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
LocalPlayer.java 67 private int mVideoWidth;
292 protected int getVideoWidth() { return mVideoWidth; }
355 mVideoWidth = width;
360 mVideoWidth = mVideoHeight = 0;
  /developers/samples/android/media/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
LocalPlayer.java 67 private int mVideoWidth;
292 protected int getVideoWidth() { return mVideoWidth; }
355 mVideoWidth = width;
360 mVideoWidth = mVideoHeight = 0;
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
LocalPlayer.java 65 private int mVideoWidth;
295 protected int getVideoWidth() { return mVideoWidth; }
358 mVideoWidth = width;
363 mVideoWidth = mVideoHeight = 0;
  /development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/player/
LocalPlayer.java 67 private int mVideoWidth;
292 protected int getVideoWidth() { return mVideoWidth; }
355 mVideoWidth = width;
360 mVideoWidth = mVideoHeight = 0;
  /frameworks/av/media/libmedia/
mediaplayer.cpp 61 mVideoWidth = mVideoHeight = 0;
101 mVideoWidth = mVideoHeight = 0;
386 *w = mVideoWidth;
812 mVideoWidth = ext1;
  /hardware/ti/omap4xxx/camera/
CameraHal.cpp 369 mVideoWidth = w;
418 mVideoWidth = w;
420 CAMHAL_LOGVB("%s Video Width=%d Height=%d\n", __FUNCTION__, mVideoWidth, mVideoHeight);
426 if ((w != mVideoWidth) && (h != mVideoHeight))
438 params.getPreviewSize(&mVideoWidth, &mVideoHeight);
455 params.getPreviewSize(&mVideoWidth, &mVideoHeight);
    [all...]
  /frameworks/av/include/media/
mediaplayer.h 285 int mVideoWidth;
  /frameworks/av/media/libstagefright/
CameraSourceTimeLapse.cpp 87 mVideoWidth = videoSize.width;
  /device/lge/mako/camera/
QCameraHWI.cpp     [all...]
  /frameworks/av/media/libstagefright/include/
AwesomePlayer.h 343 int32_t mVideoWidth;

Completed in 3166 milliseconds

1 2