update to spandsp snapshot 20090714

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14316 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris
2009-07-22 15:18:32 +00:00
parent 10143a3403
commit 1c1a9a6be9
42 changed files with 451 additions and 382 deletions

View File

@@ -22,7 +22,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* $Id: v22bis_tests.c,v 1.62 2009/05/30 15:23:14 steveu Exp $
* $Id: v22bis_tests.c,v 1.63 2009/07/09 13:52:09 steveu Exp $
*/
/*! \page v22bis_tests_page V.22bis modem tests
@@ -94,17 +94,18 @@ static void reporter(void *user_data, int reason, bert_results_t *results)
switch (reason)
{
case BERT_REPORT_REGULAR:
printf("V.22bis rx %p BERT report regular - %d bits, %d bad bits, %d resyncs\n",
user_data,
results->total_bits,
results->bad_bits,
results->resyncs);
fprintf(stderr, "V.22bis rx %p BERT report regular - %d bits, %d bad bits, %d resyncs\n",
user_data,
results->total_bits,
results->bad_bits,
results->resyncs);
memcpy(&s->latest_results, results, sizeof(s->latest_results));
break;
default:
printf("V.22bis rx %p BERT report %s\n",
user_data,
bert_event_to_str(reason));
fprintf(stderr,
"V.22bis rx %p BERT report %s\n",
user_data,
bert_event_to_str(reason));
break;
}
}