Home
last modified time | relevance | path

Searched refs:mInputWidth (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/camera/include/camera/camera2/
DSessionConfiguration.h37 int getInputWidth() const { return mInputWidth; } in getInputWidth()
46 mInputWidth(0), in SessionConfiguration()
56 mInputWidth(inputWidth), mInputHeight(inputHeight), mInputFormat(inputFormat), in SessionConfiguration()
61 mInputWidth == other.mInputWidth &&
74 if (mInputWidth != other.mInputWidth) {
75 return mInputWidth < other.mInputWidth;
106 int mInputWidth, mInputHeight, mInputFormat, mOperatingMode; variable
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
DImageStitcher.java43 private int mInputWidth; field in ImageStitcher
74 mInputWidth = format.getWidth(); in calcOutputFormatForInput()
77 mSliceWidth = mInputWidth - 2 * mPadSize; in calcOutputFormatForInput()
97 if ((format.getWidth() != mInputWidth) || in process()
110 float x0 = ((float) mPadSize) / mInputWidth; in process()
121 outputWidth / mInputWidth, in process()
DImageSlicer.java47 private int mInputWidth; field in ImageSlicer
76 mInputWidth = frame.getFormat().getWidth(); in calcOutputFormatForInput()
79 mSliceWidth = (mInputWidth + mXSlices - 1) / mXSlices; in calcOutputFormatForInput()
113 float x0 = (xSliceIndex * mSliceWidth - mPadSize) / ((float) mInputWidth); in process()
117 ((float) mOutputWidth) / mInputWidth, in process()
/frameworks/av/camera/camera2/
DSessionConfiguration.cpp65 mInputWidth = inputWidth; in readFromParcel()
84 err = parcel->writeInt32(mInputWidth); in writeToParcel()