Lines Matching refs:height

433             int height) {  in surfaceChanged()  argument
439 mPreviewSizes.get(mPreviewSize).height; in surfaceChanged()
442 (float)width/height) > 0.01f) { in surfaceChanged()
456 log("Surface holder available: " + width + " x " + height); in surfaceChanged()
571 int height = mPreviewSizes.get(mPreviewSize).height;
572 mParams.setPreviewSize(width, height);
574 log("Setting preview size to " + width + "x" + height);
743 int height = mSnapshotSizes.get(mSnapshotSize).height;
744 log("Setting snapshot size to " + width + " x " + height);
746 mParams.setPictureSize(width, height);
787 int height = mCamcorderProfiles.get(pos).videoFrameHeight;
790 if (width == s.width && height == s.height) {
1214 Integer.toString(previewSize.height); in updatePreviewSizes()
1223 int height = mPreviewSizes.get(mPreviewSize).height; in updatePreviewSizes() local
1224 params.setPreviewSize(width, height); in updatePreviewSizes()
1225 log("Setting preview size to " + width + " x " + height); in updatePreviewSizes()
1287 Integer.toString(snapshotSize.height); in updateSnapshotSizes()
1296 int snapshotHeight = mSnapshotSizes.get(mSnapshotSize).height; in updateSnapshotSizes()
1385 availableVideoRecordSizes.add(s.width + "x" + s.height); in updateVideoRecordSize()
1434 int height = mPreviewSizes.get(mPreviewSize).height; in layoutPreview() local
1441 if (width > height) { in layoutPreview()
1442 int tmp = height; in layoutPreview()
1443 height = width; in layoutPreview()
1451 if (height > width) { in layoutPreview()
1452 int tmp = height; in layoutPreview()
1453 height = width; in layoutPreview()
1459 float previewAspect = ((float) width) / height; in layoutPreview()
1494 int height = mPreviewSizes.get(mPreviewSize).height; in configureCallbacks() local
1497 mCallbackProcessor = new CallbackProcessor(width, height, format, in configureCallbacks()
1501 int size = getCallbackBufferSize(width, height, format); in configureCallbacks()
1502 log("Configuring callbacks:" + width + " x " + height + in configureCallbacks()
1646 float scaleFactor = sz.height * sz.width / (float)(1920 * 1080); in getVideoBitRate()
1703 if (videoRecordSize.width > 0 && videoRecordSize.height > 0) { in startRecording()
1704 mRecorder.setVideoSize(videoRecordSize.width, videoRecordSize.height); in startRecording()
1804 static int getCallbackBufferSize(int width, int height, int format) { in getCallbackBufferSize() argument
1808 size = width * height * 3 / 2; in getCallbackBufferSize()
1812 int y_size = y_stride * height; in getCallbackBufferSize()
1814 int c_size = c_stride * height/2; in getCallbackBufferSize()
1820 size = 2 * width * height; in getCallbackBufferSize()