Am I correct in concluding when I use fir_filter_fff to filter, that because it uses its own memory space, I don't need to use set_history and worry about boundary crossing between calls to work? Will the output of the filter behave as expected across work call boundaries if I keep passing samples to the filter?
As an example, suppose the following:for(int nn = 0; nn < noutput_items; nn++)
{
out[nn] = d_shape_filter->filter(&in[nn]);
}
No comments:
Post a Comment