Home | History | Annotate | Download | only in player

Lines Matching full:mwidth

56     protected final int mWidth;
65 mWidth = width;
137 if (mWidth > mHeight) {
138 height = mHeight * width / mWidth;
140 width = mWidth * height / mHeight;
243 if (mWidth * height < mHeight * width) {
244 mTextureView.getLayoutParams().width = mWidth;
245 mTextureView.getLayoutParams().height = mWidth * height / width;
276 mTextureView.getLayoutParams().width = mWidth;
318 scale = Math.min(scale, (float)mDefaultDisplayMetrics.widthPixels / mWidth);
323 int width = (int)(mWidth * scale);
341 (mWidth - mTextureView.getLayoutParams().width) * scale / 2);