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

  /frameworks/av/include/media/stagefright/
CameraSourceTimeLapse.h 58 int32_t mVideoHeight;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
SoftMPEG4Encoder.h 62 int32_t mVideoHeight;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/
PlayVideoActivity.java 71 private int mVideoHeight;
173 mVideoHeight = height;
191 mHolder.setFixedSize(mVideoWidth, mVideoHeight);
195 float aspectRatio = ((float) mVideoWidth) / mVideoHeight;
  /frameworks/av/media/libstagefright/codecs/avc/enc/
SoftAVCEncoder.h 73 int32_t mVideoHeight;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaRecorderStressTestRunner.java 44 public static int mVideoHeight = profile.videoFrameHeight;
92 mVideoHeight = Integer.parseInt(video_height);
  /frameworks/av/media/libmediaplayerservice/
StagefrightRecorder.h 85 int32_t mVideoWidth, 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/av/include/media/
mediaplayer.h 260 int mVideoHeight;
  /frameworks/base/core/java/android/webkit/
HTML5VideoFullScreen.java 35 int height = getDefaultSize(mVideoHeight, heightMeasureSpec);
36 if (mVideoWidth > 0 && mVideoHeight > 0) {
37 if ( mVideoWidth * height > width * mVideoHeight ) {
38 height = width * mVideoHeight / mVideoWidth;
39 } else if ( mVideoWidth * height < width * mVideoHeight ) {
40 width = height * mVideoWidth / mVideoHeight;
77 private int mVideoHeight;
122 mVideoHeight = mp.getVideoHeight();
123 if (mVideoWidth != 0 && mVideoHeight != 0) {
124 mVideoSurfaceView.getHolder().setFixedSize(mVideoWidth, mVideoHeight);
    [all...]
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
MediaRecorderStressTest.java 68 private int mVideoHeight;
91 mVideoHeight = profile.videoFrameHeight;
387 Log.v(TAG, "videoHeight : " + mVideoHeight);
397 mRecorder.setVideoSize(mVideoWidth, mVideoHeight);
  /frameworks/av/libvideoeditor/lvpp/
PreviewPlayer.h 198 int32_t mVideoWidth, mVideoHeight;
  /frameworks/av/media/libstagefright/include/
AwesomePlayer.h 324 int32_t mVideoHeight;
  /frameworks/base/core/java/android/widget/
VideoView.java 79 private int mVideoHeight;
111 int height = getDefaultSize(mVideoHeight, heightMeasureSpec);
112 if (mVideoWidth > 0 && mVideoHeight > 0) {
113 if ( mVideoWidth * height > width * mVideoHeight ) {
115 height = width * mVideoHeight / mVideoWidth;
116 } else if ( mVideoWidth * height < width * mVideoHeight ) {
118 width = height * mVideoWidth / mVideoHeight;
122 //mVideoWidth+"/"+mVideoHeight);
172 mVideoHeight = 0;
281 mVideoHeight = mp.getVideoHeight()
    [all...]
  /hardware/ti/omap4xxx/camera/inc/
CameraHal.h 676 int mVideoHeight;
    [all...]

Completed in 346 milliseconds