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

/frameworks/av/include/media/stagefright/
H A DCameraSourceTimeLapse.h57 int32_t mVideoWidth; member in class:android::CameraSourceTimeLapse
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
H A DSoftMPEG4Encoder.h61 int32_t mVideoWidth; member in struct:android::SoftMPEG4Encoder
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
H A DMediaRecorderStressTestRunner.java43 public static int mVideoWidth = profile.videoFrameWidth; field in class:MediaRecorderStressTestRunner
89 mVideoWidth = Integer.parseInt(video_width);
/frameworks/av/media/libstagefright/codecs/avc/enc/
H A DSoftAVCEncoder.h72 int32_t mVideoWidth; 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.java34 int width = getDefaultSize(mVideoWidth, widthMeasureSpec);
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;
76 private int mVideoWidth; field in class:HTML5VideoFullScreen
121 mVideoWidth = mp.getVideoWidth();
123 if (mVideoWidth != 0 && mVideoHeight != 0) {
124 mVideoSurfaceView.getHolder().setFixedSize(mVideoWidth, mVideoHeigh
[all...]
/frameworks/av/include/media/
H A Dmediaplayer.h259 int mVideoWidth; 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.h323 int32_t mVideoWidth; member in struct:android::AwesomePlayer::Stats
/frameworks/base/core/java/android/widget/
H A DVideoView.java78 private int mVideoWidth; field in class:VideoView
110 int width = getDefaultSize(mVideoWidth, widthMeasureSpec);
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);
171 mVideoWidth = 0;
280 mVideoWidth
[all...]

Completed in 319 milliseconds