v_hcresampler: API updated to align with vprocss update
Updated API name to load external coefficients to align with vprocss Signed-off-by: Rohit Consul <rohit.consul@xilinx.com> Acked-by: Andrei-Liviu Simion <andrei.simion@xilinx.com>
This commit is contained in:
parent
5914c4f4f7
commit
687e6c1868
2 changed files with 7 additions and 3 deletions
|
@ -153,10 +153,14 @@ void XV_HCrsmplLoadDefaultCoeff(XV_hcresampler *InstancePtr,
|
|||
return;
|
||||
}
|
||||
|
||||
XV_HCrsmplrLoadUsrCoeff(InstancePtr,
|
||||
/* Use external filter load API */
|
||||
XV_HCrsmplrLoadExtCoeff(InstancePtr,
|
||||
pHcrsmplL2Data,
|
||||
numTaps,
|
||||
coeff);
|
||||
|
||||
/* Disable use of external coefficients */
|
||||
pHcrsmplL2Data->UseExtCoeff = FALSE;
|
||||
}
|
||||
|
||||
/*****************************************************************************/
|
||||
|
@ -172,7 +176,7 @@ void XV_HCrsmplLoadDefaultCoeff(XV_hcresampler *InstancePtr,
|
|||
* @return None
|
||||
*
|
||||
******************************************************************************/
|
||||
void XV_HCrsmplrLoadUsrCoeff(XV_hcresampler *InstancePtr,
|
||||
void XV_HCrsmplrLoadExtCoeff(XV_hcresampler *InstancePtr,
|
||||
XV_hcresampler_l2 *pHcrsmplL2Data,
|
||||
u16 num_taps,
|
||||
const short *Coeff)
|
||||
|
|
|
@ -164,7 +164,7 @@ void XV_HCrsmplStart(XV_hcresampler *InstancePtr);
|
|||
void XV_HCrsmplStop(XV_hcresampler *InstancePtr);
|
||||
void XV_HCrsmplLoadDefaultCoeff(XV_hcresampler *InstancePtr,
|
||||
XV_hcresampler_l2 *pHcrsmplL2Data);
|
||||
void XV_HCrsmplrLoadUsrCoeff(XV_hcresampler *InstancePtr,
|
||||
void XV_HCrsmplrLoadExtCoeff(XV_hcresampler *InstancePtr,
|
||||
XV_hcresampler_l2 *pHcrsmplL2Data,
|
||||
u16 num_taps,
|
||||
const short *Coeff);
|
||||
|
|
Loading…
Add table
Reference in a new issue