| 82 | } |
| 83 | |
| 84 | EResult CComplexityAnalysis::Get (int32_t iType, void* pParam) { |
| 85 | if (pParam == NULL) { |
| 86 | return RET_INVALIDPARAM; |
| 87 | } |
| 88 | |
| 89 | SComplexityAnalysisParam* sComplexityAnalysisParam = (SComplexityAnalysisParam*)pParam; |
| 90 | |
| 91 | sComplexityAnalysisParam->iFrameComplexity = m_sComplexityAnalysisParam.iFrameComplexity; |
| 92 | |
| 93 | return RET_SUCCESS; |
| 94 | } |
| 95 | |
| 96 | |
| 97 | /////////////////////////////////////////////////////////////////////////////////////////////// |
nothing calls this directly
no outgoing calls
no test coverage detected