• Home
  • Raw
  • Download

Lines Matching refs:portParams

771 status_t OMXCameraAdapter::setFormat(OMX_U32 port, OMXCameraPortParameters &portParams)  in setFormat()  argument
794 portCheck.format.video.nFrameWidth = portParams.mWidth; in setFormat()
795 portCheck.format.video.nFrameHeight = portParams.mHeight; in setFormat()
796 portCheck.format.video.eColorFormat = portParams.mColorFormat; in setFormat()
797 portCheck.format.video.nStride = portParams.mStride; in setFormat()
800 ( portParams.mFrameRate >= FRAME_RATE_FULL_HD ) ) in setFormat()
809 portCheck.format.video.xFramerate = portParams.mFrameRate<<16; in setFormat()
810 portCheck.nBufferSize = portParams.mStride * portParams.mHeight; in setFormat()
811 portCheck.nBufferCountActual = portParams.mNumBufs; in setFormat()
812 mFocusThreshold = FOCUS_THRESHOLD * portParams.mFrameRate; in setFormat()
816 portCheck.format.image.nFrameWidth = portParams.mWidth; in setFormat()
817 portCheck.format.image.nFrameHeight = portParams.mHeight; in setFormat()
818 if ( OMX_COLOR_FormatUnused == portParams.mColorFormat && mCodingMode == CodingNone ) in setFormat()
823 else if ( OMX_COLOR_FormatUnused == portParams.mColorFormat && mCodingMode == CodingJPS ) in setFormat()
828 else if ( OMX_COLOR_FormatUnused == portParams.mColorFormat && mCodingMode == CodingMPO ) in setFormat()
833 … else if ( OMX_COLOR_FormatUnused == portParams.mColorFormat && mCodingMode == CodingRAWJPEG ) in setFormat()
840 else if ( OMX_COLOR_FormatUnused == portParams.mColorFormat && mCodingMode == CodingRAWMPO ) in setFormat()
849 portCheck.format.image.eColorFormat = portParams.mColorFormat; in setFormat()
855 …portCheck.nBufferSize = portParams.mStride * portParams.mWidth * portParams.mHe… in setFormat()
856 portCheck.nBufferCountActual = portParams.mNumBufs; in setFormat()
880 portParams.mBufSize = portCheck.nBufferSize; in setFormat()
881 portParams.mStride = portCheck.format.image.nStride; in setFormat()