HomeSort by relevance Sort by last modified time
    Searched defs:mVideoHeight (Results 1 - 8 of 8) sorted by null

  /frameworks/base/media/libstagefright/include/
AVCEncoder.h 62 int32_t mVideoHeight;
M4vH263Encoder.h 56 int32_t mVideoHeight;
AwesomePlayer.h 147 int32_t mVideoWidth, mVideoHeight;
203 int32_t mVideoWidth, mVideoHeight;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaRecorderStressTestRunner.java 36 public static int mVideoHeight = 288;
83 mVideoHeight = Integer.parseInt(video_height);
  /frameworks/base/media/libmediaplayerservice/
StagefrightRecorder.h 77 int32_t mVideoWidth, mVideoHeight;
  /frameworks/base/include/media/
mediaplayer.h 203 int mVideoHeight;
  /development/samples/ApiDemos/src/com/example/android/apis/media/
MediaPlayerDemo_Video.java 41 private int mVideoHeight;
155 mVideoHeight = height;
209 mVideoHeight = 0;
216 holder.setFixedSize(mVideoWidth, mVideoHeight);
  /frameworks/base/core/java/android/widget/
VideoView.java 80 private int mVideoHeight;
113 int height = getDefaultSize(mVideoHeight, heightMeasureSpec);
114 if (mVideoWidth > 0 && mVideoHeight > 0) {
115 if ( mVideoWidth * height > width * mVideoHeight ) {
117 height = width * mVideoHeight / mVideoWidth;
118 } else if ( mVideoWidth * height < width * mVideoHeight ) {
120 width = height * mVideoWidth / mVideoHeight;
124 //mVideoWidth+"/"+mVideoHeight);
162 mVideoHeight = 0;
271 mVideoHeight = mp.getVideoHeight()
    [all...]

Completed in 322 milliseconds