Home
last modified time | relevance | path

Searched refs:inputFrame (Results 1 – 7 of 7) sorted by relevance

/aosp14/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DStatsFilter.java63 FrameType inputFrame = FrameType.buffer2D(FrameType.ELEMENT_INT8); in getSignature() local
66 .addInputPort("buffer", Signature.PORT_REQUIRED, inputFrame) in getSignature()
97 FrameBuffer2D inputFrame = getConnectedInputPort("buffer").pullFrame().asFrameImage2D(); in onProcess() local
98 ByteBuffer pixelBuffer = inputFrame.lockBytes(Frame.MODE_READ); in onProcess()
100 calcMeanAndStd(pixelBuffer, inputFrame.getWidth(), inputFrame.getHeight(), mCropRect); in onProcess()
101 inputFrame.unlock(); in onProcess()
H A DThroughputFilter.java66 Frame inputFrame = getConnectedInputPort("frame").pullFrame(); in onProcess() local
85 inputFrame.getElementCount()); in onProcess()
93 getConnectedOutputPort("frame").pushFrame(inputFrame); in onProcess()
H A DBranchFilter.java67 Frame inputFrame = getConnectedInputPort("input").pullFrame(); in onProcess() local
70 outputPort.pushFrame(inputFrame); in onProcess()
/aosp14/frameworks/base/core/java/android/inputmethodservice/
H A DNavigationBarController.java277 final View inputFrame = mService.mInputFrame; in updateTouchableInsets() local
280 if (inputFrame.getVisibility() == View.VISIBLE) { in updateTouchableInsets()
281 inputFrame.getLocationInWindow(mTempPos); in updateTouchableInsets()
283 mTempPos[0] + inputFrame.getWidth(), in updateTouchableInsets()
284 mTempPos[1] + inputFrame.getHeight()); in updateTouchableInsets()
289 if (inputFrame.getVisibility() == View.VISIBLE) { in updateTouchableInsets()
290 inputFrame.getLocationInWindow(mTempPos); in updateTouchableInsets()
292 mTempPos[0] + inputFrame.getWidth(), in updateTouchableInsets()
298 if (inputFrame.getVisibility() == View.VISIBLE) { in updateTouchableInsets()
299 inputFrame.getLocationInWindow(mTempPos); in updateTouchableInsets()
[all …]
/aosp14/frameworks/base/media/mca/effect/java/android/media/effect/effects/
H A DIdentityEffect.java37 Frame inputFrame = frameFromTexture(inputTexId, width, height); in apply() local
40 outputFrame.setDataFromFrame(inputFrame); in apply()
42 inputFrame.release(); in apply()
/aosp14/frameworks/base/media/mca/effect/java/android/media/effect/
H A DSizeChangeEffect.java44 Frame inputFrame = frameFromTexture(inputTexId, width, height); in apply() local
45 Frame resultFrame = mFunction.executeWithArgList(mInputName, inputFrame); in apply()
53 inputFrame.release(); in apply()
H A DSingleFilterEffect.java71 Frame inputFrame = frameFromTexture(inputTexId, width, height); in apply() local
74 Frame resultFrame = mFunction.executeWithArgList(mInputName, inputFrame); in apply()
78 inputFrame.release(); in apply()