Searched defs:mOutputHeight (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DCropFilter.java44 private int mOutputHeight = -1; field in class:CropFilter
120 mOutputHeight == -1 ? outputFormat.getHeight() : mOutputHeight);
H A DRotateFilter.java49 private int mOutputHeight; field in class:RotateFilter
99 mOutputHeight = mHeight;
105 FrameFormat outputFormat = ImageFormat.create(mOutputWidth, mOutputHeight,
134 mOutputHeight = mWidth;
H A DCropRectFilter.java43 private int mOutputHeight; field in class:CropRectFilter
94 FrameFormat outputFormat = ImageFormat.create(mOutputWidth, mOutputHeight,
128 (float) mOutputHeight / mHeight);
134 (float) mOutputHeight / mHeight);
H A DImageSlicer.java54 private int mOutputHeight; field in class:ImageSlicer
83 mOutputHeight = mSliceHeight + mPadSize * 2;
98 outputFormat.setDimensions(mOutputWidth, mOutputHeight);
118 ((float) mOutputHeight) / mInputHeight);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DCropFilter.java39 private int mOutputHeight = 0; field in class:CropFilter
71 port.bindToFieldNamed("mOutputHeight");
163 return mOutputHeight <= 0 ? inHeight : mOutputHeight;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
H A DGpuVideoTrackDecoder.java61 private final int mOutputHeight; field in class:GpuVideoTrackDecoder
83 mOutputHeight = format.getInteger(MediaFormat.KEY_HEIGHT);
155 int outputHeight = mOutputHeight;
160 outputWidth = mOutputHeight;

Completed in 111 milliseconds