Searched refs:frameIn (Results 1 – 5 of 5) sorted by relevance
/hardware/interfaces/camera/device/3.6/default/ |
D | ExternalCameraOfflineSession.cpp | 94 Size inputSize = { mOfflineReqs[0]->frameIn->mWidth, mOfflineReqs[0]->frameIn->mHeight}; in initOutputThread() 125 if (req->frameIn->mFourcc != V4L2_PIX_FMT_MJPEG && req->frameIn->mFourcc != V4L2_PIX_FMT_Z16) { in threadLoop() 127 req->frameIn->mFourcc & 0xFF, in threadLoop() 128 (req->frameIn->mFourcc >> 8) & 0xFF, in threadLoop() 129 (req->frameIn->mFourcc >> 16) & 0xFF, in threadLoop() 130 (req->frameIn->mFourcc >> 24) & 0xFF); in threadLoop() 144 if (req->frameIn->getData(&inData, &inDataSize) != 0) { in threadLoop() 150 if (req->frameIn->mFourcc == V4L2_PIX_FMT_MJPEG) { in threadLoop()
|
D | ExternalCameraDeviceSession.cpp | 283 static_cast<V3_4::implementation::V4L2Frame*>(v4lReq->frameIn.get()); in switchToOffline() 284 offlineReqs[i]->frameIn = new AllocatedV4L2Frame(v4l2Frame); in switchToOffline()
|
/hardware/interfaces/camera/device/3.4/default/include/ext_device_v3_4_impl/ |
D | ExternalCameraUtils.h | 209 sp<Frame> frameIn; member 289 AllocatedV4L2Frame(sp<V3_4::implementation::V4L2Frame> frameIn);
|
/hardware/interfaces/camera/device/3.4/default/ |
D | ExternalCameraDeviceSession.cpp | 711 sp<V4L2Frame> frameIn = dequeueV4l2FrameLocked(&shutterTs); in processOneCaptureRequest() local 712 if ( frameIn == nullptr) { in processOneCaptureRequest() 720 halReq->frameIn = frameIn; in processOneCaptureRequest() 772 static_cast<V3_4::implementation::V4L2Frame*>(req->frameIn.get()); in processCaptureRequestError() 832 static_cast<V3_4::implementation::V4L2Frame*>(req->frameIn.get()); in processCaptureResult() 1441 if (req->frameIn->mFourcc != V4L2_PIX_FMT_MJPEG && req->frameIn->mFourcc != V4L2_PIX_FMT_Z16) { in threadLoop() 1443 req->frameIn->mFourcc & 0xFF, in threadLoop() 1444 (req->frameIn->mFourcc >> 8) & 0xFF, in threadLoop() 1445 (req->frameIn->mFourcc >> 16) & 0xFF, in threadLoop() 1446 (req->frameIn->mFourcc >> 24) & 0xFF); in threadLoop() [all …]
|
D | ExternalCameraUtils.cpp | 671 AllocatedV4L2Frame::AllocatedV4L2Frame(sp<V3_4::implementation::V4L2Frame> frameIn) : in AllocatedV4L2Frame() argument 672 Frame(frameIn->mWidth, frameIn->mHeight, frameIn->mFourcc) { in AllocatedV4L2Frame() 675 if (frameIn->getData(&dataIn, &dataSize) != 0) { in AllocatedV4L2Frame()
|