Searched defs:mVideoHeight (Results 1 - 10 of 10) sorted by relevance

/frameworks/av/include/media/stagefright/
H A DCameraSourceTimeLapse.h58 int32_t mVideoHeight; member in class:android::CameraSourceTimeLapse
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
H A DSoftMPEG4Encoder.h71 int32_t mVideoHeight; member in struct:android::SoftMPEG4Encoder
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
H A DMediaRecorderStressTestRunner.java42 public static int mVideoHeight = profile.videoFrameHeight; field in class:MediaRecorderStressTestRunner
90 mVideoHeight = Integer.parseInt(videoHeight);
/frameworks/av/media/libstagefright/codecs/avc/enc/
H A DSoftAVCEncoder.h81 int32_t mVideoHeight; member in struct:android::SoftAVCEncoder
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.h85 int32_t mVideoWidth, mVideoHeight; member in struct:android::StagefrightRecorder
/frameworks/base/core/java/android/webkit/
H A DHTML5VideoFullScreen.java50 int height = getDefaultSize(mVideoHeight, heightMeasureSpec);
51 if (mVideoWidth > 0 && mVideoHeight > 0) {
52 if ( mVideoWidth * height > width * mVideoHeight ) {
53 height = width * mVideoHeight / mVideoWidth;
54 } else if ( mVideoWidth * height < width * mVideoHeight ) {
55 width = height * mVideoWidth / mVideoHeight;
92 private int mVideoHeight; field in class:HTML5VideoFullScreen
139 mVideoHeight = mp.getVideoHeight();
140 if (mVideoWidth != 0 && mVideoHeight != 0) {
141 mVideoSurfaceView.getHolder().setFixedSize(mVideoWidth, mVideoHeight);
[all...]
/frameworks/av/include/media/
H A Dmediaplayer.h261 int mVideoHeight; member in class:android::MediaPlayer
/frameworks/av/libvideoeditor/lvpp/
H A DPreviewPlayer.h198 int32_t mVideoWidth, mVideoHeight; member in struct:android::PreviewPlayer
/frameworks/av/media/libstagefright/include/
H A DAwesomePlayer.h325 int32_t mVideoHeight; member in struct:android::AwesomePlayer::Stats
/frameworks/base/core/java/android/widget/
H A DVideoView.java79 private int mVideoHeight; field in class:VideoView
112 int height = getDefaultSize(mVideoHeight, heightMeasureSpec);
113 if (mVideoWidth > 0 && mVideoHeight > 0) {
114 if ( mVideoWidth * height > width * mVideoHeight ) {
116 height = width * mVideoHeight / mVideoWidth;
117 } else if ( mVideoWidth * height < width * mVideoHeight ) {
119 width = height * mVideoWidth / mVideoHeight;
123 //mVideoWidth+"/"+mVideoHeight);
173 mVideoHeight = 0;
282 mVideoHeight
[all...]

Completed in 2193 milliseconds