| 209 | } |
| 210 | |
| 211 | EResult CAdaptiveQuantization::Get (int32_t iType, void* pParam) { |
| 212 | if (pParam == NULL) { |
| 213 | return RET_INVALIDPARAM; |
| 214 | } |
| 215 | |
| 216 | SAdaptiveQuantizationParam* sAdaptiveQuantParam = (SAdaptiveQuantizationParam*)pParam; |
| 217 | |
| 218 | sAdaptiveQuantParam->iAverMotionTextureIndexToDeltaQp = m_sAdaptiveQuantParam.iAverMotionTextureIndexToDeltaQp; |
| 219 | |
| 220 | return RET_SUCCESS; |
| 221 | } |
| 222 | |
| 223 | /////////////////////////////////////////////////////////////////////////////////////////////// |
| 224 |
nothing calls this directly
no outgoing calls
no test coverage detected