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