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

  /frameworks/base/media/libstagefright/include/
AVCEncoder.h 61 int32_t mVideoWidth;
M4vH263Encoder.h 55 int32_t mVideoWidth;
AwesomePlayer.h 148 int32_t mVideoWidth, mVideoHeight;
204 int32_t 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 77 int32_t mVideoWidth, mVideoHeight;
  /frameworks/base/include/media/
mediaplayer.h 202 int 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);
  /frameworks/base/core/java/android/widget/
VideoView.java 79 private int mVideoWidth;
112 int width = getDefaultSize(mVideoWidth, widthMeasureSpec);
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);
161 mVideoWidth = 0;
270 mVideoWidth = mp.getVideoWidth()
    [all...]

Completed in 530 milliseconds