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

  /frameworks/base/core/java/android/widget/
VideoView.java 80 private int mVideoWidth;
113 int width = getDefaultSize(mVideoWidth, widthMeasureSpec);
115 if (mVideoWidth > 0 && mVideoHeight > 0) {
116 if ( mVideoWidth * height > width * mVideoHeight ) {
118 height = width * mVideoHeight / mVideoWidth;
119 } else if ( mVideoWidth * height < width * mVideoHeight ) {
121 width = height * mVideoWidth / mVideoHeight;
125 //mVideoWidth+"/"+mVideoHeight);
162 mVideoWidth = 0;
271 mVideoWidth = mp.getVideoWidth()
    [all...]
  /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);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaRecorderStressTestRunner.java 35 public static int mVideoWidth = 352;
80 mVideoWidth = Integer.parseInt(video_width);
  /frameworks/base/media/libmediaplayerservice/
StagefrightRecorder.h 65 int mVideoWidth, mVideoHeight;
StagefrightRecorder.cpp 86 mVideoWidth = width;
328 mVideoWidth = -1;
  /external/opencore/android/author/
authordriver.cpp 110 mVideoWidth(ANDROID_DEFAULT_FRAME_WIDTH),
591 if (mVideoWidth == 0) {
592 mVideoWidth = DEFAULT_VIDEO_WIDTH;
598 ((AndroidCameraInput *)mVideoInputMIO)->SetFrameSize(mVideoWidth, mVideoHeight);
613 mVideoWidth = ac->width;
    [all...]
authordriver.h 358 int mVideoWidth;
  /frameworks/base/media/libstagefright/
AwesomePlayer.cpp 401 mVideoWidth = mVideoHeight = -1;
601 mVideoWidth, mVideoHeight));
610 mVideoWidth, mVideoHeight,
737 if (mVideoWidth < 0 || mVideoHeight < 0) {
741 *width = mVideoWidth;
822 CHECK(mVideoTrack->getFormat()->findInt32(kKeyWidth, &mVideoWidth));
    [all...]
  /frameworks/base/include/media/
mediaplayer.h 194 int mVideoWidth;
  /frameworks/base/media/libstagefright/include/
AwesomePlayer.h 134 int32_t mVideoWidth, mVideoHeight;
183 int32_t mVideoWidth, mVideoHeight;
  /frameworks/base/media/libmedia/
mediaplayer.cpp 56 mVideoWidth = mVideoHeight = 0;
88 mVideoWidth = mVideoHeight = 0;
347 *w = mVideoWidth;
585 mVideoWidth = ext1;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaRecorderStressTest.java 341 int video_width = MediaRecorderStressTestRunner.mVideoWidth;

Completed in 323 milliseconds