removed spurious fprintf from ear protetcion
authordrowe67 <drowe67@01035d8c-6547-0410-b346-abe4f91aad63>
Wed, 7 Nov 2012 22:51:41 +0000 (22:51 +0000)
committerdrowe67 <drowe67@01035d8c-6547-0410-b346-abe4f91aad63>
Wed, 7 Nov 2012 22:51:41 +0000 (22:51 +0000)
git-svn-id: https://svn.code.sf.net/p/freetel/code@947 01035d8c-6547-0410-b346-abe4f91aad63

codec2-dev/src/codec2.c

index fd9a97e387b7c9d9cbf4e23671e141e218285b20..631a1bc34a93fbd81042f1e402ddc632ac20f64a 100644 (file)
@@ -993,7 +993,7 @@ void ear_protection(float in_out[], int n) {
 
     if (over > 1.0) {
         gain = 1.0/(over*over);
-        fprintf(stderr, "gain: %f\n", gain);
+        //fprintf(stderr, "gain: %f\n", gain);
         for(i=0; i<n; i++)
             in_out[i] *= gain;
     }