search for: vorbis_psy_destroy

Displaying 1 result from an estimated 1 matches for "vorbis_psy_destroy".

2013 Apr 24
0
vorbis-psy compilation fix
...eex/vorbis_psy.c 2013-04-24 20:06:45.318233696 +0400 @@ -294,7 +294,7 @@ } -VorbisPsy *vorbis_psy_init(int rate, int n) +EXPORT VorbisPsy *vorbis_psy_init(int rate, int n) { long i,j,lo=-99,hi=1; VorbisPsy *p = speex_alloc(sizeof(VorbisPsy)); @@ -354,7 +354,7 @@ return p; } -void vorbis_psy_destroy(VorbisPsy *p) +EXPORT void vorbis_psy_destroy(VorbisPsy *p) { if(p){ spx_drft_clear(&p->lookup); @@ -369,7 +369,7 @@ } } -void compute_curve(VorbisPsy *psy, float *audio, float *curve) +EXPORT void compute_curve(VorbisPsy *psy, float *audio, float *curve) { int i; flo...