]> sjero.net Git - linphone/blob - coreapi/test_ecc.c
Add callbacks for audio (un)initialization in the echo canceller calibrator.
[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
31 static char config_file[1024];
32 void parse_args(int argc, char *argv[]){
33         if (argc != 3 || strncmp("-c",argv[1], 2) || access(argv[2],F_OK)!=0) {
34                 printf("Usage: test_ecc [-c config_file] where config_file will be written with the detected value\n");
35                 exit(-1);
36         }
37         strncpy(config_file,argv[2],1024);
38 }
39
40 int main(int argc, char *argv[]){
41         if (argc>1) parse_args(argc,argv);
42         int count=0;
43         LinphoneCoreVTable vtable={0};
44         LinphoneCore *lc=linphone_core_new(&vtable,config_file,NULL,NULL);
45         
46         linphone_core_enable_logs(NULL);
47
48         linphone_core_start_echo_calibration(lc,calibration_finished,NULL,NULL,NULL);
49         
50         while(count++<1000){
51                 linphone_core_iterate(lc);
52                 ms_usleep(10000);
53         }
54         linphone_core_destroy(lc);
55         return 0;
56 }
57