]> sjero.net Git - linphone/blob - coreapi/test_ecc.c
add missing echo calibrator files
[linphone] / coreapi / test_ecc.c
1 /*
2 linphone
3 Copyright (C) 2011 Belledonne Communications SARL
4 Author: Simon MORLAT (simon.morlat@linphone.org)
5
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either version 2
9 of the License, or (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19 */
20
21
22 #include "linphonecore.h"
23 #include "linphonecore_utils.h"
24
25 static void calibration_finished(LinphoneCore *lc, LinphoneEcCalibratorStatus status, int delay, void *data){
26         ms_message("echo calibration finished %s.",status==LinphoneEcCalibratorDone ? "successfully" : "with faillure");
27         if (status==LinphoneEcCalibratorDone) ms_message("Measured delay is %i",delay);
28 }
29
30 int main(int argc, char *argv[]){
31         int count=0;
32         LinphoneCoreVTable vtable={0};
33         LinphoneCore *lc=linphone_core_new(&vtable,NULL,NULL,NULL);
34         
35         linphone_core_enable_logs(NULL);
36
37         linphone_core_start_echo_calibration(lc,calibration_finished,NULL);
38         
39         while(count++<1000){
40                 linphone_core_iterate(lc);
41                 ms_usleep(10000);
42         }
43         linphone_core_destroy(lc);
44         return 0;
45 }
46