Initializes FIR block filter state.
IppStatus ippsFIRBlockInitAlloc_32f(IppsFIRBlockState_32f** pState, int order, int len);
pState |
Pointer to the FIR block filter state structure to be created. |
order |
Number of elements in the array containing the tap values. |
len |
Number of input signals. |
This function is declared in the ippac.h header file. The function ippsFIRBlockInitAlloc creates and initializes a FIR block filter state.
ippStsNoErr |
Indicates no error. |
ippStsNullPtrErr |
Indicates an error when the pointers to data arrays are NULL. |
ippStsMemAllocErr |
Indicates an error when no memory is allocated. |
ippStsFIRLenErr |
Indicates an error when order or len is less than or equal to 0. |
Copyright © 2000 - 2011, Intel Corporation. All rights reserved.