Displaying 1 result from an estimated 1 matches for "compute_curv".
Did you mean:
  compute_curve
  
2013 Apr 24
0
vorbis-psy compilation fix
..., 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;
    float work[psy->n];