Home | History | Annotate | Download | only in webkit

Lines Matching defs:mVideoHeight

50             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;
139 mVideoHeight = mp.getVideoHeight();
140 if (mVideoWidth != 0 && mVideoHeight != 0) {
141 mVideoSurfaceView.getHolder().setFixedSize(mVideoWidth, mVideoHeight);
154 mVideoHeight = 0;
233 mVideoHeight = mp.getVideoHeight();
235 mVideoSurfaceView.getHolder().setFixedSize(mVideoWidth, mVideoHeight);