From 445b04ac68bc8f94ad510c014db82a23a22711fe Mon Sep 17 00:00:00 2001 From: Giovanni Maruzzelli Date: Wed, 17 Feb 2010 11:29:31 +0000 Subject: [PATCH] skypiax: cleaning some debug print leftover git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16675 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/endpoints/mod_skypiax/skypiax_protocol.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/mod/endpoints/mod_skypiax/skypiax_protocol.c b/src/mod/endpoints/mod_skypiax/skypiax_protocol.c index 0e370d0ab7..87ad97ac73 100644 --- a/src/mod/endpoints/mod_skypiax/skypiax_protocol.c +++ b/src/mod/endpoints/mod_skypiax/skypiax_protocol.c @@ -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);