Lines Matching refs:pSet
198 PMFE_INIT_PARAM pSet = NULL; in MFEIoctl() local
199 pSet = (PMFE_INIT_PARAM)pArgs; in MFEIoctl()
200 pSet->retVal = psMFE_InstPri->fpMFESetBitrateFramerate(pSet->mfe_Info); in MFEIoctl()
201 if(pSet->retVal == FALSE) in MFEIoctl()
207 PMFE_INIT_PARAM pSet = NULL; in MFEIoctl() local
208 pSet = (PMFE_INIT_PARAM)pArgs; in MFEIoctl()
209 pSet->retVal = psMFE_InstPri->fpMFESetColorFormat(pSet->mfe_Info); in MFEIoctl()
210 if(pSet->retVal == FALSE) in MFEIoctl()
216 PMFE_INIT_PARAM pSet = NULL; in MFEIoctl() local
217 pSet = (PMFE_INIT_PARAM)pArgs; in MFEIoctl()
218 pSet->retVal = psMFE_InstPri->fpMFESetISR(pSet->mfe_Info); in MFEIoctl()
219 if(pSet->retVal == FALSE) in MFEIoctl()
225 PMFE_INIT_PARAM pSet = NULL; in MFEIoctl() local
226 pSet = (PMFE_INIT_PARAM)pArgs; in MFEIoctl()
227 pSet->retVal = psMFE_InstPri->fpMFEResetSPSPPS(pSet->mfe_Info); in MFEIoctl()
228 if(pSet->retVal == FALSE) in MFEIoctl()
234 PMFE_SET_PARAM pSet = NULL; in MFEIoctl() local
235 pSet = (PMFE_SET_PARAM)pArgs; in MFEIoctl()
236 pSet->retVal = psMFE_InstPri->fpMFESetFrameType(pSet->mfe_Info,pSet->frametype); in MFEIoctl()
237 if(pSet->retVal == FALSE) in MFEIoctl()
243 PMFE_GETOUTPUT_PARAM pSet = NULL; in MFEIoctl() local
244 pSet = (PMFE_GETOUTPUT_PARAM)pArgs; in MFEIoctl()
245 … pSet->retVal = psMFE_InstPri->fpMFEGetOutputInfo(pSet->mfe_Info, &pSet->frametype, &pSet->size); in MFEIoctl()
246 if(pSet->retVal == FALSE) in MFEIoctl()
252 PMFE_SETVUI_PARAM pSet = NULL; in MFEIoctl() local
255 pSet = (PMFE_SETVUI_PARAM)pArgs; in MFEIoctl()
256 vui_info.level = pSet->setLevel; in MFEIoctl()
257 … vui_info.aspect_ratio_info_present_flag = pSet->setVUI_aspect_ratio_info_present_flag; in MFEIoctl()
258 vui_info.aspect_ratio_idc = pSet->setVUI_aspect_ratio_idc; in MFEIoctl()
259 vui_info.sar_width = pSet->setVUI_sar_width; in MFEIoctl()
260 vui_info.sar_height = pSet->setVUI_sar_height; in MFEIoctl()
262 pSet->retVal = psMFE_InstPri->fpMFESetVUI(pSet->mfe_Info, &vui_info); in MFEIoctl()
263 if(pSet->retVal == FALSE) in MFEIoctl()