summaryrefslogtreecommitdiff
path: root/ReleaseNotes.txt
blob: bc3757ce1d11d0b3ad3a37a82df7a0bb0a9d84df (plain)
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
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.04.05

Date:		April 12, 2011

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE
	
- Rout Noise Reduction features are no more supported
- Stop events on 2100Hz are only supported from firmware 01.06.00.	

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-9568: The lAecDefaultErlDb parameter can now be set down to -30dB.

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-5157 : 16-bit architectures are not supported by the API.

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.04.04

Date:		November 11, 2010

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE
	
- Rout Noise Reduction features are no more supported
- Stop events on 2100Hz are only supported from firmware 01.06.00.	

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

NONE

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-8871: Error when using conversion memory with playout buffers.
PR-8873: cOCT6100_ERR_DEBUG_GET_DATA_MODE_CANNOT_CHANGE error incorrectly returned.


-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-5157 : 16-bit architectures are not supported by the API.

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.04.03

Date:		July 26, 2010

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE
	
- Rout Noise Reduction features are no more supported
- Stop events on 2100Hz are only supported from firmware 01.06.00.	

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-8477: Modification to a custom feature

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-5157 : 16-bit architectures are not supported by the API.

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.04.02

Date:		July 21, 2010

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE
	
- Rout Noise Reduction features are no more supported
- Stop events on 2100Hz are only supported from firmware 01.06.00.	

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

NONE

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-8477: Fixed custom feature

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-5157 : 16-bit architectures are not supported by the API.

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.04.01

Date:		July 16, 2010

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE
	
- Rout Noise Reduction features are no more supported
- Stop events on 2100Hz are only supported from firmware 01.06.00.	

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-8031: Improved the processor check in the Oct6100InterruptServiceRoutine
PR-8477: Improved check of BIST results in Oct6100ApiDecodeKeyAndBist function

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-8478: cOCT6100_ERR_CHANNEL_OUT_OF_MIXER_EVENTS error when calling
         Oct6100ChannelModify

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-5157 : 16-bit architectures are not supported by the API.

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.04.00

Date:		December 15, 2009

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

	Modified function:	Oct6100ChipOpen
		Added parameter:	fAllowDynamicRecording

        Added functions:	Oct6100ApiEnableChannelRecording
				Oct6100ApiDisableChannelRecording
		

- Rout Noise Reduction features are no more supported
- Stop events on 2100Hz are only supported from firmware 01.06.00.	

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-7958: Added the possibility to enable the channel recording after the chip 
         open

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-5157 : 16-bit architectures are not supported by the API.

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.03.04

Date:		November 25, 2009

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

- Rout Noise Reduction features are no more supported
- Stop events on 2100Hz are only supported from firmware 01.06.00.	

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

NONE

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-7925 : Switching from cOCT6100_ECHO_OP_MODE_NORMAL to 
          cOCT6100_ECHO_OP_MODE_NO_ECHO does not clear the echo path model.

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-5157 : 16-bit architectures are not supported by the API.

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.03.03

Date:		October 22, 2009

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

- Rout Noise Reduction features are no more supported
- Stop events on 2100Hz are only supported from firmware 01.06.00.	

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

NONE
-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-7826 : Compilation error for some compilers.

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-5157 : 16-bit architectures are not supported by the API.

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.03.02

Date:		October 2, 2009

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

- Rout Noise Reduction features are no more supported
- Stop events on 2100Hz are only supported from firmware 01.06.00.	

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

NONE

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-7795 : Core Dump Causes OCT6100 Failure

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-5157 : 16-bit architectures are not supported by the API.

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.03.01

Date:		September 24, 2009

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

- Rout Noise Reduction features are no more supported
- Stop events on 2100Hz are only supported from firmware 01.06.00.	

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

Custom Changes
#ifdef cOCT6100_ADD_HUAWEI_CODE
PR-7754 : Changed default value for lRoutNoiseReductionLevelGainDb to -12
#endif


-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-5157 : 16-bit architectures are not supported by the API.

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.03.00

Date:		September 10, 2009

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

- Rout Noise Reduction features are no more supported
- Stop events on 2100Hz are only supported from firmware 01.06.00.	

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-7532 : Added support for the core dump mode in the Oct6100DebugGetData 
          function (cOCT6100_DEBUG_GET_DATA_MODE_CORE_DUMP).


-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-5157 : 16-bit architectures are not supported by the API.

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.02.04

Date:		July 30, 2009

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

- Rout Noise Reduction features are no more supported
- Stop events on 2100Hz are only supported from firmware 01.06.00.	

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-7532 : Added support for special firmware with 385 channels.

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-5157 : 16 bit architectures is not supported by the API

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.02.03

Date:		March 30, 2008

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

- Rout Noise Reduction features are no more supported
- Stop events on 2100Hz are only supported from firmware 01.06.00.	

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-7183 : Added processor check in the Oct6100InterruptServiceRoutine

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-5157 : 16 bit architectures is not supported by the API

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.02.02

Date:		January 29, 2008

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE


- Rout Noise Reduction features are no more supported
- Stop events on 2100Hz are only supported from firmware 01.06.00.	

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

NONE

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE



-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-5157 : 16 bit architectures is not supported by the API

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.02.01

Date:		December 22, 2008

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE


- Rout Noise Reduction features are no more supported
- Stop events on 2100Hz are only supported from firmware 01.06.00.	

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

NONE

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-6898 : Odd image size not supported properly.

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-5157 : 16 bit architectures is not supported by the API

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.02.00

Date:		September 9, 2008

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE


- Rout Noise Reduction features are no more supported 
- Stop events on 2100Hz are only supported from firmware 01.06.00.	

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

NONE

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-6588 : Echo artifacts heard during convergence.


-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-5157 : 16 bit architectures is not supported by the API

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.01.03

Date:		August 27, 2008

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE
   
- Rout Noise Reduction features are no more supported 
- Stop events on 2100Hz are only supported from firmware 01.06.00.	
					
-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

- Custom change

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-5157 : 16 bit architectures is not supported by the API

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.01.02

Date:		March 7, 2008

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE
   
- Rout Noise Reduction features are no more supported 
- Stop events on 2100Hz are only supported from firmware 01.06.00.	
					
-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

- Custom change

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-5157 : 16 bit architectures is not supported by the API

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.01.01

Date:		February 11, 2008

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE
   
- Rout Noise Reduction features are no more supported 
- Stop events on 2100Hz are only supported from firmware 01.06.00.	
					
-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

NONE

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-5674 : Modify function does not work properly for codecs

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-5157 : 16 bit architectures is not supported by the API

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.01.00

Date:		November 29, 2007

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE
   
- Rout Noise Reduction features are no more supported 
- Stop events on 2100Hz are only supported from firmware 01.06.00.	
					
-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-3828 : Added a better check for the firmware image when the chip is opened.
PR-5075 : Added a specific error when the SHORT BIST mode is not supported by
          the firmware.

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-5570 : Law conversion must NOT be possible on the Rin-Rout path when a channel 
          is in BIDIR mode.
PR-5478 : Stop Event generated when not requested.
PR-5431 : Two consecutive calls to Oct6100DebugGetData corrupts timestamp sequence.
PR-3252 : Caller ID returns cOCT6100_ERR_CALLER_ID_NOT_ENOUGH_PLAYOUT_EVENTS error 
          when it should not.	

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-5157 : 16 bit architectures is not supported by the API

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR49

Date:		September 24, 2007

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

          Stop events on 2100Hz are only supported from firmware 01.06.00.
					
-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-5337 : Added check if the processor timestamps equal zero.
PR-5283 : Changed the PCM Leak check to support firmware 01.06.00.

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-5277 : DTMF Tones can not be detected when only one channel is added to a 
          conference bridge

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode
PR-5157 : 16 bit architectures not supported by API

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR48

Date:		July 6, 2007

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	ALL PRODUCTS
		Modified function:	Oct6100ChipOpen
			Added parameter:	fEnable2100StopEvent

		Modified function:	Oct6100ChipGetImageInfo
			Removed parameters:	fAlcNoiseBleedOutTime
						fResetAlcOnTones

		Modified functions:	Oct6100ChannelOpen
					Oct6100ChannelModify
					Oct6100ChannelGetStats
			Removed parameters:	fResetRinAlcOnTones
						fResetSoutAlcOnTones
						ulAlcNoiseBleedOutTime

	Stop events on 2100Hz are only supported from firmware 01.06.00.
					
-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-4769 : Law conversion is now possible on bi-directional channel.
PR-5037 : The only ulMemClkFreq value supported is now 133MHz.
PR-5141 : Added fEnable2100StopEvent functionality.
PR-5105 : Added reset of the old data when changing the selected debug channel.
PR-5168 : Interrupt pin active after enabling H.100 interrupt.

PR-5210 : AlcNoiseBleedOutTime and ResetAlcOnTones features are no more supported.

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-5055 : Short glitch may be present at the first opening of a channel.
PR-5071 : Should not use a law conversion resource when a TSST is unassigned. The
          law conversion resource blocked the use of the conferencing feature.
PR-5101 : lRoutNoiseReductionLevelGainDb is not set properly when modifying a channel.
PR-5181 : Interrupts must be cleared in the chip open function.
PR-5194 : Output is not silence when channel is muted.
PR-5231 : NLP not disabled when a channel is closed.
PR-5232 : Muted ports not reset when closing a channel.

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR47

Date:		December 18, 2006

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	ALL PRODUCTS
	Modified function:	Oct6100ChipGetImageInfo
		Added parameter:	fRoutNoiseReductionLevel

	Modified functions:	Oct6100ChannelOpen
				Oct6100ChannelModify
				Oct6100ChannelGetStats
		Added parameters:	lRoutNoiseReductionLevelGainDb
					
-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-5011 : Added configurable ROUT noise reduction attenuation level.

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-4853 : Fatal_5 may be generated if accesses to the chip are slow.

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR46

Date:		November 10, 2006

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	ALL PRODUCTS
	New function:		Oct6100ApiGetCapacityPins

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-4854 : Added function to read capacity pin values

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR45

Date:		October 17, 2006

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	ALL PRODUCTS
	Modified function:	Oct6100ChipOpen
		Added parameter:	ulProductionBistMode

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-4854 : Added support of a short production BIST
PR-4837 : Added 2100Hz, 1100Hz and SS5 tone events capture before tone detection 
          enabling.

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------



-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR44

Date:		October 10, 2006

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

NONE 					

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-4842 : Disabled SCN RX SID process.
PR-4700 : Enhanced external memory data pins BIST.

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------



-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR43

Date:		July 25, 2006

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

NONE 					

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

NONE

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-4617 : INT8 defined as char causes problems in some architectures.
PR-4633 : ALC not reset when a channel is closed and reopened.

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------



-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR42

Date:		July 17, 2006

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

NONE 					

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

NONE

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-4627 : Disabling or closing debug channel causes TDM data corruption on 
          another single channel.

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR41

Date:		June 01, 2006

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	ALL PRODUCTS
	Modified function:	Oct6100DebugGetData
		Added parameter:	ulGetDataContent 					

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-4346: Added new parameter ulGetDataContent to function Oct6100DebugGetData

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-3004 : Compiler warnings in 64-bit operating systems.
PR-4366 : Law conversion not working when Rin tone removal activated.
PR-4375 : Possible infinite loop in Oct6100ChipOpen function.
PR-4512 : Debug channel TSI resource is not released when the channel is closed.

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR40

Date:		March 20, 2006

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

NONE

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-3903: UPCLK freq 66.66MHz is no longer supported.
PR-4085: NLP off and Comfort Noise off not allowed when echo operation mode is 
         set to speech recognition.
PR-4284: Must allow modification of the VQE Activation Delay even if Tone 
         Disabler is not active.
PR-4305: Debug functions not allowed when echo operation mode is set to power 
         down.
PR-4340: Oct6100ChannelOpen ulPhase must be capped to a minimum of 1.

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-4301: ulMaxBiDirChannels is not correctly checked in API.
PR-4321: ISR flags such as fErrorH100OutOfSync should be initialized to FALSE.

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

PR-3004 : OCT6100 API does not support 64-bit operating systems

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR39

Date:		February 08, 2006

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	ALL PRODUCTS
	Modified function:	Oct6100ChipGetImageInfo
		Added parameters:	fAlcNoiseBleedOutTime
					fResetAlcOnTones

	Modified functions:	Oct6100ChannelOpen
				Oct6100ChannelModify
				Oct6100ChannelGetStats
		Added parameters:	fResetRinAlcOnTones
					fResetSoutAlcOnTones
					ulAlcNoiseBleedOutTime


New features AlcNoiseBleedOutTime and ResetAlcOnTones require firmware 
version 01.06.00 and higher.

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-3888 : Add 2 new parameters: fResetSinAlcOnTones, fResetRinAlcOnTones
PR-3889 : New parameter: ulAlcNoiseBleedoutTime


-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-4111 : fIdleCodeDetection not backward compatible
PR-4156 : Channel stays muted when cOCT6100_CHANNEL_MUTE_PORT_SIN_WITH_FEATURES 
          mute mode is used.
PR-4181 : Certain SDR memories may not boot correctly with standard 
          initialization sequence

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

PR-3004 : OCT6100 API does not support 64-bit operating systems

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR38

Date:		November 21, 2005

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

	NONE

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-3848 : Changed several comments.
PR-3758 : ulToneDisablerVqeActivationDelay check must be added.
PR-3750 : Oct6100ApiInitToneInfo is too slow because of StrStr seach.

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-3842 : Bug in Oct6100ApiModifyChannelResources function when reserving Rout TSST.
PR-3793 : TLV length field parsing might be dangerous, not checked carefully.
PR-3779 : Remote debugging disconnect command does not work correctly.
PR-3749 : OCT6100 Tone enable does not work for certain firmwares.

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

PR-3004 : Compiling OCT6100 on 64-bit processor platform causes warnings

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR37

Date:		August 30, 2005

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	ALL PRODUCTS
	Modified function:	Oct6100ChipGetImageInfo
		Added parameters:	fIdleCodeDetection
					fSinLevel

	Modified functions:	Oct6100ChannelOpen,
				Oct6100ChannelModify,
				Oct6100ChannelGetStats
		Added parameter:	fIdleCodeDetection					

	NOTE: With this release, it is not possible to enable 
              fSoutAdaptiveNoiseReduction and fSoutConferencingNoiseReduction
              simultaneously

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-3701 : Added support of Idle Code Detection feature
PR-3702 : lSinLevel and ERLE stats are no more supported in certain firmwares.

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-3688 : Error should be returned if ulMaxChannels is too big
PR-3711 : Bug when setting NLE and music protection simultaneously.

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

PR-3004 : Compiling OCT6100 on 64-bit processor platform causes warnings

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR36

Date:		July 20, 2005

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	ALL PRODUCTS
	Modified function:	Oct6100ChipGetImageInfo
		Added parameters:	fSoutNoiseBleaching
					fDoubleTalkBehavior

	Modified functions:	Oct6100ChannelOpen,
				Oct6100ChannelModify,
				Oct6100ChannelGetStats
		Added parameters:	fSoutNoiseBleaching
					ulDoubleTalkBehavior

	NOTE: With this release, it is not possible to enable 
              fSoutAdaptiveNoiseReduction and fSoutConferencingNoiseReduction
              simultaneously

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-3610 : Added support of Noise Bleaching VQE
PR-3561 : Added support of double talk behavior
PR-3548 : The default value for ulNonLinearityBehaviorA should be 1 and not 0

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-3554 : Clipping if AEC is enable in NO ECHO mode and SPEECH mode

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

PR-3004 : Compiling OCT6100 on 64-bit processor platform causes warnings

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR35

Date:		July 04, 2005

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

NONE

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

NONE

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-3368 : Caller ID allerting signal not played out correctly.
PR-3382 : Law not set correctly in dump files for channel numbers with bit 2 
          set to 1.
PR-3487 : Glitch when adding a participant to a conference

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

PR-2645 : Caller ID pre-transmit delay does not work correctly.
PR-3004 : Compiling OCT6100 on 64-bit processor platform causes warnings

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR34

Date:		March 31, 2005

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

NONE

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

NONE

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-3336 : Tail displacement not configured correctly in ChannelOpen function

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

PR-2645 : Caller ID pre-transmit delay does not work correctly.
PR-3004 : Compiling OCT6100 on 64-bit processor platform causes warnings

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------



-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR33

Date:		March 04, 2005

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

NONE

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-3226 : Improved performance of Oct6100BufferPlayoutStart function

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

PR-2645 : Caller ID pre-transmit delay does not work correctly.
PR-3004 : Compiling OCT6100 on 64-bit processor platform causes warnings

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR32

Date:		February 28, 2005

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

NONE

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

NONE

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-3184 : Change free mixer event count check for a more precise one in 
          channel open and modify functions.
PR-3226 : NLP tail not set correctly in LEC with Tail Displacement.

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

PR-2645 : Caller ID pre-transmit delay does not work correctly.
PR-3004 : Compiling OCT6100 on 64-bit processor platform causes warnings

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR31

Date:		February 7, 2005

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

NONE

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-3136 : The lDefaultErlDb parameter should also support other values -9, -12.

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-3120 : Oct6100DebugGetData does not work correctly on big endian 
          architecture.
PR-3165 : F003_FPGA: SCN-PLC FPGA cannot be put into PASS_THRU.

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

PR-2645 : Caller ID pre-transmit delay does not work correctly.
PR-3004 : Compiling OCT6100 on 64-bit processor platform causes warnings

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR30

Date:		January 24, 2005

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	ALL PRODUCTS

	New functions:		Oct6100ProductionBist
				Oct6100DebugSelectChannel
				Oct6100DebugGetData
	
	Modified functions:	Oct6100ChannelOpen,
				Oct6100ChannelGetStats
		Added parameters:	ulAecTailLength
					ulToneDisablerVqeActivationDelay
					fEnableMusicProtection

	Modified function:	Oct6100ChannelModify
		Added parameter:	ulTailLength

	Modified function:	Oct6100ChipGetImageInfo
		Added parameters:	fAecTailLength
					fPerChannelTailLength
					fToneDisablerVqeActivationDelay
					ulImageType

	Modified function:	Oct6100ChipOpen
		Added parameters:	fEnableProductionBist
					ulNumProductionBistLoops

	Modified define:	cOCT6100_MAX_TAIL_DISPLACEMENT

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-2748 : Added new echo operation mode for speech recognition purposes.
PR-2885 : Added ulTailLength parameter to the ChannelOpen function
PR-2926 : Added ulToneDisablerVqeActivationDelay to the ChannelOpen function
PR-2951 : Added hardware PLL jitter counter for debugging.
PR-2966 : Added acoustic echo tail length parameter to ChannelOpen function
PR-2978 : Added functionnality in the API to dump memory.
PR-3001 : Added production BIST of the external memory support to the API
PR-3013 : Added support of the Octasic Music Protection feature
PR-3017 : Added reset of the ulNumEchoPathChanges channel stat
PR-3057 : Added ulImageType parameter to Oct6100ChipGetImageInfo.
PR-3061 : Improved performance of Oct6100BufferPlayoutGetEvent function

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-2670 : fEnableToneDisabler description not completely clear
PR-2928 : Default values missing in function Oct6100ChannelGetStatsDef
PR-2940 : BiDir mode does not work correctly when a channel is modified.
PR-2954 : Default value for ulMaxPlayoutEvents is incorrect
PR-2971 : Problems when doing law conversion while in a bridge
PR-2973 : Some instance resources might be lost if mixer events run out in the 
          MutePorts function.
PR-2995 : Conference bridge gets corrupted while un-muting and muting 
          participants
PR-2999 : After several open-close of channels, output signal gets corrupted
          when muting the input.
PR-3003 : Wrong level control setting after close/open channel
PR-3048 : Code cleanup, redundant code must be removed.
PR-3058 : F003_FPGA: Bad check for PLC SCN FPGA channel ID.
PR-3079 : F003_FPGA: Put FPGA in pass-through when doing playout and change back
          when playout if finished.
PR-3087 : cOCT6100_MAX_TAIL_DISPLACEMENT must be changed from 912 to 896ms.

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

PR-2645 : Caller ID pre-transmit delay does not work correctly.
PR-3004 : Compiling OCT6100 on 64-bit processor platform causes warnings

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR29

Date:		December 10, 2004

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

NONE

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-2918 : Add possibility to retrieve more than 32 buffer playout events with 
          Oct6100BufferPlayoutGetEvent()

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE


PR-2920 : cOCT6100_ERR_BUFFER_PLAYOUT_ADD_EVENT_BUF_FULL when trying to add 
          buffer on a new opened channel.

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

PR-2645 : Caller ID pre-transmit delay not working correctly.

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR28

Date:		November 12, 2004

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	ALL PRODUCTS

	Modified functions:	Oct6100ChannelOpen, 
				Oct6100ChannelModify,
				Oct6100ChannelGetStats
		Added parameters:	lAnrSnrEnhancementDb
					ulAnrVoiceNoiseSegregation
					ulSoutNaturalListenerEnhancementGainDb				
	Modified function:	Oct6100ChipGetImageInfo
		Added parameters:	fAnrSnrEnhancement
					fAnrVoiceNoiseSegregation
	Modified function:	Oct6100ChannelModify
					fApplyToAllChannels

	1.2	PRODUCT OCT6110

	Modified function:	Oct6100ChannelModify
					fDisableToneDetection
					fStopBufferPlayout
					fRemoveConfBridgeParticipant
					fRemoveBroadcastTssts

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-2669 : Removed unused internal functions
PR-2675 : Added new parameters to control the ANR behavior
PR-2676 : fUseSynchTimestamp is no more supported
PR-2747 : ulSoutAutomaticListenerEnhancementGainDb should be limited to maximum
          30 instead of 60.
PR-2749 : New parameter must be added to configure NLE.
PR-2759 : Implemented fApplyToAllChannels, fDisableToneDetection, 
          fStopBufferPlayout and fRemoveConfBridgeParticipant features
PR-2805 : Playout start function should return an error if the buffer list is 
          empty.

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-2677 : lAecDefaultErlDb and lDefaultErlDb are not updated correctly since 
          the ChannelModify function optimizations. 
PR-2746 : Channel stats are not correct when channel is in bypass or reset
PR-2803 : Define for cOCT6100_KEEP_PREVIOUS_SETTING is too large for INT32
PR-2842 : Level control must not be called in mixer function
PR-2845 : F003_FPGA: Kappa coefficient not initialized when opening a PLC/SCN 
          FPGA channel.
PR-2846 : F029_FPGA: Tone detection event type not set correctly.

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

PR-2645 : Caller ID pre-transmit delay not working correctly.

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00.00.01

Date:		October 08, 2004

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

First General Availability release. Internal Release.

-------------------------------------------------------------------------------
1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	ALL PRODUCTS

	Modified functions:	Oct6100ChannelOpen, 
				Oct6100ChannelModify,
				Oct6100ChannelGetStats
		Added parameters:	lAnrSnrEnhancementDb
					ulAnrVoiceNoiseSegregation					
	Modified function:	Oct6100ChipGetImageInfo
		Added parameters:	fAnrSnrEnhancement
					fAnrVoiceNoiseSegregation

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-2675 : Added new parameters to control the ANR behavior

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

 

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR27

Date:		September 27, 2004

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
1.0 BACKWARD COMPATIBILITY NOTICE

NONE

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-2621 : The Oct6100CallerIdTransmit function should check that enough playout 
          events are available before adding them.
PR-2630 : Increased performance of the ChannelModify function
PR-2656 : The buffer playout events should be differentiated between regular 
          playout events and caller ID events
-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-2614 : Caller ID cleanup not done correctly in resource free function
PR-2616 : Tone ports not initialized when tone detection not supported
PR-2620 : In the caller id init function, check that the image loaded into the 
          device supports 127 events.
PR-2633 : Playout event must be check in the OCT6100 instead of a define

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR26

Date:		August 31, 2004

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	ALL PRODUCTS

	Modified function:	Oct6100ChannelOpen
				Oct6100ChannelModify
				Oct6100ChannelGetStats
		Added parameters:	ulSoutAutomaticListenerEnhancementGainDb
					fSoutNaturalListenerEnhancement
					fRoutNoiseReduction					
	Modified function:	Oct6100ChipGetImageInfo
		Added parameters:	fListenerEnhancement
					fRoutNoiseReduction
					ulMaxPlayoutEvents

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-2478 : Added support of ALE and NLE features
PR-2479 : Added support of the Rout Noise Reduction feature
PR-2581 : Added flexibility to support 31 or 127 buffers in the list
PR-2576 : F029_FPGA: Add Channel enable Memory clear

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-2515 : Mute mode that allow tone detection on SIN is not working.
PR-2550 : Tail displacement offset bug
PR-2558 : Wrong max tail displacement value.
PR-2597 : Mixer events lost when modifying a channel in a bridge
PR-2604 : SDR 32-bit must be configured as 2 SDR 16-bit
PR-2609 : Data is modified when the operation mode is set to NO_ECHO
PR-2612 : Some of the playout buffers for ETSI Caller ID are not loaded.
PR-2526 : F029_FPGA: Bug of Oct6100ApiConvertToToneDetectionFpgaTsst for ROUT 
          TSSTs
PR-2582 : F029_FPGA: API fix for ConvertTsst functions + others
PR-2584 : F029_FPGA: OCT6100 API Oct6100ApiWriteToneDetectEvent bug
PR-2601 : F029_FPGA: Oct6100TransferToneDetectionFpgaEvents: Reorder events 
          when getting two events at a time.

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR25

Date:		August 05, 2004

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	PRODUCT OCT6120

	Added function:		Oct6100ChannelMute
				Oct6100ChannelUnMute
	Modified function:	Oct6100ChannelModify
		Added parameters:	ulRinNumTssts
					ulSinNumTssts
					ulRoutNumTssts
					ulSoutNumTssts	
	Modified function:	Oct6100ChannelGetStats
		Added parameters:	ulMutePortsMask

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-2455 : Allow modification of NumTssts parameters in function 
          Oct6100ChannelModify
PR-2465 : Added Channel Mute and UnMute functions
PR-2468 : Re-enable SS7 tone detection upon tone event disabling

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-2439 : Noise when no input TSST assigned
PR-2440 : Conference signal attenuated when no input TSST
PR-2454 : F029_FPGA: For MFR1 and MFR2, we can enable a tone OF MFR1 group
          (or MFR2) and disable an other tone of the same group.
PR-2469:  Check missing for Extended tone detection
PR-2457 : Tone events sometimes not generated
PR-2473 : F003_FPGA: ulPlcScnOperationMode not behaving properly in 
          Oct6100ModifyChannel
PR-2474 : F003_FPGA: PLC/SCN FPGA law configuration bug.
PR-2475 : F003_FPGA: Channel Modify for the PLC/SCN is not working
PR-2477 : Law conversion should work when ADPCM is not supported
PR-2501 : F003_FPGA: Law written in the PLC/SCN FPGA not correct
PR-2512 : Error cOCT6100_ERR_CONF_BRIDGE_CHAN_NOT_ON_BRIDGE sometimes returned
          when removing all channels from a bridge with taps.
PR-2513 : Eliminate the compiler warnings.
PR-2514 : F029_FPGA: Wrong TDM mapping.
PR-2516 : cOCT6100_ERR_OPEN_EGO_TIMEOUT generated on some devices

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

PR-2515 : Mute mode that allows tone detection on SIN is not working.

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------



-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR24

Date:		July 16, 2004

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
1.0 BACKWARD COMPATIBILITY NOTICE

None

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-2452 : Added SS7 tone events capture before tone detection enabling

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-2392 : In Oct6100ChannelModify, Adpcm resource not reserve when 
          ulEncoderPort or ulDecoderPort set to Keep previous.
PR-2421 : F029_FPGA: The calcul of TSST for Tone Detect FPGA is not corect in 
          the function OCT6100ApiWriteToneDetectEvent
PR-2441 : F029_FPGA: Using wrong addresses in oct6100_interrupts.c
PR-2442 : F029_FPGA: The SOct6100InterruptServiceRoutine doesn't clear the bit 
          ToneDetectionFpgaOverflowToneEvents.
PR-2453 : F029_FPGA: Syntaxe bug: In the oct6100_events.c file, at the line 815
          and the line 990.

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

PR-2439 : Noise when no input TSST assigned
PR-2440 : Conference signal attenuated when no input TSST
PR-2454 : F029_FPGA: For MFR1 and MFR2, we can enable a tone OF MFR1 group
          (or MFR2) and disable an other tone of the same group.
PR-2457 : Tone events sometimes not generated

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------




-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR23

Date:		June 23, 2004

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
1.0 BACKWARD COMPATIBILITY NOTICE

None

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-2393 : Removed requirement for setting ulRinStream and ulRinTimeslot to 
          cOCT6100_UNASSIGNED for the tapping feature

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-2394 : Error if doing remove all bridge participants but no participant

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

None

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR22

Date:		June 21, 2004

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	PRODUCTS OCT6110 and OCT6120
		
	Modified function:	Oct6100ConfBridgeChanAdd
		Added parameter:	ulTappedChannelHndl
	Modified function:	Oct6100ConfBridgeGetStats
		Added parameter:	ulNumTappedChannels

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-2381 : Added tapping feature to simple conferencing.

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-2378 : pulPlayoutFreeMemSize not completly accurate
PR-2385 : When opening many flexible conferences we get an access violation

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

none

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR21

Date:		June 15, 2004

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	ALL PRODUCTS
	
	Modified function:	Oct6100ChipGetImageInfo
		Added parameter:	fDominantSpeaker
	Modified function:	Oct6100ChannelGetStats
		Added parameters:	sRinAppliedGain
					sSoutAppliedGain

	1.2	PRODUCTS OCT6110 and OCT6120

	Added functions:	Oct6100ConfBridgeDominantSpeakerSetDef,
				Oct6100ConfBridgeDominantSpeakerSet	
	Modified function:	Oct6100ChipOpen
		Added parameter:	ulMaxFlexibleConfParticipants
	Modified function:	Oct6100ConfBridgeOpen
		Added parameter:	fFlexibleConferencing
	Modified function:	Oct6100ConfBridgeChanAdd
		Added parameters:	ulListenerMask, 
					ulListenerMaskIndex		
	Modified functions:	Oct6100ChannelOpen, 
				Oct6100ChannelModify,
				Oct6100ChannelGetStats
		Added parameters:	fSoutAdaptiveNoiseReduction,
					fSoutConferencingNoiseReduction,
					fDtmfToneRemoval					
	Modified function:	Oct6100ChannelGetStats
		Added parameter:	fSinVoiceDetected

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-2368 : OCT6116 and OCT6126 features must not be removed from the API
PR-2369 : Added fDominantSpeaker parameter in GetImageInfo function
PR-2372 : Added lRinAppliedGain and lSoutAppliedGain stats in ChannelGetStats

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-2356 : Playout never stop if repeat infinitly and stop clean is used with 
          buffer not modulo 64
PR-2370 : No error returned when enabling dominant speaker while not available
PR-2374 : Error returned when unmuting from flexible conference
PR-2375 : Problem when unmuting the first participant of a flexible bridge

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

PR-2378 : pulPlayoutFreeMemSize not completly accurate

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-2379 : Problem with the cOCT6100_MIXING_0_DB mode

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR20

Date:		June 02, 2004

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	ALL PRODUCTS

	Modified function:	Oct6100ChipGetImageInfo
		Added parameters:	fHighLevelCompensation,						
	Modified functions:	Oct6100ChannelOpen, 
				Oct6100ChannelModify,
				Oct6100ChannelGetStats
		Added parameters:	fRinAutomaticLevelControl, 
					lRinAutomaticLevelControlTargetDb
					fSoutAutomaticLevelControl, 
					lSoutAutomaticLevelControlTargetDb
					fRinHighLevelCompensation, 
					lRinHighLevelCompensationThresholdDb			

	1.2	PRODUCTS OCT6116 and OCT6126

	Added function:		Oct6100ConfBridgeMaskChange
	Modified function:	Oct6100ConfBridgeGetStats
		Added parameter:	fFlexibleConferencing
	Modified function:	Oct6100ChannelGetStats
		Added parameter:	fSinVoiceDetected	

	1.3	PRODUCTS OCT6110 and OCT6120

	Removed functions:	Oct6100ConfBridgeDominantSpeakerSetDef,
					Oct6100ConfBridgeDominantSpeakerSet
	Modified functions:	Oct6100ChannelOpen, 
				Oct6100ChannelModify,
				Oct6100ChannelGetStats
		Removed parameter:	fSoutConferencingNoiseReduction
	Modified function:	Oct6100ChipOpen
		Removed parameter:	ulMaxFlexibleConfParticipants
	Modified function:	Oct6100ConfBridgeOpen
		Removed parameter:	fFlexibleConferencing
	Modified function:	Oct6100ConfBridgeChanAdd
		Removed parameters:	ulListenerMask, 
					ulListenerMaskIndex		

	1.4	PRODUCTS OCT6100, OCT6110 and OCT6120

	Modified functions:	Oct6100ChannelOpen, 
				Oct6100ChannelModify,
				Oct6100ChannelGetStats
		Removed parameter:	fDtmfToneRemoval

	1.5	PRODUCTS OCT611X and OCT612X

	Modified function:	Oct6100BufferPlayoutAdd
		Added parameter:	lGainDb
	Modified function:	Oct6100BufferPlayoutStop
		Added parameters:	pfAlreadyStopped,
					pfNotifyOnPlayoutStop

	1.6	Many error code names have been modified

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-1911 : Increased number of buffer playout from 31 to 127
PR-2225 : Added support of gain control on buffer playout
PR-2261 : Improved the CPU register BIST
PR-2285 : Renamed cOCT6100_ECHO_OP_MODE_G169_ALC as cOCT6100_ECHO_OP_MODE_NO_VQE
PR-2322 : Renamed cOCT6100_ECHO_OP_MODE_NO_VQE as cOCT6100_ECHO_OP_MODE_NO_ECHO
PR-2289 : Added support of mixing mode 0db in playout
PR-2310 : Implemented new conference bridge function to change the participant's 
          mask for flexible conferencing
PR-2314 : Implemented fSinVoiceDetected in channel stats for OCT61x6 products
PR-2316 : Implemented Automatic level control
PR-2317 : Implemented High Level Compensation
PR-2318 : Changed all feature_unsupported error coded to use the same error base
          code
PR-2328 : Added pfAlreadyStopped and pfNotifyOnPlayoutStop parameters to 
          Oct6100BufferPlayoutStop function

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-2251 : Playout not always stopping when changing mode from normal to power 
          down to normal
PR-2256 : Flexible conferencing does not work on the ROUT port
PR-2267 : Removing a muted channel from a flexible conference gives a fatal 
          error
PR-2268 : Can add two channels with the same index in flexible conferencing
PR-2280 : Remove all feature is causing bridge corruption
PR-2301 : Memory chip size of 8 megabytes must be allowed with SDR
PR-2307 : Remote client not working with OCT610x products
PR-2312 : fFlexibleConferencing is not implemented in function 
          Oct6100ConfBridgeGetStats
PR-2332 : Dominant speaker always active
PR-2333 : Muting all participants of a bridge is causing bad behaviors
PR-2335 : Buffer Playout duration not working properly

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------


-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR19

Date:		April 30, 2004

-------------------------------------------------------------------------------
Please note that caller ID is still not supported.
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	ALL PRODUCTS

	Modified function:	Oct6100ChipGetImageInfo
		Added parameter:	ulMaxChannels
		Removed parameters:	fRinDcOffsetRemoval, 
					fSinDcOffsetRemoval,
					fNlpControl, 
					fToneDisabler, 
					fComfortNoise
	Modified functions:	Oct6100ChannelOpen, 
				Oct6100ChannelModify,
				Oct6100ChannelGetStats
		Added parameters:	lAecDefaultErlDb 

	1.2	PRODUCTS OCT611X and OCT612X

	Modified function:	Oct6100ChipOpen
		Added parameter:	ulMaxFlexibleConfParticipants
	Modified function:	Oct6100ConfBridgeOpen
		Added parameter:	fFlexibleConferencing
	Modified function:	Oct6100ConfBridgeChanAdd
		Added parameters:	ulListenerMask, 
					ulListenerMaskIndex

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-1909 : Add support of flexible conferencing feature
PR-2226 : Remove unnecessary parameters from image info and add ulMaxChannel 
          parameter
PR-2238 : Playout no longer supported in HT freeze mode
PR-2237 : Improvements to AEC

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-2224 : Playout not working in G.169 ALC Mode
PR-2241 : F029_FPGA: Wrong TDM mapping.
PR-2242 : F029_FPGA: ulUserChipId should be between 1 and 6 instead of 0 and 5.
PR-2243 : F029_FPGA: Tone FPGA memory mapping has changed. Base addresses have 
          changed.
PR-2244 : PLI Comment in API code
PR-2250 : Bridge empty list causing fatal errors
PR-2252 : F029_FPGA: F029 FPGA should not be accessed when not enabled.
PR-2257 : F003_FPGA: Open channel does not set all SCN-PLC fields.
PR-2259 : Buffer playout minimum buffer size can be downsized to 64 bytes.
PR-2260 : memcpy should not be used in OctApi llman library.

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

PR-2256 : Flexible conferencing does not work on the ROUT port
PR-2251 : Playout not always stopping when changing mode to power down

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------



-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR18

Date:		April 22, 2004

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	PRODUCTS OCT611X and OCT612X	

	Added files:		oct6100_caller_id.c
				oct6100_caller_id_priv.h
				oct6100_caller_id_pub.h
				oct6100_caller_id_inst.h
		Added functions:	Oct6100CallerIdInitDef, 
					Oct6100CallerIdInit,
					Oct6100CallerIdTransmitDef, 
					Oct6100CallerIdTransmit,
					Oct6100CallerIdTransmitAsDef,
					Oct6100CallerIdTransmitAs,
					Oct6100CallerIdAbortDef, 
					Oct6100CallerIdAbort
	Modified function:	Oct6100ChipOpen						
		Added parameter:	fEnableCallerId
	Modified functions:	Oct6100ChannelOpen, 
				Oct6100ChannelModify,
				Oct6100ChannelGetStats
		Added parameter:	fSoutConferencingNoiseReduction 

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-1964 : Implement caller ID. Please note that this features is not supported
          yet but files have been added to the API.
PR-2206 : Allow support of both noise reduction features.

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-2221 : 32 first bytes sometimes corrupted with buffer playout
PR-2222 : Error when removing a channel from a RIN bridge
PR-2223 : F003_FPGA: SCN/PLC requires a parameter to disable HDLC output

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------



-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR17

Date:		April 20, 2004

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	PRODUCT OCT610X

	Added files:		oct6100_tsi_cnct.c, 
				oct6100_tsi_cnct_priv.h
				oct6100_tsi_cnct_pub.h
				oct6100_tsi_cnct_inst.h
		Added functions:	Oct6100TsiCnctOpenDef, 
					Oct6100TsiCnctOpen, 
					Oct6100TsiCnctCloseDef, 
					Oct6100TsiCnctClose
	
-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-2207 : Need to reduce the API code size and the API instance size
PR-2208 : TSI connection functions should be available to OCT610x products
PR-2217 : F029_FPGA: OCTF029 API code needs modifications to support MFR2

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-2202 : Chariot interval wrong for chips with 512 channels
PR-2210 : Modification of the per channel tail displacement is not working
PR-2214 : Debug channel corrupted when opening too many channels
PR-2215 : Acoustic echo not working properly
PR-2218 : Oct6100ApiReserveBufferPlayoutMemory sometimes returns 
          cOCT6100_ERR_BUFFER_PLAYOUT_NO_MEMORY but there are still a lot of 
          memory available.

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------



-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR16

Date:		April 16, 2004

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

	1.1 ALL PRODUCTS

	Added functions:	Oct6100FreeResourcesDef, 
				Oct6100FreeResources
	Modified functions:	Oct6100ChannelOpen, 
				Oct6100ChannelModify,
				Oct6100ChannelGetStats
		Added parameter:	ulTailDisplacement
	Modified functions:	Oct6100ChipGetImageInfo
		Added parameter:	fPerChannelTailDisplacement

	1.2	PRODUCT OCT611X and OCT612X		

	Modified function:	Oct6100BufferPlayoutAdd
		Added parameters:	ulRepeatCount, 
					ulDuration

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-2160 : Add ulRepeatCount and ulDuration to the Oct6100BufferPlayoutAdd 
          function
PR-2166 : Need to add function that closes all open channels and frees all used 
          ressources.
PR-2172 : Add support of the tail displacement lentgh per channel

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-2190 : Cleanup old extra code.
PR-2191 : Image info parameters are confusing for level control
PR-2205 : Phasing error when reusing same TSST

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

PR-2210 : Modification of the per channel tail displacement is not working

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------



-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR15

Date:		April 02, 2004

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	PRODUCT OCT611X and OCT612X

	Modified function:	Oct6100BufferPlayoutLoad
		Added parameter:	pusBufferPattern

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-2075 : Increase number of TSI connections supported
PR-2113 : Current malloc function is too slow for playout buffer loading.
PR-2115 : CPU bandwidth too small when loading buffers
PR-2120 : Buffer playout copies PUINT8 array into PUINT16 array. Inefficient.
PR-2149 : F029_FPGA: Add API code to support new OCTF029 tone detection FPGA.

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-1972 : Memory allocation is causing fragmentation when loading buffers
PR-2093 : Oct6100ChipOpen should return an error when the firmware image loaded
	  requires more external memory then the user specified.
PR-2123 : Create Bi-dir bad behavior when ulMaxBiDirChannels=0
PR-2128 : ImageInfo.fAcousticEcho return TRUE even when not supported
PR-2129 : Wrong TSST released in 16MHz mode. Causing fatal_55

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------



-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR14

Date:		March 19, 2004

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

NONE

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

NONE

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-2088 : Change value written into hardware for ulNonLinearityBehaviorA of 0
PR-2117 : Mem Refresh too fast


-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-1972 : Memory allocation is causing fragmentation when loading buffers

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------



-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR13

Date:		March 03, 2004

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	ALL PRODUCTS

	Modified function:	Oct6100InterruptServiceRoutine
		Added parameter:	ulFatalGeneralFlags 
	Modified function:	Oct6100ChannelGetStats
		Added parameter:	fEchoCancellerConverged 

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-2016 : Add new ISR parameter to get info about fatal errors
PR-2027 : Increase the number of supported TSI connections
PR-2034 : Buffer Playout no more supported if NLP OFF
PR-2035 : Implement fEchoCancellerConverged channel stats
PR-2041 : ulMaxRwAccesses smaller than 8 should be valid
PR-2049 : Create smaller API with less supported functions
-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-2018 : Timestamps checks not good
PR-2031 : Unset of the dominant speaker is causing a fatal error
PR-2038 : AF CPU Timeout delay too small
PR-2039 : Tone Disabler stays active when channel is closed
PR-2040 : F003_FPGA: PLC FPGA channel energy not set properly.
PR-2051 : Remove all conference participants is not working properly
PR-2065 : ulSoftOverflowBufferPlayoutEventsCount not initialized

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-1972 : Memory allocation is causing fragmentation when loading buffers

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------



-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR12

Date:		Feb. 09, 2004

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	ALL PRODUCTS

	Added function:		Oct6100UserSleep
	Modified functions:	Oct6100ChannelOpen, 
				Oct6100ChannelModify,
				Oct6100ChannelGetStats
		Added parameter:	ulNonLinearityBehaviorB 
	
	1.2	PRODUCT OCT611X and OCT612X

	Added functions:	Oct6100BufferPlayoutGetEventDef,
				Oct6100BufferPlayoutGetEvent,
				Oct6100BufferPlayoutLoadBlockInitDef,
				Oct6100BufferPlayoutLoadBlockInit,
				Oct6100BufferPlayoutLoadBlockDef,
				Oct6100BufferPlayoutLoadBlock,
				Oct6100ConfBridgeDominantSpeakerSetDef,
				Oct6100ConfBridgeDominantSpeakerSet

	Modified function:	Oct6100ChipOpen						
		Added parameter:	ulSoftBufferPlayoutEventsBufSize		
	Modified function:	Oct6100ChipGetStats
		Added parameters:	ulPlayoutFreeMemSize,
					ulSoftOverflowBufferPlayoutEventsCount
	Modified function:	Oct6100BufferPlayoutLoad
		Added parameter:	pulPlayoutFreeMemSize
	Modified function:	Oct6100BufferPlayoutAdd
		Added parameter:	ulBufferLength
	Modified function:	Oct6100BufferPlayoutStart
		Added parameters:	fNotifyOnPlayoutStop, 
					ulUserEventId, 
					fAllowStartWhileActive
	Modified function:	Oct6100InterruptServiceRoutine	
		Added parameter:	fBufferPlayoutEventsPending
	Modified function:	Oct6100ConfBridgeChanAdd
		Added parameter:	ulInputPort
	Modified function:	Oct6100ToneDetectionDisable
		Added parameter:	fDisableAll
			 
-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-1870 : Implement ulNonLinearityBehaviorB in Oct6100ChannelOpen
PR-1896 : Give size of memory available for buffer playout to the user
PR-1908 : Add support of conferencing on RIN ports
PR-1910 : Add new functions to allow loading of the buffer playout in multiple 
		  blocks
PR-1912 : Add new parameter to specify the length of the buffer that must be 
		  played
PR-1931 : Fatal error cOCT6100_ERR_FATAL_14 should be replaced by 
		  cOCT6100_ERR_OPEN_INVALID_FIRMWARE_OR_CAPACITY_PINS
PR-1942 : Implement End of Playout Event in the API
PR-1946 : Add TLV fields for buffer playout enable and dominant conference 
		  speaker.
PR-1953 : Implement the dominant speaker feature for conferencing.
PR-1970 : Add UserSleep function in the API
PR-1990 : Add support of acoustic echo cancellation
PR-1991 : Add disabling of all tone detection with one command
PR-1996 : F003_FPGA: Add parameter to set the SCN/PLC operation mode
-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-1872 : Law conversion not working for OCT610X and OCT611X products
PR-1882 : F003_FPGA: Tsst configuration not correct in SCN/PLC
PR-1886 : Buffer Playout size must be limited to modulo 16
PR-1887 : F003_FPGA: Precedence Bug with SCN/PLC
PR-1897 : F003_FPGA: Tsst Phasing mapping bug with SCN/PLC
PR-1915 : Write Access Errors in external memories
PR-1917 : API spec does not match API code with respect to the buffer playout 
		  load function.
PR-1919 : Playout pointers not reset properly in Oct6100ChannelOpen
PR-1920 : Too many reads done in the buffer playout functions
PR-1926 : F003_FPGA: User must specified the compression rate when using the 
          PLC/SCN FPGA.
PR-1941 : The API must not allowed ulMaxChannels to be greater than the 
		  capacity of the chip
PR-1952 : ANR enable check not good
PR-1969 : ulFirstEmptyIndex not set properly in Oct6100ApiRetrieveNlpConfDword.
PR-1976 : fToneEventsPending not working
PR-1980 : Tone Event Overflow may cause error cOCT6100_ERR_FATAL_2D
PR-1981 : Capacity pins are not always in tri-state
PR-1982 : Bidirectionnal channels in a conference erroneously permitted, and 
		  vice versa.
PR-2001 : F003_FPGA: fEnableScnPlcFpga check not good
PR-2006 : Internal memory register not set properly
PR-2012 : Customer ID no more used and replaced by Build ID
PR-2015 : Channel 0 corruption when closing/opening other channels
PR-2021 : TSI index for closed channels are not good
PR-2022 : Conversion structures not cleared properly
PR-2023 : NLP structure not cleared when closing a channel
PR-2024 : F003_FPGA: Phase type for SCN_PLC not set properly
PR-2025 : Channel resources closure order not good
-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

NONE

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-1972 : Memory allocation is causing fragmentation when loading buffers

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------



-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

			RELEASE NOTES

Version:	OCT6100API-01.00-PR11

Date:		Dec. 09, 2003

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

1.0 BACKWARD COMPATIBILITY NOTICE

	1.1	ALL PRODUCTS

	Modified functions:	Oct6100ChannelOpen, 
				Oct6100ChannelModify,
				Oct6100ChannelGetStats
		Added parameters:	lDefaultErlDb, 
					fDtmfToneRemoval, 
					fAcousticEcho, 
					ulNonLinearityBehaviorA, 
	Modified function:	Oct6100ChipGetImageInfo
		Added parameter:	ulNumToneDetectors
	Removed functions:	Oct6100DebugGetRecordInfo, 
				Oct6100DebugGetEvent
				Oct6100DebugSelectDebugChannel
	
	1.2	PRODUCTS OCT611X and OCT612X
	
	Modified function:	Oct6100ChipOpen						
		Added parameter:	fEnableExtToneDetection
	Modified functions:	Oct6100ChannelOpen, 
				Oct6100ChannelModify,
				Oct6100ChannelGetStats
		Removed parameter:	ulTailLength
		Added parameter:	fEnableExtToneDetection			

-------------------------------------------------------------------------------

2.0 MODIFICATIONS DONE SINCE LAST RELEASE

PR-1704 : Add detection of the 1100Hz tone
PR-1716 : Replace all cOCT6100_TONE_REFRESH ulEventType by 
		  cOCT6100_TONE_PRESENT in Oct6100EventGetTone
PR-1719 : Implement lDefaultErlDb, fDtmfToneRemoval, ulNonLinearityBehaviorA 
		  and fAcousticEcho in Oct6100ChannelOpen
PR-1745 : Add ulNumToneDetectors parameter to Oct6100ChipGetImageInfo
PR-1795 : Add new extended Tone detection mode when opening a channel.
PR-1797 : Remove Oct6100DebugSelectDebugChannel, Oct6100DebugGetEvent, 
		  Oct6100DebugGetRecordInfo functions
PR-1798 : Give access to the remote debug functions
PR-1868 : The parameter ulTailLength must be removed from Oct6100ChannelOpen 
		  since it is not supported

-------------------------------------------------------------------------------

3.0 BUGS FIXED IN THIS RELEASE

PR-1707 : Misc errors found during the code inspection
PR-1713 : The Oct6100ChipOpen function must limit ulMaxConfBridges to 448
PR-1720 : The ulTimestamp parameter is not set properly in Oct6100EventGetTone
PR-1724 : The output data is not good when there is no input
PR-1729 : Multiple calls to Oct6100ConfBridgeChanAdd with the same 
		  ulChannelHndl must return an error
PR-1730 : Wrong defaults values for ulMaxConfBridges, ulMaxPlayoutBuffers and 
		  ulMaxPhasingTssts in Oct6100ChipOpen
PR-1731 : Oct6100ConfBridgeClose does not release all resources
PR-1732 : Oct6100ConfBridgeChanRemove does not release all ressources.
PR-1733 : Not all read burst accesses are using the ulMaxRwAccesses parameter
PR-1734 : Wrong check on ulEncoderPort in Oct6100ChannelOpen
PR-1736 : Wrong check on ulPhasingTsstHndl in Oct6100ChannelModify
PR-1741 : The Oct6100InterruptServiceRoutine should report an error when the 
		  device reset
PR-1742 : Default values for fSinDcOffsetRemoval, fRinDcOffsetRemoval and 
		  ulComfortNoiseMode in Oct6100ChannelOpen are not correct
PR-1743 : Stats not correct when fResetChipStats=TRUE in Oct6100ChipGetStats
PR-1744 : ulMaxTailDisplacement is not set properly in Oct6100ChipGetImageInfo
PR-1748 : Call to Oct6100ChannelClose is causing a failure of the conferencing 
		  feature
PR-1749 : The API must return an error if fEnableNlp=FALSE and 
		  fEnableSilenceSuppression=TRUE
PR-1751 : The interrupt scheduling is not accurate in 
		  Oct6100InterruptServiceRoutine
PR-1752 : Array used in function Oct6100ApiRandomMemoryWrite is too big for 
		  certain compilers
PR-1821 : Buffer Playout not working after a call to Oct6100ChannelModify
PR-1871 : Code not compiling for OCT610X and OCT611X

-------------------------------------------------------------------------------

4.0 KNOWN BUGS PRESENT IN THIS RELEASE

PR-1872 : Law conversion not working for OCT610X and OCT611X products

-------------------------------------------------------------------------------

5.0 KNOWN ISSUES PRESENT IN THIS RELEASE

PR-1702: The user can call Oct6100BufferPlayoutUnload while the buffer is 
		 playing

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------