]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
skypiax: cleaning some debug print leftover
authorGiovanni Maruzzelli <gmaruzz@gmail.com>
Wed, 17 Feb 2010 11:29:31 +0000 (11:29 +0000)
committerGiovanni Maruzzelli <gmaruzz@gmail.com>
Wed, 17 Feb 2010 11:29:31 +0000 (11:29 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16675 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/endpoints/mod_skypiax/skypiax_protocol.c

index 0e370d0ab720eab5c7e81fa094a9916d224973a4..87ad97ac7376ea5569fa8028878a2afc652fb6e6 100644 (file)
@@ -833,7 +833,7 @@ rt=1;
                                                if (len == 320) {
                                                        unsigned int howmany;
 
-                                                               NOTICA("320!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n", SKYPIAX_P_LOG);
+                                                               DEBUGA_SKYPE("320!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n", SKYPIAX_P_LOG);
                                                        if (samplerate_skypiax == 8000) {
                                                                /* we're downsampling from 16khz to 8khz, srv_out will contain each other sample from srv_in */
                                                                a = 0;
@@ -919,7 +919,7 @@ rt=1;
                                                } else if (len == 0) {
                                                        skypiax_sleep(1000);
                                                } else {
-                                                       ERRORA("len=%d, expected 640\n", SKYPIAX_P_LOG, len);
+                                                       DEBUGA_SKYPE("len=%d, expected 640\n", SKYPIAX_P_LOG, len);
                                                }
 
                                        } else {
@@ -1227,7 +1227,7 @@ int skypiax_audio_read(private_t * tech_pvt)
 {
        unsigned int samples;
        int waitin;
-       int max_waitin=20;
+       int max_waitin=30;
 
        waitin=0;
        while (tech_pvt->flag_audio_srv == 0) {
@@ -1239,13 +1239,13 @@ int skypiax_audio_read(private_t * tech_pvt)
                waitin++;
 
                if(waitin == max_waitin){
-               ERRORA("read is now %d\n", SKYPIAX_P_LOG, waitin);
+                       DEBUGA_SKYPE("read is now at max_waitin: %d\n", SKYPIAX_P_LOG, waitin);
                        break;
                }
                //WARNINGA("read now is 0\n", SKYPIAX_P_LOG);
        }
-       if(waitin > 10){
-               //ERRORA("read is now %d\n", SKYPIAX_P_LOG, waitin);
+       if(waitin > 22){
+               DEBUGA_SKYPE("read is now %d\n", SKYPIAX_P_LOG, waitin);
        }
        //samples = skypiax_pipe_read(tech_pvt->audiopipe_srv[0], tech_pvt->read_frame.data, SAMPLES_PER_FRAME * sizeof(short));
                        switch_mutex_lock(tech_pvt->mutex_audio_srv);