Lines Matching refs:pRCInfo
174 void cvbr_InitRateControl(CVBRRateControl* ct, CVBRRCInfo* pRCInfo) in cvbr_InitRateControl() argument
180 MS_ASSERT(pRCInfo->nWidth<=MAX_MB_WIDTH*16); in cvbr_InitRateControl()
181 if (pRCInfo->rcMethod==CONST_QUALITY) in cvbr_InitRateControl()
182 MS_ASSERT(pRCInfo->rcGranularity==FRAMELEVELRC); in cvbr_InitRateControl()
184 ct->m_nCodecType = pRCInfo->nCodecType; in cvbr_InitRateControl()
185 ct->m_nWidth = pRCInfo->nWidth; in cvbr_InitRateControl()
186 ct->m_nHeight = pRCInfo->nHeight; in cvbr_InitRateControl()
209 if (pRCInfo->fTargetFrameRate_is_float==1) { in cvbr_InitRateControl()
214 ct->m_nTargetFrameRateNum = pRCInfo->int_fTargetFrameRate; in cvbr_InitRateControl()
219 ct->m_nBitrate = pRCInfo->nBitrate; in cvbr_InitRateControl()
220 ct->m_nMaxBitrate = pRCInfo->nMaxBitrate; in cvbr_InitRateControl()
221 ct->m_nConstQP = pRCInfo->nConstQP; in cvbr_InitRateControl()
222 ct->m_nVPSize = pRCInfo->nVPSize; in cvbr_InitRateControl()
223 ct->m_nVPMbRow = pRCInfo->nVPMbRow; in cvbr_InitRateControl()
224 ct->m_bFixedFrameRate = pRCInfo->bFixedFrameRate; in cvbr_InitRateControl()
225 ct->m_nPCount = pRCInfo->nPCount; in cvbr_InitRateControl()
226 ct->m_nBCount = pRCInfo->nBCount; in cvbr_InitRateControl()
227 ct->m_rcGranularity = pRCInfo->rcGranularity; in cvbr_InitRateControl()
228 ct->m_rcMethod = pRCInfo->rcMethod; in cvbr_InitRateControl()