mtc_call_db.h
47.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
/************************************************************************
Copyright (c) 2005-2011 by Juphoon System Software, Inc.
All rights reserved.
This software is confidential and proprietary to Juphoon System,
Inc. No part of this software may be reproduced, stored, transmitted,
disclosed or used in any form or by any means other than as expressly
provided by the written license agreement between Juphoon and its
licensee.
THIS SOFTWARE IS PROVIDED BY JUPHOON "AS IS" AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL JUPHOON BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
Juphoon System Software, Inc.
Email: support@juphoon.com
Web: http://www.juphoon.com
************************************************************************/
/*************************************************
File name : mtc_call_db.h
Module : multimedia talk client
Author : leo.lv
Created on : 2010-02-06
Description :
Data structure and function declare required by mtc call database.
Modify History:
1. Date: Author: Modification:
*************************************************/
#ifndef _MTC_CALL_DB_H__
#define _MTC_CALL_DB_H__
/**
* @file mtc_call_db.h
* @brief MTC Call Database Interface Functions
*/
#ifdef __cplusplus
extern "C" {
#endif
/** @brief MTC privacy flag */
#define MTC_PRIVACY_NONE 0x01 /**< @brief No privacy support. */
#define MTC_PRIVACY_ID 0x02 /**< @brief Using privacy id. */
#define MTC_PRIVACY_HEADER 0x03 /**< @brief Using privacy header. */
#define MTC_PRIVACY_SESSION 0x04 /**< @brief Using privacy session. */
#define MTC_PRIVACY_CRITICAL 0x05 /**< @brief Using privacy critical. */
/** @brief MTC database dtmf type */
typedef enum EN_MTC_DB_DTMF_TYPE
{
EN_MTC_DB_DTMF_AUTO, /**< @brief Auto select inband and outband. */
EN_MTC_DB_DTMF_INBAND, /**< @brief Inband dtmf. */
EN_MTC_DB_DTMF_OUTBAND, /**< @brief Rfc2833. */
EN_MTC_DB_DTMF_INFO, /**< @brief INFO message(CISCO format). */
EN_MTC_DB_DTMF_INFO_HW /**< @brief INFO message(Huawei format). */
} EN_MTC_DB_DTMF_TYPE;
/** @brief MTC database encoding type */
typedef enum EN_MTC_DB_ENCODING_TYPE
{
EN_MTC_ENCODING_H264, /**< @brief H.264. */
EN_MTC_ENCODING_VP8, /**< @brief VP8. */
} EN_MTC_DB_ENCODING_TYPE;
/** @brief MTC database ARS type */
typedef enum EN_MTC_DB_ARS_TYPE
{
EN_MTC_DB_ARS_LD, /**< @brief Low Difinition. */
EN_MTC_DB_ARS_SD, /**< @brief Standard Difinition. */
EN_MTC_DB_ARS_HD /**< @brief High Difinition. */
} EN_MTC_DB_ARS_TYPE;
/** @brief MTC database net type */
typedef enum EN_MTC_DB_NET_TYPE
{
EN_MTC_DB_NET_3G, /**< @brief 3G. */
EN_MTC_DB_NET_LAN, /**< @brief LAN. */
EN_MTC_DB_NET_WIFI /**< @brief WIFI. */
} EN_MTC_DB_NET_TYPE;
/** @brief MTC database session timer type */
typedef enum EN_MTC_DB_SESSION_TIME_TYPE
{
EN_MTC_DB_SESSION_TIME_OFF, /**< @brief Session timer off. */
EN_MTC_DB_SESSION_TIME_NEGO, /**< @brief Session timer negotiation. */
EN_MTC_DB_SESSION_TIME_FORCE, /**< @brief Session timer force on. */
EN_MTC_DB_SESSION_TIMER_ARBITRARY/**< @brief Session timer arbitray on. */
} EN_MTC_DB_SESSION_TIME_TYPE;
/** @brief MTC database SRTP crypto type */
typedef enum EN_MTC_DB_SRTP_CRYPTO_TYPE
{
EN_MTC_DB_SRTP_CRYPTO_OFF, /**< @brief SRTP off */
EN_MTC_DB_SRTP_CRYPTO_AES128_HMAC80, /**< @brief SRTP AES-128 HMAC-80. */
EN_MTC_DB_SRTP_CRYPTO_AES128_HMAC32, /**< @brief SRTP AES-128 HMAC-32. */
} EN_MTC_DB_SRTP_CRYPTO_TYPE;
/** @brief Type of MTC echo cancellation. */
typedef enum EN_MTC_EC_TYPE
{
EN_MTC_EC_AEC = 0, /**< @brief Default AEC provided by engine. */
EN_MTC_EC_OS = 1, /**< @brief AEC provided by OS. */
EN_MTC_EC_AES = 2, /**< @brief AES provided by engine. */
EN_MTC_EC_AEC_FDE = 3, /**< @brief AEC based on formant delay estimation. */
EN_MTC_EC_AEC_SDE = 4, /**< @brief AEC based on spectrum delay estimation. */
} EN_MTC_EC_TYPE;
/** @brief Type of MTC noise suppression. */
typedef enum EN_MTC_NS_TYPE
{
EN_MTC_NS_LOW = 0, /**< @brief NS with low level. */
EN_MTC_NS_MID = 1, /**< @brief NS with moderate level. */
EN_MTC_NS_HIGH = 2, /**< @brief NS with high level. */
EN_MTC_NS_VERYHIGH = 3, /**< @brief NS with very high level. */
} EN_MTC_NS_TYPE;
/** @brief Type of MTC gain control. */
typedef enum EN_MTC_GC_TYPE
{
EN_MTC_GC_ANALOG = 0, /**< @brief AGC based on analog volume adjustment. */
EN_MTC_GC_OS = 1, /**< @brief AGC provided by OS. */
EN_MTC_GC_DIGITAL = 2, /**< @brief AGC based on digital volume adjustment. */
} EN_MTC_GC_TYPE;
/** @brief Type of MTC receiving-side gain control. */
typedef enum EN_MTC_RX_GC_TYPE
{
EN_MTC_RX_GC_FIXED = 0, /**< @brief RX-AGC based on fixed digital volume adjustment. */
EN_MTC_RX_GC_ADAPTIVE = 1, /**< @brief RX-AGC based on adaptive digital volume adjustment. */
} EN_MTC_RX_GC_TYPE;
/** @brief Type of MTC video quality mode. */
typedef enum EN_MTC_ARS_TYPE
{
EN_MTC_ARS_QUALITY_SPATIAL = 0, /**< @brief Spatial quality first: clear picture. */
EN_MTC_ARS_QUALITY_TEMPORAL = 1, /**< @brief Temporal quality first: fluent motion. */
} EN_MTC_ARS_TYPE;
/** @brief Type of MTC voice activity detection. */
typedef enum EN_MTC_VAD_TYPE
{
EN_MTC_VAD_NORMAL = 0, /**< @brief VAD with lowest level. */
EN_MTC_VAD_LOW = 1, /**< @brief VAD with low level. */
EN_MTC_VAD_MID = 2, /**< @brief VAD with moderate level. */
EN_MTC_VAD_HIGH = 3, /**< @brief VAD with high level. */
} EN_MTC_VAD_TYPE;
#define DTMF_SETTINGS
/**
* @brief Get the DTMF message type.
*
* @return The DTMF message type.
* DTMF type MTC EN_MTC_DB_DTMF_TYPE, include
* @ref EN_MTC_DB_DTMF_INBAND, @ref EN_MTC_DB_DTMF_OUTBAND,
* @ref EN_MTC_DB_DTMF_INFO, @ref EN_MTC_DB_DTMF_INFO_HW,
* @ref EN_MTC_DB_DTMF_AUTO.
*
* @see @ref Mtc_CallDbSetDtmfType
*/
MTCFUNC ZUINT Mtc_CallDbGetDtmfType(ZFUNC_VOID);
/**
* @brief Set the DTMF message type.
*
* @param [in] iType The DTMF message type.
* DTMF type EN_MTC_DB_DTMF_TYPE, include
* @ref EN_MTC_DB_DTMF_INBAND, @ref EN_MTC_DB_DTMF_OUTBAND,
* @ref EN_MTC_DB_DTMF_INFO, @ref EN_MTC_DB_DTMF_INFO_HW,
* @ref EN_MTC_DB_DTMF_AUTO.
*
* @retval ZOK Set the DTMF message type successfully.
* @retval ZFAILED Set the DTMF message type failed.
*
* @see @ref Mtc_CallDbGetDtmfType
*/
MTCFUNC ZINT Mtc_CallDbSetDtmfType(ZUINT iType);
/**
* @brief Get the DTMF message payload.
*
* @return The DTMF message payload.
*
* @see @ref Mtc_CallDbSetDtmfPayload
*/
MTCFUNC ZUINT Mtc_CallDbGetDtmfPayload(ZFUNC_VOID);
/**
* @brief Set the DTMF message payload.
*
* @param [in] iPayload The DTMF message payload.
*
* @retval ZOK Set the DTMF message payload successfully.
* @retval ZFAILED Set the DTMF message payload failed.
*
* @see @ref Mtc_CallDbGetDtmfPayload
*/
MTCFUNC ZINT Mtc_CallDbSetDtmfPayload(ZUINT iPayload);
/**
* @brief Get the watch DTMF flag.
*
* @retval ZTRUE It will notify watcher when receive DTMF.
* @retval ZFALSE Don't notify.
*
* @see @ref Mtc_CallDbSetDtmfWatch
*/
MTCFUNC ZBOOL Mtc_CallDbGetDtmfWatch(ZFUNC_VOID);
/**
* @brief Set the watch DTMF flag.
*
* @param [in] bWatch If ZTRUE, it will notify watcher when receive DTMF.
* ZFALSE, Don't notify.
*
* @retval ZOK Set watch DTMF flag successfully.
* @retval ZFAILED Set watch DTMF flag failed.
*
* @see @ref Mtc_CallDbGetDtmfWatch
*/
MTCFUNC ZINT Mtc_CallDbSetDtmfWatch(ZBOOL bWatch);
#define AUDIO_QOS_SETTINGS
/**
* @brief Get audio QOS.
*
* @param [out] pbAec Audio echo cancel option.
* @param [out] pbAnr Audio noise reduction.
* @param [out] pbAgc Audio gain control option.
* @param [out] pbVad Audio silence detection.
*
* @retval ZOK Get audio QOS successfully.
* @retval ZFAILED Get audio QOS failed.
*
* @see @ref Mtc_CallDbSetAudioQos
*/
MTCFUNC ZINT Mtc_CallDbGetAudioQos(ZBOOL *pbAec, ZBOOL *pbAnr,
ZBOOL *pbAgc, ZBOOL *pbVad);
/**
* @brief Set audio QOS.
*
* @param [in] bAec Audio echo cancel option.
* @param [in] bAnr Audio noise reduction.
* @param [in] bAgc Audio gain control option.
* @param [in] bVad Audio silence detection.
*
* @retval ZOK Set audio QOS successfully.
* @retval ZFAILED Set audio QOS failed.
*
* @see @ref Mtc_CallDbGetAudioQos
*/
MTCFUNC ZINT Mtc_CallDbSetAudioQos(ZBOOL bAec, ZBOOL bAnr,
ZBOOL bAgc, ZBOOL bVad);
/**
* @brief Set state of AEC.
*
* @param [in] bEnable ZTRUE to enable AEC, ZFALSE to disable AEC.
*
* @retval ZOK on successfully.
* @retval ZFAILED on failed.
*
* @see Mtc_CallDbGetAecEnable
*/
MTCFUNC ZINT Mtc_CallDbSetAecEnable(ZBOOL bEnable);
/**
* @brief Get state of AEC.
*
* @retval ZTRUE indicate AEC is enabled.
* @retval ZFALSE indicate AEC is disabled.
*
* @see Mtc_CallDbSetAecEnable
*/
MTCFUNC ZBOOL Mtc_CallDbGetAecEnable(ZFUNC_VOID);
/**
* @brief Set mode of AEC.
*
* @param [in] ucMode Mode of AEC, @ref EN_MTC_EC_TYPE.
*
* @retval ZOK on successfully.
* @retval ZFAILED on failed.
*
* @see Mtc_CallDbGetAecMode
*/
MTCFUNC ZINT Mtc_CallDbSetAecMode(ZUCHAR ucMode);
/**
* @brief Get mode of AEC.
*
* @return Current AEC mode, @ref EN_MTC_EC_TYPE.
*
* @see Mtc_CallDbSetAecMode
*/
MTCFUNC ZUCHAR Mtc_CallDbGetAecMode(ZFUNC_VOID);
/**
* @brief Set state of VAD.
*
* @param [in] bEnable ZTRUE to enable VAD, ZFALSE to disable VAD.
*
* @retval ZOK on successfully.
* @retval ZFAILED on failed.
*
* @see Mtc_CallDbGetVadEnable
*/
MTCFUNC ZINT Mtc_CallDbSetVadEnable(ZBOOL bEnable);
/**
* @brief Get state of VAD.
*
* @retval ZTRUE indicate VAD is enabled.
* @retval ZFALSE indicate VAD is disabled.
*
* @see Mtc_CallDbSetVadEnable
*/
MTCFUNC ZBOOL Mtc_CallDbGetVadEnable(ZFUNC_VOID);
/**
* @brief Set mode of VAD.
*
* @param [in] ucMode Mode of VAD, @ref EN_MTC_VAD_TYPE.
*
* @retval ZOK on successfully.
* @retval ZFAILED on failed.
*
* @see Mtc_CallDbGetVadMode
*/
MTCFUNC ZINT Mtc_CallDbSetVadMode(ZUCHAR ucMode);
/**
* @brief Get mode of VAD.
*
* @return Current VAD mode, @ref EN_MTC_VAD_TYPE.
*
* @see Mtc_CallDbSetVadMode
*/
MTCFUNC ZUCHAR Mtc_CallDbGetVadMode(ZFUNC_VOID);
/**
* @brief Set state of AGC.
*
* @param [in] bEnable ZTRUE to enable AGC, ZFALSE to disable AGC.
*
* @retval ZOK on successfully.
* @retval ZFAILED on failed.
*
* @see Mtc_CallDbGetAgcEnable
*/
MTCFUNC ZINT Mtc_CallDbSetAgcEnable(ZBOOL bEnable);
/**
* @brief Get state of AGC.
*
* @retval ZTRUE indicate AGC is enabled.
* @retval ZFALSE indicate AGC is disabled.
*
* @see Mtc_CallDbSetAgcEnable
*/
MTCFUNC ZBOOL Mtc_CallDbGetAgcEnable(ZFUNC_VOID);
/**
* @brief Set mode of AGC.
*
* @param [in] ucMode Mode of AGC, @ref EN_MTC_GC_TYPE.
*
* @retval ZOK on successfully.
* @retval ZFAILED on failed.
*
* @see Mtc_CallDbGetAgcMode
*/
MTCFUNC ZINT Mtc_CallDbSetAgcMode(ZUCHAR ucMode);
/**
* @brief Get mode of AGC.
*
* @return Current AGC mode, @ref EN_MTC_GC_TYPE.
*
* @see Mtc_CallDbSetAgcMode
*/
MTCFUNC ZUCHAR Mtc_CallDbGetAgcMode(ZFUNC_VOID);
/**
* @brief Set target dBOV of AGC.
*
* @param [in] ucTargetDb Target dBOV of AGC, should be 0 - 30.
*
* @retval ZOK on successfully.
* @retval ZFAILED on failed.
*
* @see Mtc_CallDbGetAgcTarget
*/
MTCFUNC ZINT Mtc_CallDbSetAgcTarget(ZUCHAR ucTargetDb);
/**
* @brief Get target dBOV of AGC.
*
* @return Current target dBOV of AGC.
*
* @see Mtc_CallDbSetAgcTarget
*/
MTCFUNC ZUCHAR Mtc_CallDbGetAgcTarget(ZFUNC_VOID);
/**
* @brief Set state of RxAGC.
*
* @param [in] bEnable ZTRUE to enable RxAGC, ZFALSE to disable RxAGC.
*
* @retval ZOK on successfully.
* @retval ZFAILED on failed.
*
* @see Mtc_CallDbGetRxAgcEnable
*/
MTCFUNC ZINT Mtc_CallDbSetRxAgcEnable(ZBOOL bEnable);
/**
* @brief Get state of RxAGC.
*
* @retval ZTRUE indicate RxAGC is enabled.
* @retval ZFALSE indicate RxAGC is disabled.
*
* @see Mtc_CallDbSetRxAgcEnable
*/
MTCFUNC ZBOOL Mtc_CallDbGetRxAgcEnable(ZFUNC_VOID);
/**
* @brief Set mode of RxAGC.
*
* @param [in] ucMode Mode of RxAGC, @ref EN_MTC_RX_GC_TYPE.
*
* @retval ZOK on successfully.
* @retval ZFAILED on failed.
*
* @see Mtc_CallDbGetRxAgcMode
*/
MTCFUNC ZINT Mtc_CallDbSetRxAgcMode(ZUCHAR ucMode);
/**
* @brief Get mode of RxAGC.
*
* @return Current RxAGC mode, @ref EN_MTC_RX_GC_TYPE.
*
* @see Mtc_CallDbSetRxAgcMode
*/
MTCFUNC ZUCHAR Mtc_CallDbGetRxAgcMode(ZFUNC_VOID);
/**
* @brief Set target dBOV of RxAGC.
*
* @param [in] ucTargetDb Target dBOV of RxAGC, should be 0 - 30.
*
* @retval ZOK on successfully.
* @retval ZFAILED on failed.
*
* @see Mtc_CallDbGetRxAgcTarget
*/
MTCFUNC ZINT Mtc_CallDbSetRxAgcTarget(ZUCHAR ucTargetDb);
/**
* @brief Get target dBOV of RxAGC.
*
* @return Current target dBOV of RxAGC.
*
* @see Mtc_CallDbSetRxAgcTarget
*/
MTCFUNC ZUCHAR Mtc_CallDbGetRxAgcTarget(ZFUNC_VOID);
/**
* @brief Set state of ANR.
*
* @param [in] bEnable ZTRUE to enable ANR, ZFALSE to disable ANR.
*
* @retval ZOK on successfully.
* @retval ZFAILED on failed.
*
* @see Mtc_CallDbGetAnrEnable
*/
MTCFUNC ZINT Mtc_CallDbSetAnrEnable(ZBOOL bEnable);
/**
* @brief Get state of ANR.
*
* @retval ZTRUE indicate ANR is enabled.
* @retval ZFALSE indicate ANR is disabled.
*
* @see Mtc_CallDbSetAnrEnable
*/
MTCFUNC ZBOOL Mtc_CallDbGetAnrEnable(ZFUNC_VOID);
/**
* @brief Set mode of ANR.
*
* @param [in] ucMode Mode of ANR, @ref EN_MTC_NS_TYPE.
*
* @retval ZOK on successfully.
* @retval ZFAILED on failed.
*
* @see Mtc_CallDbGetAnrMode
*/
MTCFUNC ZINT Mtc_CallDbSetAnrMode(ZUCHAR ucMode);
/**
* @brief Get mode of ANR.
*
* @return Current mode of ANR, @ref EN_MTC_NS_TYPE.
*
* @see Mtc_CallDbSetAnrMode
*/
MTCFUNC ZUCHAR Mtc_CallDbGetAnrMode(ZFUNC_VOID);
/**
* @brief Set state of RxANR.
*
* @param [in] bEnable ZTRUE to enable RxANR, ZFALSE to disable RxANR.
*
* @retval ZOK on successfully.
* @retval ZFAILED on failed.
*
* @see Mtc_CallDbGetRxAnrEnable
*/
MTCFUNC ZINT Mtc_CallDbSetRxAnrEnable(ZBOOL bEnable);
/**
* @brief Get state of RxANR.
*
* @retval ZTRUE indicate RxANR is enabled.
* @retval ZFALSE indicate RxANR is disabled.
*
* @see Mtc_CallDbSetRxAnrEnable
*/
MTCFUNC ZBOOL Mtc_CallDbGetRxAnrEnable(ZFUNC_VOID);
/**
* @brief Set mode of RxANR.
*
* @param [in] ucMode Mode of RxANR, @ref EN_MTC_NS_TYPE.
*
* @retval ZOK on successfully.
* @retval ZFAILED on failed.
*
* @see Mtc_CallDbGetRxAnrMode
*/
MTCFUNC ZINT Mtc_CallDbSetRxAnrMode(ZUCHAR ucMode);
/**
* @brief Get mode of RxANR.
*
* @return Current mode of RxANR, @ref EN_MTC_NS_TYPE.
*
* @see Mtc_CallDbSetRxAnrMode
*/
MTCFUNC ZUCHAR Mtc_CallDbGetRxAnrMode(ZFUNC_VOID);
/**
* @brief Set state of audio redundant.
*
* @param [in] bEnable ZTRUE to enable audio redundant, ZFALSE to disable audio redundant.
*
* @retval ZOK on successfully.
* @retval ZFAILED on failed.
*
* @see Mtc_CallDbGetAudioRed
*/
MTCFUNC ZINT Mtc_CallDbSetAudioRed(ZBOOL bEnable);
/**
* @brief Get state of audio redundant.
*
* @retval ZTRUE indicate audio redundant is enabled.
* @retval ZFALSE indicate audio redundant is disabled.
*
* @see Mtc_CallDbSetAudioRed
*/
MTCFUNC ZBOOL Mtc_CallDbGetAudioRed(ZFUNC_VOID);
#define AUDIO_CODEC_SETTINGS
/**
* @brief Get supporting audio codec count
*
* @return The count of audio codec supported.
*/
MTCFUNC ZUINT Mtc_CallDbGetSuptAudioCodecCount(ZFUNC_VOID);
/**
* @brief Get supporting audio codec from database.
*
* @param [in] iIndex Codec index from 0 to (count - 1). Count get by
@ref Mtc_CallDbGetSuptAudioCodecCount.
*
* @return The string of Codec name successfully or empty string failed.
*
* @see @ref Mtc_CallDbGetSuptAudioCodecCount
*/
MTCFUNC ZCONST ZCHAR * Mtc_CallDbGetSuptAudioCodec(ZUINT iIndex);
/**
* @brief Get used audio codec count
*
* @return The count of audio codec supported.
*/
MTCFUNC ZUINT Mtc_CallDbGetAudioCodecCount(ZFUNC_VOID);
/**
* @brief Get audio codec from database.
*
* @param [in] ucPriority Codec priority.
*
* @return The string of Codec name successfully or empty string failed.
*
* @see @ref Mtc_CallDbSetAudioCodecByPriority
*/
MTCFUNC ZCHAR * Mtc_CallDbGetAudioCodecByPriority(ZUCHAR ucPriority);
/**
* @brief Set the audio codec enable or disable.
*
* @param [in] pcCodec Codec name.
* @param [in] bEnable ZTRUE for enable, other for disable.
*
* @retval ZOK Set the audio codec enable or disable successfully.
* @retval ZFAILED Set the audio codec enable or disable failed.
*
* @see
*/
MTCFUNC ZINT Mtc_CallDbSetAudioCodecEnable(ZCHAR *pcCodec,
ZBOOL bEnable);
/**
* @brief Set the audio codec priority.
*
* @param [in] pcName Codec name.
* @param [in] ucPriority Codec priority.
*
* @retval ZOK Set the audio codec priority successfully.
* @retval ZFAILED Set the audio codec priority failed.
*
* @see @ref Mtc_CallDbGetAudioCodecByPriority
*/
MTCFUNC ZINT Mtc_CallDbSetAudioCodecByPriority(ZCHAR *pcName,
ZUCHAR ucPriority);
#define AUDIO_DEVICE_SETTINGS
/**
* @brief Get audio device.
*
* @param [out] ppcInput Audio input device name.
* @param [out] ppcOutput Audio output device name.
*
* @retval ZOK get the audio device successfully.
* @retval ZFAILED get the audio device failed.
*/
MTCFUNC ZINT Mtc_CallDbGetAudioDevice(ZCHAR **ppcInput, ZCHAR **ppcOutput);
/**
* @brief Set audio device.
*
* @param [in] pcInput Audio input device name.
* @param [in] pcOutput Audio output device name.
*
* @retval ZOK Set the audio device successfully.
* @retval ZFAILED Set the audio device failed.
*/
MTCFUNC ZINT Mtc_CallDbSetAudioDevice(ZCHAR *pcInput, ZCHAR *pcOutput);
#define AUDIO_VOLUME_SETTINGS
/**
* @brief Get default volume value for speaker.
*
* @return Default volume value for speaker, from 0-20.
*/
MTCFUNC ZUINT Mtc_CallDbGetSpkDftVol(ZFUNC_VOID);
/**
* @brief Set default volume value for speaker.
*
* @param [in] iVol Default volume value for speaker, from 0-20.
*
* @retval ZOK Set successfully.
* @retval ZFAILED Set failed.
*/
MTCFUNC ZINT Mtc_CallDbSetSpkDftVol(ZUINT iVol);
#define VIDEO_CODEC_SETTINGS
/**
* @brief Get supporting video codec count
*
* @return The count of video codec supported.
*/
MTCFUNC ZUINT Mtc_CallDbGetSuptVideoCodecCount(ZFUNC_VOID);
/**
* @brief Get supporting video codec from database.
*
* @param [in] iIndex Codec index from 0 to (count - 1). Count get by
@ref Mtc_CallDbGetSuptVideoCodecCount.
*
* @return The string of Codec name successfully or empty string failed.
*
* @see @ref Mtc_CallDbGetSuptVideoCodecCount
*/
MTCFUNC ZCONST ZCHAR * Mtc_CallDbGetSuptVideoCodec(ZUINT iIndex);
/**
* @brief Get video codec count.
*
* @return Video used codec count.
*/
MTCFUNC ZUINT Mtc_CallDbGetVideoCodecCount(ZFUNC_VOID);
/**
* @brief Get video codec from database.
*
* @param [in] ucPriority Codec priority.
*
* @return The string of Codec name successfully or empty string failed.
*
* @see @ref Mtc_CallDbSetVideoCodecByPriority
*/
MTCFUNC ZCHAR * Mtc_CallDbGetVideoCodecByPriority(ZUCHAR ucPriority);
/**
* @brief Set the video codec enable or disable.
*
* @param [in] pcCodec Codec name.
* @param [in] bEnable ZTRUE for enable, other for disable.
*
* @retval ZOK Set the video codec enable or disable successfully.
* @retval ZFAILED Set the video codec enable or disable failed.
*
* @see
*/
MTCFUNC ZINT Mtc_CallDbSetVideoCodecEnable(ZCHAR *pcCodec,
ZBOOL bEnable);
/**
* @brief Set the video codec priority.
*
* @param [in] pcCodec Codec name.
* @param [in] ucPriority Codec priority.
*
* @retval ZOK Set the video codec priority successfully.
* @retval ZFAILED Set the video codec priority failed.
*
* @see @ref Mtc_CallDbGetVideoCodecByPriority
*/
MTCFUNC ZINT Mtc_CallDbSetVideoCodecByPriority(ZCHAR *pcCodec,
ZUCHAR ucPriority);
#define VIDEO_DEVICE_SETTINGS
/**
* @brief Get video device.
*
* @return The string of video capture device name or empty string failed.
*
* @see @ref Mtc_CallDbGetVideoCodecByPriority
*/
MTCFUNC ZCHAR * Mtc_CallDbGetVideoDevice(ZFUNC_VOID);
/**
* @brief Set video device.
*
* @param [in] pcCapture Video capture device name.
*
* @retval ZOK Set the video device successfully.
* @retval ZFAILED Set the video device failed.
*
* @see @ref Mtc_CallDbGetVideoCodecByPriority
*/
MTCFUNC ZINT Mtc_CallDbSetVideoDevice(ZCHAR *pcCapture);
#define VIDEO_PARAMETER_SETTINGS
/**
* @brief Get video bitrate.
*
* @retval Video bitrate parameter in bps.
*
* @see @ref Mtc_CallDbSetVideoBitrate
*/
MTCFUNC ZUINT Mtc_CallDbGetVideoBitrate();
/**
* @brief Set video bitrate.
*
* @param [in] iBitRate Video bitrate parameter in bps.
*
* @retval ZOK Set the video bitrate successfully.
* @retval ZFAILED Set the video bitrate failed.
*
* @see @ref Mtc_CallDbGetVideoBitrate
*/
MTCFUNC ZINT Mtc_CallDbSetVideoBitrate(ZUINT iBitRate);
/**
* @brief Get video frame rate.
*
* @retval Video frame rate parameter in fps.
*
* @see @ref Mtc_CallDbSetVideoFramerate
*/
MTCFUNC ZUINT Mtc_CallDbGetVideoFramerate();
/**
* @brief Set video frame rate.
*
* @param [in] iFrameRate Video frame rate parameter in fps.
*
* @retval ZOK Set the video frame rate successfully.
* @retval ZFAILED Set the video frame rate failed.
*
* @see @ref Mtc_CallDbGetVideoFramerate
*/
MTCFUNC ZINT Mtc_CallDbSetVideoFramerate(ZUINT iFrameRate);
/**
* @brief Get video resolution.
*
* @param [out] piWidth Pixel value in horizontal direction.
* @param [out] piHeight Pixel value in vertical direction.
*
* @retval ZOK Get the video resolution successfully.
* @retval ZFAILED Get the video resolution failed.
*
* @see @ref Mtc_CallDbSetVideoResolution
*/
MTCFUNC ZINT Mtc_CallDbGetVideoResolution(ZUINT *piWidth, ZUINT *piHeight);
/**
* @brief Set video resolution.
*
* @param [in] iWidth Pixel value in horizontal direction.
* @param [in] iHeight Pixel value in vertical direction.
*
* @retval ZOK Set the video resolution successfully.
* @retval ZFAILED Set the video resolution failed.
*
* @see @ref Mtc_CallDbGetVideoResolution
*/
MTCFUNC ZINT Mtc_CallDbSetVideoResolution(ZUINT iWidth, ZUINT iHeight);
/**
* @brief Get video resolution.
*
* @return The string of video resolution name or "UNKNOWN" failed.
*
* @see @ref Mtc_CallDbSetVideoResolutionX
*/
MTCFUNC ZCHAR * Mtc_CallDbGetVideoResolutionX();
/**
* @brief Set video resolution.
*
* @param [in] pcName Video resolution name string.
*
* @retval ZOK Set the video resolution successfully.
* @retval ZFAILED Set the video resolution failed.
*
* @see @ref Mtc_CallDbGetVideoResolutionX
*/
MTCFUNC ZINT Mtc_CallDbSetVideoResolutionX(ZCHAR *pcName);
#define VIDEO_QOS_SETTINGS
/**
* @brief Get media device manager option.
*
* @retval ZTRUE Enable media device manager.
* @retval ZFALSE Disable media device manager.
*
* @see @ref Mtc_CallDbSetMdmEnable
*/
MTCFUNC ZBOOL Mtc_CallDbGetMdmEnable(ZFUNC_VOID);
/**
* @brief Set media device manager option.
*
* @param [in] bEnable ZTRUE to enable media device manager, otherwise to disable.
*
* @retval ZOK Set successfully.
* @retval ZFAILED Set failed.
*
* @see @ref Mtc_CallDbGetMdmEnable
*/
MTCFUNC ZINT Mtc_CallDbSetMdmEnable(ZBOOL bEnable);
/**
* @brief Get resolution control of video stream.
*
* @retval ZTRUE Resolution control is enabled for video stream.
* @retval ZFALSE Resolution control is disabled for video stream.
*
* @see @ref Mtc_CallDbSetResolutionControl
*/
MTCFUNC ZBOOL Mtc_CallDbGetResolutionControl(ZFUNC_VOID);
/**
* @brief Set resolution control of video stream.
*
* @param [in] bEnable ZTRUE to enable resolution control, otherwise to disable.
*
* @retval ZOK Set successfully.
* @retval ZFAILED Set failed.
*
* @see @ref Mtc_CallDbGetResolutionControl
*/
MTCFUNC ZINT Mtc_CallDbSetResolutionControl(ZBOOL bEnable);
/**
* @brief Get framerate control of video stream.
*
* @retval ZTRUE Framerate control is enabled for video stream.
* @retval ZFALSE Framerate control is disabled for video stream.
*
* @see @ref Mtc_CallDbSetFramerateControl
*/
MTCFUNC ZBOOL Mtc_CallDbGetFramerateControl(ZFUNC_VOID);
/**
* @brief Set framerate control of video stream.
*
* @param [in] bEnable ZTRUE to enable framerate control, otherwise to disable.
*
* @retval ZOK Set successfully.
* @retval ZFAILED Set failed.
*
* @see @ref Mtc_CallDbGetFramerateControl
*/
MTCFUNC ZINT Mtc_CallDbSetFramerateControl(ZBOOL bEnable);
/**
* @brief Get CPU load control of video stream.
*
* @retval ZTRUE CPU load control is enabled for video stream.
* @retval ZFALSE CPU load control is disabled for video stream.
*
* @see @ref Mtc_CallDbSetCpuLoadControl
*/
MTCFUNC ZBOOL Mtc_CallDbGetCpuLoadControl(ZFUNC_VOID);
/**
* @brief Set CPU load control of video stream.
*
* @param [in] bEnable ZTRUE to enable CPU load control, otherwise to disable.
*
* @retval ZOK Set successfully.
* @retval ZFAILED Set failed.
*
* @see @ref Mtc_CallDbGetCpuLoadControl
*/
MTCFUNC ZINT Mtc_CallDbSetCpuLoadControl(ZBOOL bEnable);
/**
* @brief Get CPU load control of video stream.
*
* @return CPU load control target, from 0 to 100.
*
* @see @ref Mtc_CallDbSetCpuLoadTarget
*/
MTCFUNC ZUINT Mtc_CallDbGetCpuLoadTarget(ZFUNC_VOID);
/**
* @brief Set CPU load control of video stream.
*
* @param [in] iTarget CPU load control target, from 0 to 100.
*
* @retval ZOK Set successfully.
* @retval ZFAILED Set failed.
*
* @see @ref Mtc_CallDbGetCpuLoadTarget
*/
MTCFUNC ZINT Mtc_CallDbSetCpuLoadTarget(ZUINT iTarget);
/**
* @brief Get FIR of video stream.
*
* @retval ZTRUE FIR is enabled for video stream.
* @retval ZFALSE FIR is disabled for video stream.
*
* @see @ref Mtc_CallDbSetFir
*/
MTCFUNC ZBOOL Mtc_CallDbGetFir(ZFUNC_VOID);
/**
* @brief Set FIR of video stream.
*
* @param [in] bEnable ZTRUE to enable FIR, otherwise to disable.
*
* @retval ZOK Set successfully.
* @retval ZFAILED Set failed.
*
* @see @ref Mtc_CallDbGetFir
*/
MTCFUNC ZINT Mtc_CallDbSetFir(ZBOOL bEnable);
/**
* @brief Get FIR using INFO method of video stream.
*
* @retval ZTRUE FIR using INFO method is enabled for video stream.
* @retval ZFALSE FIR using INFO method is disabled for video stream.
*
* @see @ref Mtc_CallDbSetFirByInfo
*/
MTCFUNC ZBOOL Mtc_CallDbGetFirByInfo(ZFUNC_VOID);
/**
* @brief Set FIR using INFO method of video stream.
*
* @param [in] bEnable ZTRUE to enable FIR by INFO method, otherwise to disable.
*
* @retval ZOK Set successfully.
* @retval ZFAILED Set failed.
*
* @see @ref Mtc_CallDbGetFirByInfo
*/
MTCFUNC ZINT Mtc_CallDbSetFirByInfo(ZBOOL bEnable);
/**
* @brief Get key frame period of video stream.
*
* @return Key frame period in milliseconds for video stream.
*
* @see @ref Mtc_CallDbSetFramerateControl
*/
MTCFUNC ZUINT Mtc_CallDbGetKeyPeriod(ZFUNC_VOID);
/**
* @brief Set framerate control of video stream.
*
* @param [in] iTimeLen Key frame period in milliseconds.
*
* @retval ZOK Set successfully.
* @retval ZFAILED Set failed.
*
* @see @ref Mtc_CallDbGetKeyPeriod
*/
MTCFUNC ZINT Mtc_CallDbSetKeyPeriod(ZUINT iTimeLen);
/**
* @brief Get bandwidth efficiency mode of video stream.
*
* @retval ZTRUE BEM is enabled for video stream.
* @retval ZFALSE BEM is disabled for video stream.
*
* @see @ref Mtc_CallDbSetVideoBem
*/
MTCFUNC ZBOOL Mtc_CallDbGetVideoBem(ZFUNC_VOID);
/**
* @brief Set bandwidth efficiency mode of video stream.
*
* @param [in] bEnable ZTRUE to enable BEM, otherwise to disable BEM.
*
* @retval ZOK Set the video BEM option successfully.
* @retval ZFAILED Set the video BEM option failed.
*
* @see @ref Mtc_CallDbGetVideoBem
*/
MTCFUNC ZINT Mtc_CallDbSetVideoBem(ZBOOL bEnable);
/**
* @brief Get bandwidth for video stream.
*
* @param [out] piDownBps Downstream bandwidth in bps.
* @param [out] piUpBps Upstream bandwidth in bps.
*
* @retval ZOK Set the video bandwidth option successfully.
* @retval ZFAILED Set the video bandwidth option failed.
*/
MTCFUNC ZINT Mtc_CallDbGetVideoBandwidth(ZUINT *piDownBps, ZUINT *piUpBps);
/**
* @brief Set bandwidth for video stream.
*
* @param [in] iDownBps Downstream bandwidth in bps.
* @param [in] iUpBps Upstream bandwidth in bps.
*
* @retval ZOK Set the video bandwidth option successfully.
* @retval ZFAILED Set the video bandwidth option failed.
*/
MTCFUNC ZINT Mtc_CallDbSetVideoBandwidth(ZUINT iDownBps, ZUINT iUpBps);
/**
* @brief Get coordination of video orientation is enabled or not for send.
*
* @retval ZTRUE Coordination of video orientation is enabled for send.
* @retval ZFALSE Coordination of video orientation is disabled for send.
*
* @see @ref Mtc_CallDbSetVideoOrientSend
*/
MTCFUNC ZBOOL Mtc_CallDbGetVideoOrientSend(ZFUNC_VOID);
/**
* @brief Set coordination of video orientation is enabled or not for send.
*
* @param [in] bEnable ZTRUE enable coordination of video orientation for send.
*
* @retval ZOK Set option successfully.
* @retval ZFAILED Set option failed.
*
* @see @ref Mtc_CallDbGetVideoOrientSend
*/
MTCFUNC ZINT Mtc_CallDbSetVideoOrientSend(ZBOOL bEnable);
/**
* @brief Get coordination of video orientation is enabled or not for receive.
*
* @retval ZTRUE Coordination of video orientation is enabled for receive.
* @retval ZFALSE Coordination of video orientation is disabled for receive.
*
* @see @ref Mtc_CallDbSetVideoOrientRecv
*/
MTCFUNC ZBOOL Mtc_CallDbGetVideoOrientRecv(ZFUNC_VOID);
/**
* @brief Set coordination of video orientation is enabled or not for receive.
*
* @param [in] bEnable ZTRUE enable coordination of video orientation for receive.
*
* @retval ZOK Set option successfully.
* @retval ZFAILED Set option failed.
*
* @see @ref Mtc_CallDbGetVideoOrientRecv
*/
MTCFUNC ZINT Mtc_CallDbSetVideoOrientRecv(ZBOOL bEnable);
/**
* @brief Get RTP extension ID for coordination of video orientation.
*
* @return RTP extension ID.
*
* @see @ref Mtc_CallDbSetVideoOrientId
*/
MTCFUNC ZUINT Mtc_CallDbGetVideoOrientId(ZFUNC_VOID);
/**
* @brief Set RTP extension ID for coordination of video orientation.
*
* @param [in] iId RTP extension ID.
*
* @retval ZOK Set option successfully.
* @retval ZFAILED Set option failed.
*
* @see @ref Mtc_CallDbGetVideoOrientId
*/
MTCFUNC ZINT Mtc_CallDbSetVideoOrientId(ZUINT iId);
/**
* @brief Get Picture ID is enabled or not for send.
*
* @retval ZTRUE Picture ID is enabled for send.
* @retval ZFALSE Picture ID is disabled for send.
*
* @see @ref Mtc_CallDbSetPictureIdSend
*/
MTCFUNC ZBOOL Mtc_CallDbGetPictureIdSend(ZFUNC_VOID);
/**
* @brief Set Picture ID is enabled or not for send.
*
* @param [in] bEnable ZTRUE enable Picture ID for send.
*
* @retval ZOK Set option successfully.
* @retval ZFAILED Set option failed.
*
* @see @ref Mtc_CallDbGetPictureIdSend
*/
MTCFUNC ZINT Mtc_CallDbSetPictureIdSend(ZBOOL bEnable);
/**
* @brief Get Picture ID is enabled or not for receive.
*
* @retval ZTRUE Picture ID is enabled for receive.
* @retval ZFALSE Picture ID is disabled for receive.
*
* @see @ref Mtc_CallDbSetPictureIdRecv
*/
MTCFUNC ZBOOL Mtc_CallDbGetPictureIdRecv(ZFUNC_VOID);
/**
* @brief Set Picture ID is enabled or not for receive.
*
* @param [in] bEnable ZTRUE enable Picture ID for receive.
*
* @retval ZOK Set option successfully.
* @retval ZFAILED Set option failed.
*
* @see @ref Mtc_CallDbGetPictureIdRecv
*/
MTCFUNC ZINT Mtc_CallDbSetPictureIdRecv(ZBOOL bEnable);
/**
* @brief Get RTP extension ID for Picture ID.
*
* @return RTP extension ID.
*
* @see @ref Mtc_CallDbSetPictureIdId
*/
MTCFUNC ZUINT Mtc_CallDbGetPictureIdId(ZFUNC_VOID);
/**
* @brief Set RTP extension ID for Picture ID.
*
* @param [in] iId RTP extension ID.
*
* @retval ZOK Set option successfully.
* @retval ZFAILED Set option failed.
*
* @see @ref Mtc_CallDbGetPictureIdId
*/
MTCFUNC ZINT Mtc_CallDbSetPictureIdId(ZUINT iId);
/**
* @brief Get ARS option of video stream.
*
* @retval ZTRUE ARS is enabled for video stream.
* @retval ZFALSE ARS is disabled for video stream.
*
* @see @ref Mtc_CallDbSetVideoArs
*/
MTCFUNC ZBOOL Mtc_CallDbGetVideoArs(ZFUNC_VOID);
/**
* @brief Set ARS option of video stream.
*
* @param [in] bEnable ZTRUE to enable ARS, otherwise to disable ARS.
*
* @retval ZOK Set the video ARS option successfully.
* @retval ZFAILED Set the video ARS option failed.
*
* @see @ref Mtc_CallDbGetVideoArs
*/
MTCFUNC ZINT Mtc_CallDbSetVideoArs(ZBOOL bEnable);
/**
* @brief Get ARS fixed bitrate of video stream.
*
* @return ARS fixed bitrate in kbps
*
* @see @ref Mtc_CallDbSetVideoArsFixBitrate
*/
MTCFUNC ZUINT Mtc_CallDbGetVideoArsFixBitrate(ZFUNC_VOID);
/**
* @brief Set ARS fixed bitrate of video stream.
*
* @param [in] iBitrate ARS fixed bitrate in kbps.
*
* @retval ZOK Set the video ARS option successfully.
* @retval ZFAILED Set the video ARS option failed.
*
* @see @ref Mtc_CallDbGetVideoArsFixBitrate
*/
MTCFUNC ZINT Mtc_CallDbSetVideoArsFixBitrate(ZUINT iBitrate);
/**
* @brief Set mode of ARS.
*
* @param [in] ucMode Mode of ARS, @ref EN_MTC_ARS_TYPE.
*
* @retval ZOK on successfully.
* @retval ZFAILED on failed.
*
* @see Mtc_CallDbGetArsMode
*/
MTCFUNC ZINT Mtc_CallDbSetArsMode(ZUCHAR ucMode);
/**
* @brief Get mode of ARS.
*
* @return Current ARS mode, @ref EN_MTC_ARS_TYPE.
*
* @see Mtc_CallDbSetArsMode
*/
MTCFUNC ZUCHAR Mtc_CallDbGetArsMode(ZFUNC_VOID);
/**
* @brief Get ARS parameter from database.
*
* @param [out] piBrHi Highest bitrate.
* @param [out] piBrLo Lowest bitrate.
* @param [out] piFrHi Highest framerate.
* @param [out] piFrLo Lowest framerate.
* @retval ZOK Get successfully.
* @retval ZFAILED Get failed.
*
* @see @ref Mtc_CallDbSetVideoArsParm
*/
MTCFUNC ZINT Mtc_CallDbGetVideoArsParm(ZUINT * piBrHi, ZUINT * piBrLo,
ZUINT * piFrHi, ZUINT * piFrLo);
/**
* @brief Set ARS parameter.
*
* @param [in] iBrHi Highest bitrate.
* @param [in] iBrLo Lowest bitrate.
* @param [in] iFrHi Highest framerate.
* @param [in] iFrLo Lowest framerate.
*
* @retval ZOK Set successfully.
* @retval ZFAILED Set failed.
*
* @see @ref Mtc_CallDbGetVideoArsParm
*/
MTCFUNC ZINT Mtc_CallDbSetVideoArsParm(ZUINT iBrHi, ZUINT iBrLo,
ZUINT iFrHi, ZUINT iFrLo);
/**
* @brief Set ARS parameter.
*
* @param [in] bNetWorkType the network type.
*
* @retval ZOK Set successfully.
* @retval ZFAILED Set failed.
*
* @see @ref Mtc_CallDbGetVideoArsParm
*/
MTCFUNC ZINT Mtc_CallDbSetVideoArsParmX(ZBOOL bNetWorkType);
/**
* @brief Set option of red/fec.
*
* @param [in] bEnable ZTRUE to enable red/fec, otherwise to disable red/fec.
*
* @retval ZOK Set successfully.
* @retval ZFAILED Set failed.
*
* @see @ref Mtc_CallDbGetVideoRedFec
*/
MTCFUNC ZINT Mtc_CallDbSetVideoRedFec(ZBOOL bEnable);
/**
* @brief Get option of red/fec.
*
* @retval ZTRUE ARS is enabled red/fec.
* @retval ZFALSE ARS is disabled red/fec.
*
* @see @ref Mtc_CallDbSetVideoRedFec
*/
MTCFUNC ZBOOL Mtc_CallDbGetVideoRedFec();
#define RTP_RTCP_SETTINGS
/**
* @brief Get RTP port from database.
*
* @param [out] pwAMinPort RTP audio min port.
* @param [out] pwAMaxPort RTP audio max port.
* @param [out] pwVMinPort RTP video min port.
* @param [out] pwVMaxPort RTP video max port.
* @retval ZOK Get RTP port successfully.
* @retval ZFAILED Get RTP port failed.
*
* @see @ref Mtc_CallDbSetRtpPort
*/
MTCFUNC ZINT Mtc_CallDbGetRtpPort(ZUSHORT *pwAMinPort, ZUSHORT *pwAMaxPort,
ZUSHORT *pwVMinPort, ZUSHORT *pwVMaxPort);
/**
* @brief Set RTP port.
*
* @param [in] wAMinPort RTP audio min port.
* @param [in] wAMaxPort RTP audio max port.
* @param [in] wVMinPort RTP video min port.
* @param [in] wVMaxPort RTP video max port.
*
* @retval ZOK Set RTP port successfully.
* @retval ZFAILED Set RTP port failed.
*
* @see @ref Mtc_CallDbGetRtpPort
*/
MTCFUNC ZINT Mtc_CallDbSetRtpPort(ZUSHORT wAMinPort, ZUSHORT wAMaxPort,
ZUSHORT wVMinPort, ZUSHORT wVMaxPort);
/**
* @brief Get RTP break detection time length in seconds from database.
*
* @return RTP break detection time length.
*
* @see Mtc_CallDbSetRtpBreakTime
*/
MTCFUNC ZUINT Mtc_CallDbGetRtpBreakTime(ZFUNC_VOID);
/**
* @brief Set RTP break detection time length in seconds.
*
* @param [in] iTimeLen RTP break detection time length in seconds.
*
* @retval ZOK Set RTP break detection time length successfully.
* @retval ZFAILED Set RTP break detection time length failed.
*
* @see Mtc_CallDbGetRtpBreakTime
*/
MTCFUNC ZINT Mtc_CallDbSetRtpBreakTime(ZUINT iTimeLen);
#define SRTP_SETTINGS
/**
* @brief Get SRTP crypto type from database.
*
* @return SRTP crypto type, @ref EN_MTC_DB_SRTP_CRYPTO_TYPE.
*
* @see Mtc_CallDbSetSrtpCryptoType
*/
MTCFUNC ZUINT Mtc_CallDbGetSrtpCryptoType(ZFUNC_VOID);
/**
* @brief Set SRTP crypto type.
*
* @param [in] iType SRTP crypto type, @ref EN_MTC_DB_SRTP_CRYPTO_TYPE.
*
* @retval ZOK Set SRTP crypto type successfully.
* @retval ZFAILED Set SRTP crypto type failed.
*
* @see Mtc_CallDbGetSrtpCryptoType
*/
MTCFUNC ZINT Mtc_CallDbSetSrtpCryptoType(ZUINT iType);
/**
* @brief Get authenticated SRTP option from database.
*
* @retval ZTRUE Enable authenticated SRTP.
* @retval ZFALSE Disable authenticated SRTP.
*
* @see @ref Mtc_CallDbSetSrtpAuthRtp
*/
MTCFUNC ZBOOL Mtc_CallDbGetSrtpAuthRtp(ZFUNC_VOID);
/**
* @brief Set authenticated SRTP option.
*
* @param [in] bEnable ZTRUE to enable authenticated SRTP, ZFALSE to disable.
*
* @retval ZOK Set authenticated SRTP option successfully.
* @retval ZFAILED Set authenticated SRTP option failed.
*
* @see @ref Mtc_CallDbGetSrtpAuthRtp
*/
MTCFUNC ZINT Mtc_CallDbSetSrtpAuthRtp(ZBOOL bEnable);
/**
* @brief Get encrypted SRTP option from database.
*
* @retval ZTRUE Enable encrypted SRTP.
* @retval ZFALSE Disable encrypted SRTP.
*
* @see @ref Mtc_CallDbSetSrtpEncryptRtp
*/
MTCFUNC ZBOOL Mtc_CallDbGetSrtpEncryptRtp(ZFUNC_VOID);
/**
* @brief Set encrypted SRTP option.
*
* @param [in] bEnable ZTRUE to enable encrypted SRTP, ZFALSE to disable.
*
* @retval ZOK Set encrypted SRTP option successfully.
* @retval ZFAILED Set encrypted SRTP option failed.
*
* @see @ref Mtc_CallDbGetSrtpEncryptRtp
*/
MTCFUNC ZINT Mtc_CallDbSetSrtpEncryptRtp(ZBOOL bEnable);
/**
* @brief Get encrypted SRTCP option from database.
*
* @retval ZTRUE Enable encrypted SRTCP.
* @retval ZFALSE Disable encrypted SRTCP.
*
* @see @ref Mtc_CallDbSetSrtpEncryptRtcp
*/
MTCFUNC ZBOOL Mtc_CallDbGetSrtpEncryptRtcp(ZFUNC_VOID);
/**
* @brief Set encrypted SRTCP option.
*
* @param [in] bEnable ZTRUE to enable encrypted SRTCP, ZFALSE to disable.
*
* @retval ZOK Set encrypted SRTCP option successfully.
* @retval ZFAILED Set encrypted SRTCP option failed.
*
* @see @ref Mtc_CallDbGetSrtpEncryptRtcp
*/
MTCFUNC ZINT Mtc_CallDbSetSrtpEncryptRtcp(ZBOOL bEnable);
#define TRANSPORT_PARAMETER_SETTINGS
/**
* @brief Get NACK option from database.
*
* @retval ZTRUE Start NACK.
* @retval ZFALSE Do not start NACK.
*
* @see @ref Mtc_CallDbSetAudioNackEnable
*/
MTCFUNC ZBOOL Mtc_CallDbGetAudioNackEnable(ZFUNC_VOID);
/**
* @brief Set NACK option.
*
* @param [in] bEnable NACK option.
*
* @retval ZOK Set NACK option successfully.
* @retval ZFAILED Set NACK option failed.
*
* @see @ref Mtc_CallDbGetAudioNackEnable
*/
MTCFUNC ZINT Mtc_CallDbSetAudioNackEnable(ZBOOL bEnable);
/**
* @brief Get NACK option from database.
*
* @retval ZTRUE Start NACK.
* @retval ZFALSE Do not start NACK.
*
* @see @ref Mtc_CallDbSetVideoNackEnable
*/
MTCFUNC ZBOOL Mtc_CallDbGetVideoNackEnable(ZFUNC_VOID);
/**
* @brief Set NACK option.
*
* @param [in] bEnable NACK option.
*
* @retval ZOK Set NACK option successfully.
* @retval ZFAILED Set NACK option failed.
*
* @see @ref Mtc_CallDbGetVideoNackEnable
*/
MTCFUNC ZINT Mtc_CallDbSetVideoNackEnable(ZBOOL bEnable);
/**
* @brief Get NACK RTT range from database.
*
* @param [out] piLow NACK RTT range lowest value in miliseconds.
* @param [out] piHigh NACK RTT range highest value in miliseconds.
*
* @retval ZOK Get NACK RTT range successfully.
* @retval ZFAILED Get NACK RTT range failed.
*
* @see @ref Mtc_CallDbSetVideoNackRttRange
*/
MTCFUNC ZINT Mtc_CallDbGetVideoNackRttRange(ZUINT *piLow, ZUINT *piHigh);
/**
* @brief Set NACK RTT range.
*
* @param [in] iLow NACK RTT range lowest value in miliseconds.
* @param [in] iHigh NACK RTT range highest value in miliseconds.
*
* @retval ZOK Set NACK RTT range successfully.
* @retval ZFAILED Set NACK RTT range failed.
*
* @see @ref Mtc_CallDbGetVideoNackRttRange
*/
MTCFUNC ZINT Mtc_CallDbSetVideoNackRttRange(ZUINT iLow, ZUINT iHigh);
/**
* @brief Get TMMBR option from database.
*
* @retval ZTRUE Start TMMBR.
* @retval ZFALSE Do not start TMMBR.
*
* @see @ref Mtc_CallDbSetTmmbrEnable
*/
MTCFUNC ZBOOL Mtc_CallDbGetTmmbrEnable(ZFUNC_VOID);
/**
* @brief Set TMMBR option.
*
* @param [in] bEnable TMMBR option.
*
* @retval ZOK Set TMMBR option successfully.
* @retval ZFAILED Set TMMBR option failed.
*
* @see @ref Mtc_CallDbGetTmmbrEnable
*/
MTCFUNC ZINT Mtc_CallDbSetTmmbrEnable(ZBOOL bEnable);
/**
* @brief Get audio rtcp-mux option from database.
*
* @retval ZTRUE Start audio rtcp-mux.
* @retval ZFALSE Do not start audio rtcp-mux.
*
* @see @ref Mtc_CallDbSetAudioRtcpMuxEnable
*/
MTCFUNC ZBOOL Mtc_CallDbGetAudioRtcpMuxEnable(ZFUNC_VOID);
/**
* @brief Set audio rtcp-mux option.
*
* @param [in] bEnable audio rtcp-mux option.
*
* @retval ZOK Set audio rtcp-mux option successfully.
* @retval ZFAILED Set audio rtcp-mux option failed.
*
* @see @ref Mtc_CallDbGetAudioRtcpMuxEnable
*/
MTCFUNC ZINT Mtc_CallDbSetAudioRtcpMuxEnable(ZBOOL bEnable);
/**
* @brief Get video rtcp-mux option from database.
*
* @retval ZTRUE Start video rtcp-mux.
* @retval ZFALSE Do not start video rtcp-mux.
*
* @see @ref Mtc_CallDbSetVideoRtcpMuxEnable
*/
MTCFUNC ZBOOL Mtc_CallDbGetVideoRtcpMuxEnable(ZFUNC_VOID);
/**
* @brief Set video rtcp-mux option.
*
* @param [in] bEnable video rtcp-mux option.
*
* @retval ZOK Set video rtcp-mux option successfully.
* @retval ZFAILED Set video rtcp-mux option failed.
*
* @see @ref Mtc_CallDbGetVideoRtcpMuxEnable
*/
MTCFUNC ZINT Mtc_CallDbSetVideoRtcpMuxEnable(ZBOOL bEnable);
/**
* @brief Get RPSI option from database.
*
* @retval ZTRUE Start RPSI.
* @retval ZFALSE Do not start RPSI.
*
* @see @ref Mtc_CallDbSetRpsiEnable
*/
MTCFUNC ZBOOL Mtc_CallDbGetRpsiEnable(ZFUNC_VOID);
/**
* @brief Set RPSI option.
*
* @param [in] bEnable RPSI option.
*
* @retval ZOK Set RPSI option successfully.
* @retval ZFAILED Set RPSI option failed.
*
* @see @ref Mtc_CallDbGetRpsiEnable
*/
MTCFUNC ZINT Mtc_CallDbSetRpsiEnable(ZBOOL bEnable);
/**
* @brief Get small NALU option from database.
*
* @retval ZTRUE Enable small NALU.
* @retval ZFALSE Disable small NALU.
*
* @see @ref Mtc_CallDbSetSmallNaluEnable
*/
MTCFUNC ZBOOL Mtc_CallDbGetSmallNaluEnable(ZFUNC_VOID);
/**
* @brief Set small NALU option.
*
* @param [in] bEnable Small NALU option.
*
* @retval ZOK Set small NALU option successfully.
* @retval ZFAILED Set small NALU option failed.
*
* @see @ref Mtc_CallDbGetSmallNaluEnable
*/
MTCFUNC ZINT Mtc_CallDbSetSmallNaluEnable(ZBOOL bEnable);
/**
* @brief Get packet time length from database.
*
* @return Packet time length.
*
* @see Mtc_CallDbSetPtime
*/
MTCFUNC ZUINT Mtc_CallDbGetPtime(ZFUNC_VOID);
/**
* @brief Set packet time length.
*
* @param [in] iTimeLen Packet time length.
*
* @retval ZOK Set successfully.
* @retval ZFAILED Set failed.
*
* @see Mtc_CallDbGetPtime
*/
MTCFUNC ZINT Mtc_CallDbSetPtime(ZUINT iTimeLen);
/**
* @brief Get RUDP option from database.
*
* @retval ZTRUE Start RUDP.
* @retval ZFALSE Do not start RUDP.
*
* @see @ref Mtc_CallDbSetAudioRudpEnable
*/
MTCFUNC ZBOOL Mtc_CallDbGetArcRudpMode(ZFUNC_VOID);
/**
* @brief Set RUDP option.
*
* @param [in] bEnable RUDP option.
*
* @retval ZOK Set RUDP option successfully.
* @retval ZFAILED Set RUDP option failed.
*
* @see @ref Mtc_CallDbGetAudioRudpEnable
*/
MTCFUNC ZINT Mtc_CallDbSetArcRudpMode(ZBOOL bEnable);
#define SERVICE_SETTINGS
/**
* @brief Get the call forward unconditional information.
*
* @param [out] ppcUri Unconditional call forward uri.
*
* @retval ZTRUE Call forword on uncoditional enabled.
* @retval ZFALSE Call forword on uncoditional disabled.
*
* @see @ref Mtc_CallDbSetCfuInfo
*/
MTCFUNC ZBOOL Mtc_CallDbGetCfuInfo(ZCHAR **ppcUri);
/**
* @brief Set the call forward unconditional information.
*
* @param [in] bEnable Unconditional call forward option.
* @param [in] pcUri Unconditional call forward URI.
*
* @retval ZOK Set call forward unconditional information successfully.
* @retval ZFAILED Set call forward unconditional information failed.
*
* @see @ref Mtc_CallDbGetCfuInfo
*/
MTCFUNC ZINT Mtc_CallDbSetCfuInfo(ZBOOL bEnable, ZCHAR *pcUri);
/**
* @brief Get the call forward on busy information.
*
* @param [out] ppcUri On busy call forward uri.
*
* @retval ZTRUE Call forword on busy enabled.
* @retval ZFALSE Call forword on busy disabled.
*
* @see @ref Mtc_CallDbSetCfbInfo
*/
MTCFUNC ZBOOL Mtc_CallDbGetCfbInfo(ZCHAR **ppcUri);
/**
* @brief Set the call forward on busy information.
*
* @param [in] bEnable On busy call forward option.
* @param [in] pcUri On busy call forward URI.
*
* @retval ZOK Set call forward on busy information successfully.
* @retval ZFAILED Set call forward on busy information failed.
*
* @see @ref Mtc_CallDbGetCfbInfo
*/
MTCFUNC ZINT Mtc_CallDbSetCfbInfo(ZBOOL bEnable, ZCHAR *pcUri);
/**
* @brief Get call forward on no answer information.
*
* @param [out] ppcUri No answer call forward uri.
* @param [out] piWaitLen No answer call forward wait time length.
*
* @retval ZTRUE Call forword on no answer enabled.
* @retval ZFALSE Call forword on no answer disabled.
*
* @see @ref Mtc_CallDbSetCfnaInfo
*/
MTCFUNC ZBOOL Mtc_CallDbGetCfnaInfo(ZCHAR **ppcUri, ZUINT *piWaitLen);
/**
* @brief Set call forward no answer information.
*
* @param [in] bEnable No answer call forward option.
* @param [in] pcUri No answer call forward URI.
* @param [in] iWaitLen No answer call forward wait time length.
*
* @retval ZOK Set call forward no answer information successfully.
* @retval ZFAILED Set call forward no answer information failed.
*
* @see @ref Mtc_CallDbGetCfnaInfo
*/
MTCFUNC ZINT Mtc_CallDbSetCfnaInfo(ZBOOL bEnable, ZCHAR *pcUri,
ZUINT iWaitLen);
/**
* @brief Get symmetrical negotiation from database.
*
* @retval ZTRUE Symmetrical negotiation is enable.
* @retval ZFALSE Symmetrical negotiation is disable.
*
* @see @ref Mtc_CallDbSetSymNego
*/
MTCFUNC ZBOOL Mtc_CallDbGetSymNego();
/**
* @brief Set symmetrical negotiation.
*
* @param [in] bEnable ZTRUE to enable symmetrical negotiation.
*
* @retval ZOK Set the option successfully.
* @retval ZFAILED Set the option option failed.
*
* @see @ref Mtc_CallDbGetSymNego
*/
MTCFUNC ZINT Mtc_CallDbSetSymNego(ZBOOL bEnable);
#ifdef __cplusplus
}
#endif
#endif /* _MTC_CALL_DB_H__ */