本文整理汇总了C++中DVBT_DEMOD_MODULE::GetCodeRateHp方法的典型用法代码示例。如果您正苦于以下问题:C++ DVBT_DEMOD_MODULE::GetCodeRateHp方法的具体用法?C++ DVBT_DEMOD_MODULE::GetCodeRateHp怎么用?C++ DVBT_DEMOD_MODULE::GetCodeRateHp使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DVBT_DEMOD_MODULE
的用法示例。
在下文中一共展示了DVBT_DEMOD_MODULE::GetCodeRateHp方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
/**
@see DVBT_NIM_FP_GET_TPS_INFO
*/
s32
dvbt_nim_default_GetTpsInfo(
DVBT_NIM_MODULE *pNim,
s32 *pConstellation,
s32 *pHierarchy,
s32 *pCodeRateLp,
s32 *pCodeRateHp,
s32 *pGuardInterval,
s32 *pFftMode
)
{
DVBT_DEMOD_MODULE *pDemod;
// Get demod module.
pDemod = pNim->pDemod;
// Get TPS constellation information from demod.
if(pDemod->GetConstellation(pDemod, pConstellation) != FUNCTION_SUCCESS)
goto error_status_execute_function;
// Get TPS hierarchy information from demod.
if(pDemod->GetHierarchy(pDemod, pHierarchy) != FUNCTION_SUCCESS)
goto error_status_execute_function;
// Get TPS low-priority code rate information from demod.
if(pDemod->GetCodeRateLp(pDemod, pCodeRateLp) != FUNCTION_SUCCESS)
goto error_status_execute_function;
// Get TPS high-priority code rate information from demod.
if(pDemod->GetCodeRateHp(pDemod, pCodeRateHp) != FUNCTION_SUCCESS)
goto error_status_execute_function;
// Get TPS guard interval information from demod.
if(pDemod->GetGuardInterval(pDemod, pGuardInterval) != FUNCTION_SUCCESS)
goto error_status_execute_function;
// Get TPS FFT mode information from demod.
if(pDemod->GetFftMode(pDemod, pFftMode) != FUNCTION_SUCCESS)
goto error_status_execute_function;
return FUNCTION_SUCCESS;
error_status_execute_function:
return FUNCTION_ERROR;
}