search for: vorbispsy

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

2013 Apr 24
0
vorbis-psy compilation fix
...+EXPORT void spx_drft_clear(struct drft_lookup *l) { if(l) { diff -r -u speex/libspeex/vorbis_psy.c speex/libspeex/vorbis_psy.c --- speex/libspeex/vorbis_psy.c 2013-04-24 19:08:00.742567040 +0400 +++ speex/libspeex/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)...