/****************************************************************** iLBC Speech Coder ANSI-C Source Code hpOutput.c Copyright (c) 2001, Global IP Sound AB. All rights reserved. ******************************************************************/ #include "constants.h" #include "hpOutput.h" /*----------------------------------------------------------------* * Output high-pass filter *---------------------------------------------------------------*/ void hpOutput( float *In, /* (i) vector to filter */ int len,/* (i) length of vector to filter */ float *Out, /* (o) the resulting filtered vector */ float *mem /* (i/o) the filter state */ ){ int i; float *pi, *po; /* all-zero section*/ pi = &In[0]; po = &Out[0]; for (i=0; i