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

  /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...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/
M4vH263Encoder.cpp 99 CHECK(meta->findInt32(kKeyHeight, &mVideoHeight));
113 (uint8_t *) malloc((mVideoWidth * mVideoHeight * 3 ) >> 1);
118 if (mVideoWidth % 16 != 0 || mVideoHeight % 16 != 0) {
120 mVideoWidth, mVideoHeight);
144 mEncParams->encHeight[0] = mVideoHeight;
192 mFormat->setInt32(kKeyHeight, mVideoHeight);
299 if (mInputBuffer->size() - ((mVideoWidth * mVideoHeight * 3) >> 1) != 0) {
333 inPtr, mInputFrameData, mVideoWidth, mVideoHeight);
340 vin.height = ((mVideoHeight + 15) >> 4) << 4;
  /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/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaRecorderStressTestRunner.java 36 public static int mVideoHeight = 288;
83 mVideoHeight = Integer.parseInt(video_height);
  /frameworks/base/media/libstagefright/include/
AVCEncoder.h 62 int32_t mVideoHeight;
M4vH263Encoder.h 56 int32_t mVideoHeight;
AwesomePlayer.h 148 int32_t mVideoWidth, mVideoHeight;
204 int32_t mVideoWidth, mVideoHeight;
  /frameworks/base/media/libstagefright/codecs/avc/enc/
AVCEncoder.cpp 135 CHECK(meta->findInt32(kKeyHeight, &mVideoHeight));
149 (uint8_t *) malloc((mVideoWidth * mVideoHeight * 3 ) >> 1);
154 if (mVideoWidth % 16 != 0 || mVideoHeight % 16 != 0) {
156 mVideoWidth, mVideoHeight);
163 mEncParams->height = mVideoHeight;
201 (((mVideoHeight + 15) >> 4) << 4)) >> 8;
243 mFormat->setInt32(kKeyHeight, mVideoHeight);
403 if (mInputBuffer->size() - ((mVideoWidth * mVideoHeight * 3) >> 1) != 0) {
432 videoInput.height = ((mVideoHeight + 15) >> 4) << 4;
441 inputData, mInputFrameData, mVideoWidth, mVideoHeight);
    [all...]
  /frameworks/base/media/libmediaplayerservice/
StagefrightRecorder.cpp 160 mVideoHeight = height;
946 params.setPreviewSize(mVideoWidth, mVideoHeight);
960 frameHeight < 0 || frameHeight != mVideoHeight) {
962 mVideoWidth, mVideoHeight);
987 if (mVideoHeight < minFrameHeight) {
989 " and will be set to (%d)", mVideoHeight, minFrameHeight);
990 mVideoHeight = minFrameHeight;
991 } else if (mVideoHeight > maxFrameHeight) {
993 " and will be set to (%d)", mVideoHeight, maxFrameHeight);
994 mVideoHeight = maxFrameHeight
    [all...]
StagefrightRecorder.h 77 int32_t mVideoWidth, mVideoHeight;
  /frameworks/base/media/libstagefright/
AwesomePlayer.cpp 498 mVideoWidth = mVideoHeight = -1;
857 mVideoWidth, mVideoHeight,
873 mVideoWidth, mVideoHeight,
1032 if (mVideoWidth < 0 || mVideoHeight < 0) {
1037 *height = mVideoHeight;
1111 CHECK(mVideoTrack->getFormat()->findInt32(kKeyHeight, &mVideoHeight));
    [all...]
  /frameworks/base/include/media/
mediaplayer.h 203 int mVideoHeight;
  /frameworks/base/media/libmedia/
mediaplayer.cpp 56 mVideoWidth = mVideoHeight = 0;
90 mVideoWidth = mVideoHeight = 0;
359 *h = mVideoHeight;
639 mVideoHeight = ext2;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaRecorderStressTest.java 323 int video_height = MediaRecorderStressTestRunner.mVideoHeight;

Completed in 293 milliseconds