Lines Matching refs:portData
39 OMXCameraPortParameters *portData; in setParametersReprocess() local
49 …portData = &mCameraAdapterParameters.mCameraPortParams[mCameraAdapterParameters.mVideoInPortIndex]; in setParametersReprocess()
75 if ( (w != (int)portData->mWidth) || (h != (int)portData->mHeight) || in setParametersReprocess()
76 (s != (int) portData->mStride) || (pixFormat != portData->mColorFormat)) { in setParametersReprocess()
77 portData->mWidth = w; in setParametersReprocess()
78 portData->mHeight = h; in setParametersReprocess()
82 portData->mStride = w * 2; in setParametersReprocess()
84 portData->mStride = s; in setParametersReprocess()
87 portData->mColorFormat = pixFormat; in setParametersReprocess()
101 OMXCameraPortParameters * portData = NULL; in startReprocess() local
109 …portData = &mCameraAdapterParameters.mCameraPortParams[mCameraAdapterParameters.mVideoInPortIndex]; in startReprocess()
115 for ( int index = 0 ; index < portData->mMaxQueueable ; index++ ) { in startReprocess()
117 portData->mBufferHeader[index]->pBuffer, in startReprocess()
118 portData->mBufferHeader[index]->nOffset, in startReprocess()
119 portData->mBufferHeader[index]->nFilledLen); in startReprocess()
120 portData->mStatus[index] = OMXCameraPortParameters::FILL; in startReprocess()
122 (OMX_BUFFERHEADERTYPE*)portData->mBufferHeader[index]); in startReprocess()
146 OMXCameraPortParameters *portData = NULL; in stopReprocess() local
152 …portData = &mCameraAdapterParameters.mCameraPortParams[mCameraAdapterParameters.mVideoInPortIndex]; in stopReprocess()
164 if (portData) { in stopReprocess()
165 CAMHAL_LOGDB("Freeing buffers on reproc port - num: %d", portData->mNumBufs); in stopReprocess()
166 for (int index = 0 ; index < portData->mNumBufs ; index++) { in stopReprocess()
168 ( unsigned int ) portData->mBufferHeader[index]->pBuffer); in stopReprocess()
171 (OMX_BUFFERHEADERTYPE*)portData->mBufferHeader[index]); in stopReprocess()
219 OMXCameraPortParameters *portData = NULL; in UseBuffersReprocess() local
221 …portData = &mCameraAdapterParameters.mCameraPortParams[mCameraAdapterParameters.mVideoInPortIndex]; in UseBuffersReprocess()
243 portData->mNumBufs = num; in UseBuffersReprocess()
259 ret = setFormat(OMX_CAMERA_PORT_VIDEO_IN_VIDEO, *portData); in UseBuffersReprocess()
308 for (int index = 0 ; index < portData->mNumBufs ; index++) in UseBuffersReprocess()
313 (int)portData->mBufSize); in UseBuffersReprocess()
319 portData->mBufSize, in UseBuffersReprocess()
334 portData->mBufferHeader[index] = pBufferHdr; in UseBuffersReprocess()