update to snapshot spandsp-20090131

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11600 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris
2009-02-02 17:40:52 +00:00
parent 7f6b03501d
commit c14dacd56e
95 changed files with 1587 additions and 2097 deletions

View File

@@ -23,7 +23,7 @@
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* $Id: noise.c,v 1.28 2009/01/28 03:41:27 steveu Exp $
* $Id: noise.c,v 1.29 2009/01/31 08:48:10 steveu Exp $
*/
/*! \file */
@@ -113,4 +113,11 @@ noise_state_t *noise_init_dbov(noise_state_t *s, int seed, float level, int clas
return s;
}
/*- End of function --------------------------------------------------------*/
int noise_free(noise_state_t *s)
{
free(s);
return 0;
}
/*- End of function --------------------------------------------------------*/
/*- End of file ------------------------------------------------------------*/