Lines Matching refs:portParams
1051 OMXCameraPortParameters &portParams, in setSensorQuirks() argument
1087 ( portParams.mWidth >= overclockWidth ) && in setSensorQuirks()
1088 ( portParams.mHeight >= overclockHeight ) && in setSensorQuirks()
1089 ( portParams.mFrameRate >= FRAME_RATE_FULL_HD ) ) || in setSensorQuirks()
1091 ( portParams.mFrameRate >= FRAME_RATE_HIGH_HD ))|| in setSensorQuirks()
1093 ( portParams.mWidth >= overclockWidth ) && in setSensorQuirks()
1094 ( portParams.mHeight >= overclockHeight ) ) ) { in setSensorQuirks()
1112 portParams); in setSensorQuirks()
1119 setVFramerate(portParams.mMinFrameRate, portParams.mMaxFrameRate); in setSensorQuirks()
1131 status_t OMXCameraAdapter::setFormat(OMX_U32 port, OMXCameraPortParameters &portParams) in setFormat() argument
1152 portCheck.format.video.nFrameWidth = portParams.mWidth; in setFormat()
1153 portCheck.format.video.nFrameHeight = portParams.mHeight; in setFormat()
1154 portCheck.format.video.eColorFormat = portParams.mColorFormat; in setFormat()
1155 portCheck.format.video.nStride = portParams.mStride; in setFormat()
1157 portCheck.format.video.xFramerate = portParams.mFrameRate<<16; in setFormat()
1158 portCheck.nBufferSize = portParams.mStride * portParams.mHeight; in setFormat()
1159 portCheck.nBufferCountActual = portParams.mNumBufs; in setFormat()
1160 mFocusThreshold = FOCUS_THRESHOLD * portParams.mFrameRate; in setFormat()
1163 portCheck.format.video.nFrameWidth = portParams.mWidth; in setFormat()
1164 portCheck.format.video.nFrameHeight = portParams.mHeight; in setFormat()
1168 portCheck.format.image.nFrameWidth = portParams.mWidth; in setFormat()
1169 portCheck.format.image.nFrameHeight = portParams.mHeight; in setFormat()
1170 if (OMX_COLOR_FormatUnused == portParams.mColorFormat) { in setFormat()
1182 portCheck.format.image.eColorFormat = portParams.mColorFormat; in setFormat()
1195 portCheck.nBufferCountActual = portParams.mNumBufs; in setFormat()
1197 portCheck.format.video.nFrameWidth = portParams.mWidth; in setFormat()
1198 portCheck.format.video.nStride = portParams.mStride; in setFormat()
1199 portCheck.format.video.nFrameHeight = portParams.mHeight; in setFormat()
1200 portCheck.format.video.eColorFormat = portParams.mColorFormat; in setFormat()
1202 portCheck.nBufferCountActual = portParams.mNumBufs; in setFormat()
1231 portParams.mBufSize = portCheck.nBufferSize; in setFormat()
1232 portParams.mStride = portCheck.format.image.nStride; in setFormat()