This file is indexed.

/usr/include/libmp3splt/mp3splt.h is in libmp3splt-dev 0.9.2-0.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
/**********************************************************
 *
 * libmp3splt -- library based on mp3splt v2.1c,
 *               for mp3/ogg splitting without decoding
 *
 * Copyright (c) 2002-2005 M. Trotta - <mtrotta@users.sourceforge.net>
 * Copyright (c) 2005-2014 Alexandru Munteanu - m@ioalex.net
 *
 * And others ... see the AUTHORS file provided with libmp3splt source.
 *
 * http://mp3splt.sourceforge.net
 *
 *********************************************************/

/**********************************************************
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
 * USA.
 *
 *********************************************************/

/**
 * \file mp3splt.h
 * 
 * \brief libmp3splt API 
 */

/** \mainpage API documentation

This is the documentation of the library that stands behind mp3splt (version >= 2.2) and mp3splt-gtk.\n
Libmp3splt is licensed under the <a href="http://www.gnu.org/licenses/gpl-2.0.html">GNU General
Public License version 2</a>.\n
Source code and binaries can be found on the <a
href="http://mp3splt.sourceforge.net/mp3splt_page/home.php">mp3splt-project home page</a>.\n

Some of the library features include:
 - losslessly split of mp3 (using <a href="http://www.underbit.com/products/mad/">libmad</a>),
   ogg vorbis (using <a href="http://xiph.org/vorbis/">libvorbis</a>),
   <a href="https://xiph.org/flac/">FLAC</a> files
 - extensibility to other audio formats using plugins
 - querying tags from <a href="http://tracktype.org">tracktype.org</a>
 - split on silences
 - trim using silence detection
 - split by a fixed time or equal time length
 - CDDB, CUE, audacity labels import
 - CUE export
 - extract tracks created with <a href="http://mp3wrap.sourceforge.net">Mp3Wrap</a> or AlbumWrap

In order to use the library in another project:
- Start with the \ref splt_state_ section, continue with \ref splt_filepaths_ and
  \ref splt_callback_ and then finish with \ref splt_splitpoints_ and \ref splt_split_.
- A minimal example on how to use this library can be found in \ref minimal.c
- For any other example or question, contact Alexandru Munteanu at m@ioalex.net.

For writing a plugin to support other file type:
- Look at the #splt_plugin_func from the \ref splt_plugin_api.

A list of <a href="modules.html">all modules</a> is also available.
 */

/** \example minimal.c
 *  A minimal usage example.
 */

/**
 * \defgroup using_libmp3splt Using libmp3splt
 */

#ifndef MP3SPLT_MP3SPLT_H

#include <sys/types.h>

#include "version.h"

/**
 * @brief True value
 */
#define SPLT_TRUE 1
/**
 * @brief False value
 */
#define SPLT_FALSE 0

/** 
 * \ingroup using_libmp3splt
 * @defgroup splt_error_codes_ Confirmation and error codes
@{
 */

/**
 * @brief Confirmation and error codes.
 *
 * @see #mp3splt_get_strerror
 */
typedef enum {
  SPLT_OK = 0,

  SPLT_OK_SPLIT = 1,
  SPLT_SPLITPOINT_BIGGER_THAN_LENGTH = 4,
  SPLT_SILENCE_OK = 5,
  SPLT_TIME_SPLIT_OK = 6,
  SPLT_NO_SILENCE_SPLITPOINTS_FOUND = 7,
  SPLT_OK_SPLIT_EOF = 8,
  SPLT_LENGTH_SPLIT_OK = 9,
  SPLT_TRIM_SILENCE_OK = 10,

  SPLT_FREEDB_OK = 100,
  SPLT_FREEDB_FILE_OK = 101,
  SPLT_CDDB_OK = 102,
  SPLT_CUE_OK = 103,
  SPLT_FREEDB_MAX_CD_REACHED = 104,
  SPLT_AUDACITY_OK = 105,

  SPLT_DEWRAP_OK = 200,

  SPLT_SYNC_OK = 300,
  SPLT_MIGHT_BE_VBR = 301,

  SPLT_ERR_SYNC = -300,
  SPLT_ERR_NO_SYNC_FOUND = -301,
  SPLT_ERR_TOO_MANY_SYNC_ERR = -302,

  SPLT_OUTPUT_FORMAT_OK = 400,
  SPLT_OUTPUT_FORMAT_AMBIGUOUS = 401,

  SPLT_REGEX_OK = 800,

  SPLT_ERROR_SPLITPOINTS = -1,
  SPLT_ERROR_CANNOT_OPEN_FILE = -2,
  SPLT_ERROR_INVALID = -3,
  SPLT_ERROR_EQUAL_SPLITPOINTS = -5,
  SPLT_ERROR_SPLITPOINTS_NOT_IN_ORDER = -6,
  SPLT_ERROR_NEGATIVE_SPLITPOINT = -7,
  SPLT_ERROR_INCORRECT_PATH = -8,
  SPLT_ERROR_INCOMPATIBLE_OPTIONS = -10,
  SPLT_ERROR_INPUT_OUTPUT_SAME_FILE = -12,
  SPLT_ERROR_CANNOT_ALLOCATE_MEMORY = -15,
  SPLT_ERROR_CANNOT_OPEN_DEST_FILE = -16,
  SPLT_ERROR_CANT_WRITE_TO_OUTPUT_FILE = -17,
  SPLT_ERROR_WHILE_READING_FILE = -18,
  SPLT_ERROR_SEEKING_FILE = -19,
  SPLT_ERROR_BEGIN_OUT_OF_FILE = -20,
  SPLT_ERROR_INEXISTENT_FILE = -21,
  SPLT_SPLIT_CANCELLED = -22,
  SPLT_ERROR_LIBRARY_LOCKED = -24,
  SPLT_ERROR_STATE_NULL = -25,
  SPLT_ERROR_NEGATIVE_TIME_SPLIT = -26,
  SPLT_ERROR_CANNOT_CREATE_DIRECTORY = -27,
  SPLT_ERROR_CANNOT_CLOSE_FILE = -28,
  SPLT_ERROR_NO_PLUGIN_FOUND = -29,
  SPLT_ERROR_CANNOT_INIT_LIBLTDL = -30,
  SPLT_ERROR_CRC_FAILED = -31,
  SPLT_ERROR_NO_PLUGIN_FOUND_FOR_FILE = -32,
  SPLT_ERROR_PLUGIN_ERROR = -33,
  SPLT_ERROR_TIME_SPLIT_VALUE_INVALID = -34,
  SPLT_ERROR_LENGTH_SPLIT_VALUE_INVALID = -35,
  SPLT_ERROR_CANNOT_GET_TOTAL_TIME = -36,
  SPLT_ERROR_LIBID3 = -37,
  SPLT_ERROR_FAILED_BITRESERVOIR = -38,

  SPLT_FREEDB_ERROR_INITIALISE_SOCKET = -101,
  SPLT_FREEDB_ERROR_CANNOT_GET_HOST = -102,
  SPLT_FREEDB_ERROR_CANNOT_OPEN_SOCKET = -103,
  SPLT_FREEDB_ERROR_CANNOT_CONNECT = -104,
  SPLT_FREEDB_ERROR_CANNOT_SEND_MESSAGE = -105,
  SPLT_FREEDB_ERROR_INVALID_SERVER_ANSWER = -106,
  SPLT_FREEDB_ERROR_SITE_201 = -107,
  SPLT_FREEDB_ERROR_SITE_200 = -108,
  SPLT_FREEDB_ERROR_BAD_COMMUNICATION = -109,
  SPLT_FREEDB_ERROR_GETTING_INFOS = -110,
  SPLT_FREEDB_NO_CD_FOUND = -111,
  SPLT_FREEDB_ERROR_CANNOT_RECV_MESSAGE = -112,
  SPLT_INVALID_CUE_FILE = -115,
  SPLT_INVALID_CDDB_FILE = -116,
  SPLT_FREEDB_NO_SUCH_CD_IN_DATABASE = -118,
  SPLT_FREEDB_ERROR_SITE = -119,
  SPLT_FREEDB_ERROR_CANNOT_DISCONNECT = -120,
  SPLT_FREEDB_ERROR_PROXY_NOT_SUPPORTED = -121,
  SPLT_ERROR_INTERNAL_SHEET = -122,
  SPLT_ERROR_INTERNAL_SHEET_TYPE_NOT_SUPPORTED = -123,

  SPLT_DEWRAP_ERR_FILE_LENGTH = -200,
  SPLT_DEWRAP_ERR_VERSION_OLD = -201,
  SPLT_DEWRAP_ERR_NO_FILE_OR_BAD_INDEX = -202,
  SPLT_DEWRAP_ERR_FILE_DAMAGED_INCOMPLETE = -203,
  SPLT_DEWRAP_ERR_FILE_NOT_WRAPED_DAMAGED = -204,

  SPLT_OUTPUT_FORMAT_ERROR = -400,

  SPLT_ERROR_INEXISTENT_SPLITPOINT = -500,

  SPLT_PLUGIN_ERROR_UNSUPPORTED_FEATURE = -600,

  SPLT_INVALID_AUDACITY_FILE = -700,

  SPLT_INVALID_REGEX = -800,
  SPLT_REGEX_NO_MATCH = -801,
  SPLT_REGEX_UNAVAILABLE = -802,

  SPLT_ERROR_NO_AUTO_ADJUST_FOUND = -900,

  SPLT_ERROR_INVALID_CODE = -1000,
} splt_code;

//@}

/** 
 * \ingroup using_libmp3splt
 * @defgroup splt_state_ Initialisation of the main state
//@{
 */

/**
 * @brief Main structure used in libmp3splt.
 * All members are private.
 *
 * @see #mp3splt_new_state, #mp3splt_free_state
 */
typedef struct _splt_state splt_state;

/**
 * @brief Creates a new #splt_state structure.
 *
 * \note #mp3splt_find_plugins must to be called after.
 *
 * @param[out] error Possible error; can be NULL.
 * @return A newly allocated #splt_state.
 *
 * @see #mp3splt_free_state
 */
splt_state *mp3splt_new_state(splt_code *error);

/**
 * @brief Free the memory of the \p state.
 *
 * @param[in] state Main state to be freed.
 * @return Possible error.
 *
 * @see #mp3splt_new_state
 */
splt_code mp3splt_free_state(splt_state *state);

/**
 * @brief Appends an additional directory where plugins are searched.
 *
 * @param[in] state Main state.
 * @param[in] directory Additional directory where plugins will be searched.
 * @return Possible error.
 *
 * @see #mp3splt_find_plugins
 */
splt_code mp3splt_append_plugins_scan_dir(splt_state *state, const char *directory);

/**
 * @brief Finds the plugins in the plugins directories.
 * This function must be called after the \p state initialisation.
 *
 * @param[in] state Main state.
 * @return Possible error.
 *
 * @see #mp3splt_append_plugins_scan_dir
 */
splt_code mp3splt_find_plugins(splt_state *state);

//@}

/** @addtogroup splt_error_codes_
 * @{
 */

/**
 * @brief Returns the error message of the \p error.
 *
 * Please note that you have to call this function right after receiving the \p error because the
 * returned error message can contain information that is replaced if other error occurs.
 *
 * @param[in] state Main state.
 * @param[in] error Possible error; can be NULL.
 * @return Error message of the \p error. Result must be freed.
 */
char *mp3splt_get_strerror(splt_state *state, splt_code error);

//@}

/**
 * \ingroup using_libmp3splt
 * @defgroup splt_options_ Options
@{
 */

/**
 * @brief Split options.
 *
 * Use #mp3splt_set_int_option, #mp3splt_set_long_option and #mp3splt_set_float_option to set those
 * options.
 *
 * Use #mp3splt_get_int_option, #mp3splt_get_long_option and #mp3splt_get_float_option to get those
 * options.
 */
typedef enum {
  /**
   * Pretend to split the file, without actually creating output files.
   * This option works in all modes except error mode and dewrap split.
   *
   * Int option that can take the values #SPLT_TRUE or #SPLT_FALSE.
   *
   * Default is #SPLT_FALSE
   */
  SPLT_OPT_PRETEND_TO_SPLIT = 1,
  /**
   * If quiet return less messages and don't do mp3 CRC check.
   *
   * Int option that can take the values #SPLT_TRUE or #SPLT_FALSE.
   *
   * Default is #SPLT_FALSE
   */
  SPLT_OPT_QUIET_MODE,
  /**
   * If we return debug messages or not.
   *
   * Int option that can take the values #SPLT_TRUE or #SPLT_FALSE.
   *
   * Default is #SPLT_FALSE
   */
  SPLT_OPT_DEBUG_MODE,
  /**
   * The type of the split.
   *
   * Int option that can take the values from #splt_split_mode_options.
   *
   * Default is #SPLT_OPTION_NORMAL_MODE
   */
  SPLT_OPT_SPLIT_MODE,
  /**
   * What tags to put in the output split files.
   *
   * Int option that can take the values from #splt_tags_options.
   *
   * Default is #SPLT_CURRENT_TAGS
   */
  SPLT_OPT_TAGS,
  /**
   * For mp3 files, if we write the Xing header.
   *
   * Int option that can take the values #SPLT_TRUE or #SPLT_FALSE.
   *
   * Default is #SPLT_TRUE
   */
  SPLT_OPT_XING,
  /**
   * If this option is #SPLT_TRUE, we create directories from the output
   * filenames without parsing for illegal characters the output filenames.
   *
   * Otherwise, we parse for illegal characters the filenames and replace
   * them with '_'.
   *
   * Int option that can take the values #SPLT_TRUE or #SPLT_FALSE.
   *
   * Default is #SPLT_FALSE
   */
  SPLT_OPT_CREATE_DIRS_FROM_FILENAMES,
  /**
   * Defines how the output filenames are created.
   *
   * Int option that can take values from #splt_output_filenames_options.
   *
   * Default is #SPLT_OUTPUT_DEFAULT
   */
  SPLT_OPT_OUTPUT_FILENAMES,
  /**
   * For mp3 files, force to use the frame mode or not.
   * The frame mode processes the file frame by frame and
   * it is useful when splitting VBR (Variable Bit Rate) files.
   * Frame mode provides higher precision but is slower.
   * 
   * Int option that can take the values #SPLT_TRUE or #SPLT_FALSE.
   *
   * Default is #SPLT_FALSE
   */
  SPLT_OPT_FRAME_MODE,
  /**
   * If we use silence detection to auto-adjust splitpoints
   *
   * Int option that can take the values #SPLT_TRUE or #SPLT_FALSE.
   *
   * Default is #SPLT_FALSE
   */
  SPLT_OPT_AUTO_ADJUST,
  /**
   * If the input is not seekable.
   * This allows splitting mp3 streams which can be read only one time 
   * and can't be seeked.
   *
   * Int option that can take the values #SPLT_TRUE or #SPLT_FALSE.
   *
   * Default is #SPLT_FALSE
   */
  SPLT_OPT_INPUT_NOT_SEEKABLE,
  /**
   * The desired number of tracks when having a #SPLT_OPTION_SILENCE_MODE split
   *
   * Int option that can take positive integer values.
   * 0 means that we split as many files we find.
   *
   * Default is #SPLT_DEFAULT_PARAM_TRACKS
   */
  SPLT_OPT_PARAM_NUMBER_TRACKS,
  /**
   * The desired number of shots when having a
   * #SPLT_OPTION_SILENCE_MODE or #SPLT_OPTION_TRIM_SILENCE_MODE split
   * or using the #SPLT_OPT_AUTO_ADJUST option
   *
   * Int option that can take positive integer values.
   * It defines the number of shots to be found after the silence.
   * Decrease this value if you need to split files having closer silence points.
   *
   * Default is #SPLT_DEFAULT_PARAM_SHOTS
   */
  SPLT_OPT_PARAM_SHOTS,
  /**
   * Used to remove silence between the split tracks when having a #SPLT_OPTION_SILENCE_MODE split.
   *
   * Int option that can take the values #SPLT_TRUE or #SPLT_FALSE.
   *
   * Default is #SPLT_FALSE
   */
  SPLT_OPT_PARAM_REMOVE_SILENCE,
  /**
   * The time to auto-adjust before and after splitpoint
   * when having the #SPLT_OPT_AUTO_ADJUST option.
   *
   * Int option that can take positive integer values.
   *
   * Default is #SPLT_DEFAULT_PARAM_GAP
   */
  SPLT_OPT_PARAM_GAP,
  /**
   * Enables or disables writing the log file containing splitpoints
   * found with silence detection.
   *
   * Int option that can take the values #SPLT_TRUE or #SPLT_FALSE.
   *
   * Default is #SPLT_FALSE
   */
  SPLT_OPT_ENABLE_SILENCE_LOG,
  /**
   * For mp3 files, tags version to be written in output files.
   *
   * Int option that can take the values 0, 1, 2 or 12.
   * 0 is for 'same tags versions as the input file', 
   * 1 is for ID3v1, 2 for ID3v2 and 12 for both ID3v1 and ID3v2.
   *
   * Default is 0
   */
  SPLT_OPT_FORCE_TAGS_VERSION,
  /**
   * Number of files to be created when splitting by equal time length
   * with #SPLT_OPTION_LENGTH_MODE.
   *
   * Int option that can take positive values.
   *
   * Default is 1
   */
  SPLT_OPT_LENGTH_SPLIT_FILE_NUMBER,
  /**
   * Enables or disables replacing tags in tags.
   * If set to #SPLT_TRUE with an album 'myalbum_\@t' and a title 'mysong'
   * will result in album 'myalbum_mysong'.
   *
   * Int option that can take the values #SPLT_TRUE or #SPLT_FALSE.
   *
   * Default is #SPLT_FALSE
   */
  SPLT_OPT_REPLACE_TAGS_IN_TAGS,
  /** 
   * Time to be added to each end splitpoint in order to overlap
   * the resulting files (in hundreths of seconds).
   *
   * Long option that can take positive values.
   *
   * Default is 0
   */
  SPLT_OPT_OVERLAP_TIME,
  /**
   * Time of the output files for the #SPLT_OPTION_TIME_MODE split (in
   * hundreths of seconds).
   *
   * Long option that can take positive values.
   *
   * Default is 6000 (one minute)
   */
  SPLT_OPT_SPLIT_TIME,
  /**
   * The threshold level (dB) to be considered as silence.
   * 
   * Threshold is used when having a #SPLT_OPTION_SILENCE_MODE, #SPLT_OPTION_TRIM_SILENCE_MODE
   * or #SPLT_OPT_AUTO_ADJUST option.
   *
   * Float option that can take values between -96 and 0.
   *
   * Default is #SPLT_DEFAULT_PARAM_THRESHOLD
   */
  SPLT_OPT_PARAM_THRESHOLD,
  /**
   * Offset of cutpoint inside the silence part when having a
   * #SPLT_OPTION_SILENCE_MODE or #SPLT_OPT_AUTO_ADJUST option
   *
   * Float option that can take values between -2 and 2.
   * 0 is the begin of silence and 1 the end.
   *
   * Default is #SPLT_DEFAULT_PARAM_OFFSET
   */
  SPLT_OPT_PARAM_OFFSET,
  /**
   * Minimum number of silence seconds to be considered a valid splitpoint.
   * All silences shorter than this value are discarded.
   *
   * Float option that can take positive float values.
   *
   * Default is #SPLT_DEFAULT_PARAM_MINIMUM_LENGTH
   */
  SPLT_OPT_PARAM_MIN_LENGTH,
  /**
   * Minimum number of seconds to be considered a valid track.
   * All tracks shorter than this value are discarded.
   *
   * Float option that can take positive float values.
   *
   * Default is #SPLT_DEFAULT_PARAM_MINIMUM_TRACK_LENGTH
   */
  SPLT_OPT_PARAM_MIN_TRACK_LENGTH,
  /**
   * Minimum number of seconds to be considered a valid track.
   * All tracks shorter than this value are joined with others.
   * The difference between #SPLT_OPT_PARAM_MIN_TRACK_LENGTH is that using this option,
   * no part from the original file is lost.
   *
   * Float option that can take positive float values.
   *
   * Default is #SPLT_DEFAULT_PARAM_MIN_TRACK_JOIN
   */
  SPLT_OPT_PARAM_MIN_TRACK_JOIN,
  /**
   * Output format of the artist extracted from filename when
   * using #SPLT_TAGS_FROM_FILENAME_REGEX.
   *
   * Int option that can take values as #splt_str_format.
   * 
   * Default is #SPLT_NO_CONVERSION
   */
  SPLT_OPT_ARTIST_TAG_FORMAT,
  /**
   * Output format of the album extracted from filename when
   * using #SPLT_TAGS_FROM_FILENAME_REGEX.
   *
   * Int option that can take values as #splt_str_format.
   * 
   * Default is #SPLT_NO_CONVERSION
   */
  SPLT_OPT_ALBUM_TAG_FORMAT,
  /**
   * Output format of the title extracted from filename when
   * using #SPLT_TAGS_FROM_FILENAME_REGEX.
   *
   * Int option that can take values as #splt_str_format.
   * 
   * Default is #SPLT_NO_CONVERSION
   */
  SPLT_OPT_TITLE_TAG_FORMAT,
  /**
   * Output format of the comment extracted from filename when
   * using #SPLT_TAGS_FROM_FILENAME_REGEX.
   *
   * Int option that can take values as #splt_str_format.
   * 
   * Default is #SPLT_NO_CONVERSION
   */
  SPLT_OPT_COMMENT_TAG_FORMAT,
  /**
   * Replace underscores with space when setting tags from filename
   * regex with #SPLT_TAGS_FROM_FILENAME_REGEX.
   *
   * Int option that can take the values #SPLT_TRUE or #SPLT_FALSE.
   *
   * Default is #SPLT_FALSE
   */
  SPLT_OPT_REPLACE_UNDERSCORES_TAG_FORMAT,
  /**
   * When importing CUE files, sets the filename to split as the FILE
   * CUE tag value if specified.
   *
   * Int option that can take the values #SPLT_TRUE or #SPLT_FALSE.
   *
   * Default is #SPLT_FALSE
   */
  SPLT_OPT_SET_FILE_FROM_CUE_IF_FILE_TAG_FOUND,
  /**
   * When using the #SPLT_OPT_PARAM_REMOVE_SILENCE, this option allows you to keep some
   * number of seconds of silence from the beginning of the output file
   * (end of the silence segment).
   *
   * Float option that can take positive values.
   *
   * Default is #SPLT_DEFAULT_KEEP_SILENCE_LEFT
   */
  SPLT_OPT_KEEP_SILENCE_LEFT,
  /**
   * When using the #SPLT_OPT_PARAM_REMOVE_SILENCE, this option allows you to keep some
   * number of seconds of silence from the end of the output file
   * (beginning of the silence segment).
   *
   * Float option that can take positive values.
   *
   * Default is #SPLT_DEFAULT_KEEP_SILENCE_RIGHT
   */
  SPLT_OPT_KEEP_SILENCE_RIGHT,
  /**
   * When importing a cue file, use the REM NAME comment for each TRACK to set the
   * splitpoint names instead of setting the splitpoint names from the tags.
   *
   * Int option that can take the values #SPLT_TRUE or #SPLT_FALSE.
   *
   * Default is #SPLT_FALSE
   */
  SPLT_OPT_CUE_SET_SPLITPOINT_NAMES_FROM_REM_NAME,
  /**
   * Output or not a message that the CUE file has been created.
   *
   * Int option that can take the values #SPLT_TRUE or #SPLT_FALSE.
   *
   * Default is #SPLT_FALSE
   */
  SPLT_OPT_CUE_DISABLE_CUE_FILE_CREATED_MESSAGE,
  /**
   * When adding cue or cddb tags, keep the option #SPLT_TAGS_ORIGINAL.
   * When enabling this option, #mp3splt_read_original_tags must also be called.
   *
   * Int option that can take the values #SPLT_TRUE or #SPLT_FALSE.
   *
   * Default is #SPLT_FALSE
   */
  SPLT_OPT_CUE_CDDB_ADD_TAGS_WITH_KEEP_ORIGINAL_TAGS,
  /**
   * Defines the encoding of the ID3V2 tags.
   *
   * Int option that can take the values from #splt_id3v2_encoding.
   *
   * Default is #SPLT_ID3V2_UTF8
   */
  SPLT_OPT_ID3V2_ENCODING,
  /**
   * Defines the encoding of the input tags - used only for generating ID3V2 tags.
   *
   * Int option that can take the values from #splt_id3v2_encoding.
   *
   * Default is #SPLT_ID3V2_UTF8
   */
  SPLT_OPT_INPUT_TAGS_ENCODING,
  /**
   * Defines the minimum theoretical time length to be created when using
   * #SPLT_OPTION_TIME_MODE.
   * It is useful to avoid creating the last segment too small.
   * Time unit is in hundreths of seconds.
   *
   * Long option that can take positive values.
   *
   * Default is 0.
   */
  SPLT_OPT_TIME_MINIMUM_THEORETICAL_LENGTH,
  /**
   * If #SPLT_TRUE, raise a warning when no auto-adjust silence is found when
   * using the #SPLT_OPT_AUTO_ADJUST option.
   *
   * Int option that can take the values #SPLT_TRUE or #SPLT_FALSE.
   *
   * Default is #SPLT_FALSE.
   */
  SPLT_OPT_WARN_IF_NO_AUTO_ADJUST_FOUND,
  /**
   * If #SPLT_TRUE, stop with error when no auto-adjust silence is found when
   * using the #SPLT_OPT_AUTO_ADJUST option.
   *
   * Int option that can take the values #SPLT_TRUE or #SPLT_FALSE.
   *
   * Default is #SPLT_FALSE.
   */
  SPLT_OPT_STOP_IF_NO_AUTO_ADJUST_FOUND,
  /**
   * If #SPLT_TRUE, decode flac frames before writing them in the output file and compute the md5sum
   * to be stored in the FLAC header - this option decreases the performance of the split because of
   * the decoding process - it might be twice slower.
   *
   * Int option that can take the values #SPLT_TRUE or #SPLT_FALSE.
   *
   * Default is #SPLT_FALSE.
   */
  SPLT_OPT_DECODE_AND_WRITE_FLAC_MD5SUM_FOR_CREATED_FILES,
  /**
   * If #SPLT_TRUE, handles bit-reservoir for gapless playback when splitting.
   * It currently works only for mp3 files.
   *
   * Int option that can take the values #SPLT_TRUE or #SPLT_FALSE.
   *
   * Default is #SPLT_FALSE.
   */
  SPLT_OPT_HANDLE_BIT_RESERVOIR,
} splt_options;

/**
 * @brief Split mode. Possible values for the #SPLT_OPT_SPLIT_MODE option.
 */
typedef enum {
  /**
   * Normal split mode - using splitpoints provided with #mp3splt_append_splitpoint.
   */
  SPLT_OPTION_NORMAL_MODE,
  /**
   * Wrap split mode - split the files created with [mp3wrap](http://mp3wrap.sourceforge.net/) or albumwrap.
   * To just find out the wrapped files, see #mp3splt_get_wrap_files.
   */
  SPLT_OPTION_WRAP_MODE,
  /**
   * Silence detection split mode.
   * To just find out the silence detection splitpoints, see #mp3splt_set_silence_points.
   */
  SPLT_OPTION_SILENCE_MODE,
  /**
   * Trim silence detection split mode.
   * To just find out the trim silence detection splitpoints, see #mp3splt_set_trim_silence_points.
   */
  SPLT_OPTION_TRIM_SILENCE_MODE,
  /**
   * Synchronisation error split mode (mp3 only).
   * It is useful to split large file derivated from a concatenation of smaller files.
   */
  SPLT_OPTION_ERROR_MODE,
  /**
   * Create an indefinite number of smaller files with a fixed time length specified by
   * #SPLT_OPT_SPLIT_TIME.
   */
  SPLT_OPTION_TIME_MODE,
  /**
   * Split in #SPLT_OPT_LENGTH_SPLIT_FILE_NUMBER pieces of equal time length.
   */
  SPLT_OPTION_LENGTH_MODE,
} splt_split_mode_options;

/**
 * @brief Values for the #SPLT_OPT_ID3V2_ENCODING
 */
typedef enum {
  /**
   * Latin1 (ISO-8859-1) encoding for ID3v2 tags
   */
  SPLT_ID3V2_LATIN1,
  /**
   * UTF-8 encoding for ID3v2 tags
   */
  SPLT_ID3V2_UTF8,
  /**
   * UTF-16 encoding for ID3v2 tags
   */
  SPLT_ID3V2_UTF16,
} splt_id3v2_encoding;

/**
 * @brief Values for the #SPLT_OPT_OUTPUT_FILENAMES option
 */
typedef enum {
  /**
   * @brief Output filename format specified by #mp3splt_set_oformat.
   */
  SPLT_OUTPUT_FORMAT,
  /**
   * @brief The default output; depends of the type of the split.
   *
   * Some defaults are #SPLT_DEFAULT_OUTPUT, #SPLT_DEFAULT_CDDB_CUE_OUTPUT,
   * #SPLT_DEFAULT_SYNCERROR_OUTPUT, #SPLT_DEFAULT_SILENCE_OUTPUT and 
   * #SPLT_DEFAULT_TRIM_SILENCE_OUTPUT.
   */
  SPLT_OUTPUT_DEFAULT,
  /**
   * @brief The names of the splitpoints provided by #mp3splt_append_splitpoint
   * are used to generate the output filenames.
   */
  SPLT_OUTPUT_CUSTOM
} splt_output_filenames_options;

/**
 * @brief Default value for the #SPLT_OPT_PARAM_THRESHOLD option
 */
#define SPLT_DEFAULT_PARAM_THRESHOLD -48.0
/**
 * @brief Default value for the #SPLT_OPT_PARAM_OFFSET option
 */
#define SPLT_DEFAULT_PARAM_OFFSET 0.8
/**
 * @brief Default value for the #SPLT_OPT_PARAM_MIN_LENGTH option
 */
#define SPLT_DEFAULT_PARAM_MINIMUM_LENGTH 0.0
/**
 * @brief Default value for the #SPLT_OPT_PARAM_MIN_TRACK_LENGTH option
 */
#define SPLT_DEFAULT_PARAM_MINIMUM_TRACK_LENGTH 0.0
/**
 * @brief Default value for the #SPLT_OPT_PARAM_MIN_TRACK_JOIN option
 */
#define SPLT_DEFAULT_PARAM_MIN_TRACK_JOIN 0.0
/**
 * @brief Default value for the #SPLT_OPT_PARAM_GAP option
 */
#define SPLT_DEFAULT_PARAM_GAP 30
/**
 * @brief Default value for the #SPLT_OPT_PARAM_NUMBER_TRACKS option
 */
#define SPLT_DEFAULT_PARAM_TRACKS 0
/**
 * @brief Default value for the #SPLT_OPT_PARAM_SHOTS option
 */
#define SPLT_DEFAULT_PARAM_SHOTS 25
/**
* @brief Default value for the #SPLT_OPT_KEEP_SILENCE_LEFT option
*/
#define SPLT_DEFAULT_KEEP_SILENCE_LEFT 0
/**
 * @brief Default value for the #SPLT_OPT_KEEP_SILENCE_RIGHT option
 */
#define SPLT_DEFAULT_KEEP_SILENCE_RIGHT 0

/**
 * @brief Values for the #SPLT_OPT_TAGS option
 */
typedef enum {
  /**
   * @brief Keep the tags of the original input file.
   */
  SPLT_TAGS_ORIGINAL_FILE,
  /**
   * @brief Keep the tags issued from CDDB, CUE, tracktype.org or set by the user with #mp3splt_append_tags.
   */
  SPLT_CURRENT_TAGS,
  /**
   * @brief Do not set any tags.
   */
  SPLT_NO_TAGS,
  /**
   * @brief Sets tags from filename using regular expression provided by #mp3splt_set_input_filename_regex.
   */
  SPLT_TAGS_FROM_FILENAME_REGEX,
} splt_tags_options;

/**
 * @brief Default output for #SPLT_OPTION_NORMAL_MODE when using #SPLT_OUTPUT_DEFAULT.
 * @see #mp3splt_set_oformat
 */
#define SPLT_DEFAULT_OUTPUT "@f_@mm_@ss_@h0h__@Mm_@Ss_@H0h"

/**
 * @brief Output filename format for CDDB and CUE when using #SPLT_OUTPUT_DEFAULT.
 * @see #mp3splt_set_oformat, #SPLT_OPT_OUTPUT_FILENAMES
 */
#define SPLT_DEFAULT_CDDB_CUE_OUTPUT "@A - @n - @t"
/**
 * @brief Output filename format for #SPLT_OPTION_ERROR_MODE when using #SPLT_OUTPUT_DEFAULT.
 * @see #mp3splt_set_oformat, #SPLT_OPT_OUTPUT_FILENAMES
 */
#define SPLT_DEFAULT_SYNCERROR_OUTPUT "@f_error_@n"
/**
 * @brief Output filename format for #SPLT_OPTION_SILENCE_MODE when using #SPLT_OUTPUT_DEFAULT.
 * @see #mp3splt_set_oformat, #SPLT_OPT_OUTPUT_FILENAMES
 */
#define SPLT_DEFAULT_SILENCE_OUTPUT "@f_silence_@n"
/**
 * @brief Default output for the trim silence split.
 * @see #mp3splt_set_oformat, #SPLT_OPT_OUTPUT_FILENAMES
 */
#define SPLT_DEFAULT_TRIM_SILENCE_OUTPUT "@f_trimmed"

/**
 * @brief Values for #SPLT_OPT_ARTIST_TAG_FORMAT, #SPLT_OPT_ALBUM_TAG_FORMAT,
 * #SPLT_OPT_TITLE_TAG_FORMAT and #SPLT_OPT_COMMENT_TAG_FORMAT when using
 * #SPLT_TAGS_FROM_FILENAME_REGEX.
 */
typedef enum {
  /**
   * @brief Keep the input "as is" without further change.
   */
  SPLT_NO_CONVERSION,
  /**
   * @brief Convert all characters of the input to lowercase.
   */
  SPLT_TO_LOWERCASE,
  /**
   * @brief Convert all characters of the input to uppercase.
   */
  SPLT_TO_UPPERCASE,
  /**
   * @brief Convert just the first character to uppercase.
   */
  SPLT_TO_FIRST_UPPERCASE,
  /**
   * @brief Convert the first character of each word to uppercase.
   */
  SPLT_TO_WORD_FIRST_UPPERCASE
} splt_str_format;

/**
 * @brief Sets the value of an int option in the \p state.
 *
 * @param[in] state Main state.
 * @param[in] option Target option from #splt_options.
 * @param[in] value Value for the \p option.
 * @return Possible error.
 */
splt_code mp3splt_set_int_option(splt_state *state, splt_options option, int value);

/**
 * @brief Sets the value of a long option in the \p state.
 *
 * @param[in] state Main state.
 * @param[in] option Target option from #splt_options.
 * @param[in] value Value for the \p option.
 * @return Possible error.
 */
splt_code mp3splt_set_long_option(splt_state *state, splt_options option, long value);

/**
 * @brief Sets the value of a float option in the \p state.
 *
 * @param[in] state Main state.
 * @param[in] option Target option from #splt_options.
 * @param[in] value Value for the \p option.
 * @return Possible error.
 */
splt_code mp3splt_set_float_option(splt_state *state, splt_options option, float value);

/**
 * @brief Returns the value of an int option from the \p state.
 *
 * @param[in] state Main state.
 * @param[in] option Target option from #splt_options.
 * @param[out] error Possible error; can be NULL.
 * @return Option value
 */
int mp3splt_get_int_option(splt_state *state, splt_options option, splt_code *error);

/**
 * @brief Returns the value of a long option from the \p state.
 *
 * @param[in] state Main state.
 * @param[in] option Target option from #splt_options.
 * @param[out] error Possible error; can be NULL.
 * @return Option value
 */
long mp3splt_get_long_option(splt_state *state, splt_options option, splt_code *error);

/**
 * @brief Returns the value of a float option from the \p state.
 *
 * @param[in] state Main state.
 * @param[in] option Target option from #splt_options.
 * @param[out] error Possible error; can be NULL.
 * @return Option value
 */
float mp3splt_get_float_option(splt_state *state, splt_options option, splt_code *error);

/**
 * @brief Set the output format when using #SPLT_OUTPUT_FORMAT.
 *
 * @param[in] state Main state.
 * @param[in] format Format of the output files.
 * @return Possible error.
 */
splt_code mp3splt_set_oformat(splt_state *state, const char *format);

//@}

/**
 * \ingroup using_libmp3splt
 * @defgroup splt_filepaths_ Input filename and paths
@{
 */

/**
 * @brief Sets the input filename to split.
 *
 * @param[in] state Main state.
 * @param[in] filename Input filename to be split.
 * @return Possible error.
 */
splt_code mp3splt_set_filename_to_split(splt_state *state, const char *filename);

/** 
 * @brief Sets the output directory where the split files will be created.
 *
 * @param[in] state Main state.
 * @param[in] path_of_split Output directory for the generated files.
 * @return Possible error.
 */
splt_code mp3splt_set_path_of_split(splt_state *state, const char *path_of_split);

/**
 * @brief Returns the filename to be split from the \p state.
 *
 * It is useful after importing a CUE file that provides a filename
 * with the FILE tag.
 *
 * @param[in] state Main state.
 * @return Possible error.
 *
 * @see #SPLT_OPT_SET_FILE_FROM_CUE_IF_FILE_TAG_FOUND
 */
const char *mp3splt_get_filename_to_split(splt_state *state);

/**
 * @brief Output filename for a M3U file that will be created in the output path.
 *
 * The M3U file will contain all the split files.
 * It will not be created if this function is not called.
 *
 * @param[in] state Main state.
 * @param[in] m3u_filename M3U filename.
 * @return Possible error.
 *
 * @see #mp3splt_set_path_of_split
 */
splt_code mp3splt_set_m3u_filename(splt_state *state, const char *m3u_filename);

/**
 * @brief Log filename for the #SPLT_OPTION_SILENCE_MODE split mode that will be created.
 *
 * The log filename is useful to find out the silence splitpoints with different parameters
 * without having to detect silence every time.
 * Note that if changing the #SPLT_OPT_PARAM_MIN_LENGTH or #SPLT_OPT_PARAM_THRESHOLD or the input
 * filename, the silence detection will still need be to be recomputed.
 *
 * By default, the filename is \p mp3splt.log.
 *
 * \note <i>Log file structure:</i>\n
 *   The first line contains the name of the split file.\n
 *   The second line contains the threshold and the minimum silence length.\n
 *   The next lines contain each one three columns:
 *     - the first column is the start position of the found silence (in seconds.fractions)\n
 *     - the second column is the end position of the found silence (in seconds.fractions)\n
 *     - the third column is the order of magnitude of the silence length; it is useful to
 *       find out most probable silence points
 *
 * @param[in] state Main state.
 * @param[in] filename Log filename when detecting splitpoints from silence.
 * @return Possible error.
 *
 * @see #mp3splt_set_path_of_split
 */
splt_code mp3splt_set_silence_log_filename(splt_state *state, const char *filename);

/**
 * @brief Full log filename for the #SPLT_OPTION_SILENCE_MODE split mode that will be created.
 *
 * The full log filename is useful to draw the amplitude wave of the input file (in dB) in order
 * to choose a threshold. If this function is not called, no full log is written.
 *
 * \note <i>Full log file structure:</i>\n
 *   The first column is a dummy column which is always zero, for plotting on zero axis purposes.\n
 *   The second column is the time in seconds as double.\n
 *   The third column is the dB level.\n
 *   The fourth column is the silences shots counter.\n
 *   The five column is the number of splitpoints found.\n
 *   The sixth column is the start time of the silence spot found.\n
 *   The seventh column is the end time of the silence spot found.
 *
 * Example of plotting the full log file with gnuplot:
 * \code
 *  gnuplot -e "file='silence_logs.txt'; set decimalsign locale; set xlabel 'Time in seconds';
 *  plot file using 2:3 title 'Threshold',
 *       file using 2:4 title 'Silence shots' with linespoints,
 *       file using 2:5 title 'Number of silence points found' with fsteps,
 *       file using 6:1 title 'Begin of silence',
 *       file using 7:1 title 'End of silence' with points;
 *  pause -1"
 * \endcode
 *
 * @param[in] state Main state.
 * @param[in] filename Full log filename when detecting splitpoints from silence.
 * @return Possible error.
 *
 * @see #mp3splt_set_path_of_split
 */
splt_code mp3splt_set_silence_full_log_filename(splt_state *state, const char *filename);

//@}

/**
 * \ingroup using_libmp3splt
 * @defgroup splt_callback_ Registering callback functions
@{
 */

/**
 * @brief Type of the message sent to the client
 *
 * @see #mp3splt_set_message_function
 */
typedef enum {
  /**
   * @brief Info message
   */
  SPLT_MESSAGE_INFO,
  /**
   * @brief Warning message
   */
  SPLT_MESSAGE_WARNING,
  /**
   * @brief Debug message
   */
  SPLT_MESSAGE_DEBUG
} splt_message_type;

/** 
 * Register callback function used to send text messages to the client.
 *
 * @param[in] state Main state.
 * @param[in] message_cb Callback function to be called.
 * @param[in] cb_data User data sent through \p message_cb.
 * @return Possible error.
 *
 * Parameters of the callback \p message_cb function:
 *
 * \p message Text message received.\n
 * \p type Type of the text message received.\n
 * \p cb_data The user data passed to the #mp3splt_set_message_function.
 *
 * @see #splt_message_type
 */
splt_code mp3splt_set_message_function(splt_state *state, 
    void (*message_cb)(const char *message, splt_message_type type, void *cb_data), void *cb_data);

/** 
 * @brief Register callback function that is called when an output file is created.
 *
 * @param[in] state Main state.
 * @param[in] file_cb Callback function to be called.
 * @param[in] cb_data User data sent through \p file_cb.
 * @return Possible error.
 *
 * Parameters of the callback \p file_cb function:
 *
 * \p filename Output filename that has been created.\n
 * \p cb_data The user data passed to the #mp3splt_set_split_filename_function.
 */
splt_code mp3splt_set_split_filename_function(splt_state *state,
    void (*file_cb)(const char *filename, void *cb_data),
    void *cb_data);

/** 
 * @brief Register callback function that is called when #SPLT_OPT_PRETEND_TO_SPLIT is
 * #SPLT_TRUE.
 *
 * This callback function allows getting the bytes that would have been written.
 * Please note that currently the mp3 Xing header is skipped when setting the input
 * not seekable with #SPLT_OPT_INPUT_NOT_SEEKABLE.
 *
 * @param[in] state Main state.
 * @param[in] write_cb Callback function to be called.
 * @param[in] cb_data User data sent through \p write_cb.
 * @return Possible error.
 *
 * Parameters of the callback \p write_cb function:
 *
 * \p ptr Bytes that would have been written to the output file.\n
 * \p size Size of one element stored in \p ptr.\n
 * \p nmemb Number of elements to be written from \p ptr.\n
 * \p cb_data The user data passed to the #mp3splt_set_pretend_to_split_write_function.
 */
splt_code mp3splt_set_pretend_to_split_write_function(splt_state *state,
    void (*write_cb)(const void *ptr, size_t size, size_t nmemb, void *cb_data),
    void *cb_data);

/**
 * @brief Type of messages sent to the client using the callback registered with
 * #mp3splt_set_progress_function.
 */
typedef enum {
  /**
   * @brief Preparing to split a song.
   */
  SPLT_PROGRESS_PREPARE,
  /**
   * @brief Creating the output file.
   */
  SPLT_PROGRESS_CREATE,
  /**
   * @brief Searching for synchronisation errors - when using #SPLT_OPTION_ERROR_MODE.
   */
  SPLT_PROGRESS_SEARCH_SYNC,
  /**
   * @brief Scanning for silence - when using #SPLT_OPTION_SILENCE_MODE,
   * #SPLT_OPT_AUTO_ADJUST, #mp3splt_set_silence_points or #mp3splt_set_trim_silence_points.
   */
  SPLT_PROGRESS_SCAN_SILENCE
} splt_progress_messages;

/**
 * @brief Structure containing all information needed to display a progress bar.
 * All members are private.
 * 
 * It is passed as parameter to the callback function registered with
 * #mp3splt_set_progress_function.
 *
 * @see #mp3splt_progress_get_type
 * @see #mp3splt_progress_get_filename_shorted
 * @see #mp3splt_progress_get_current_split
 * @see #mp3splt_progress_get_max_splits
 * @see #mp3splt_progress_get_silence_found_tracks
 * @see #mp3splt_progress_get_silence_db_level
 * @see #mp3splt_progress_get_percent_progress
 */
typedef struct splt_progres splt_progress;

/**
 * @brief Register callback function called to keep track of the current progress.
 * 
 * @param[in] state Main state.
 * @param[in] progress_cb Callback function to be called.
 * @param[in] cb_data User data sent through \p progress_cb.
 * @return Possible error.
 *
 * Parameters of the callback \p progress_cb function:
 *
 * \p p_bar Progress bar informations.\n
 * \p cb_data The user data passed to the #mp3splt_set_progress_function.
 */
splt_code mp3splt_set_progress_function(splt_state *state,
    void (*progress_cb)(splt_progress *p_bar, void *cb_data), void *cb_data);

/**
 * @return The type of #splt_progress_messages.
 */
int mp3splt_progress_get_type(const splt_progress *p_bar);

/**
 * @return The filename being processed. Result must be freed.
 */
char *mp3splt_progress_get_filename_shorted(const splt_progress *p_bar);

/**
 * @return The current split number.
 */
int mp3splt_progress_get_current_split(const splt_progress *p_bar);

/**
 * @return The total number of files to be created.
 */
int mp3splt_progress_get_max_splits(const splt_progress *p_bar);

/**
 * @return The number of silence spots found.
 */
int mp3splt_progress_get_silence_found_tracks(const splt_progress *p_bar);

/**
 * @return The audio threshold level.
 */
float mp3splt_progress_get_silence_db_level(const splt_progress *p_bar);

/**
 * @return The progress percentage between 0 and 1.
 */
float mp3splt_progress_get_percent_progress(const splt_progress *p_bar);

/**
 * @brief Register callback function that is called when looking for
 *        silence detection.
 *
 * @param[in] state Main state.
 * @param[in] get_silence_cb Callback function to be called.
 * @param[in] user_data User data sent through \p get_silence_cb.
 * @return Possible error.
 *
 * Parameters of the callback \p get_silence_cb function:
 *
 * \p time Current time in hundreths of seconds.\n
 * \p level Current silence level.\n
 * \p user_data The user data passed to the #mp3splt_set_silence_level_function.
 */
splt_code mp3splt_set_silence_level_function(splt_state *state,
  void (*get_silence_cb)(long time, float level, void *user_data),
  void *user_data);

//!@}

/**
 * \ingroup using_libmp3splt
 * @defgroup splt_splitpoints_ Splitpoints handling
@{
 */

/**
 * @brief Type of the splitpoint.
 * @see #mp3splt_append_splitpoint, #mp3splt_point_get_type
 */
typedef enum {
  /**
   * @brief Regular splitpoint.
   */
  SPLT_SPLITPOINT,
  /**
   * @brief Splitpoint used only to end the previous segment.
   *        Segment starting with this splitpoint will not be split.
   */
  SPLT_SKIPPOINT,
} splt_type_of_splitpoint;

/**
 * @brief Structure defining one splitpoint.
 * All members are private.
 *
 * @see mp3splt_append_splitpoint
 * @see mp3splt_get_splitpoints
 * @see mp3splt_erase_all_splitpoints
 */
typedef struct _splt_point splt_point;

/**
 * @brief Creates a new splitpoint with the \p splitpoint_value.
 *
 * By default, the splitpoint has no name and it has the type #SPLT_SPLITPOINT.
 *
 * @param[in] splitpoint_value The time of the splitpoint in hundreths of seconds.
 * @param[out] error Possible error; can be NULL.
 * @return Newly allocated point.
 *
 * @see #mp3splt_point_set_name
 * @see #mp3splt_point_set_type
 * @see #mp3splt_append_splitpoint
 */
splt_point *mp3splt_point_new(long splitpoint_value, splt_code *error);

/**
 * @brief Sets the name on the \p splitpoint.
 *
 * @param[in] splitpoint Splitpoint to be changed.
 * @param[in] name Name of the splitpoint to be set. Useful when using #SPLT_OUTPUT_CUSTOM.
 * @return Possible error.
 */
splt_code mp3splt_point_set_name(splt_point *splitpoint, const char *name);

/**
 * @brief Sets the name on the \p splitpoint.
 *
 * @param[in] splitpoint Splitpoint to be changed.
 * @param[in] type Type of the splitpoint.
 * @return Possible error.
 */
splt_code mp3splt_point_set_type(splt_point *splitpoint, splt_type_of_splitpoint type);

/**
 * @brief Append a new splitpoint to the \p state.
 *
 * @param[in] state Main state.
 * @param[in] splitpoint Splitpoint to be appended; splitpoint is freed afterwards.
 * @return Possible error.
 *
 * @see #mp3splt_point_new
*/
splt_code mp3splt_append_splitpoint(splt_state *state, splt_point *splitpoint);

/**
 * @brief Structure containing several #splt_point.
 * All members are private.
 *
 * @see #mp3splt_points_init_iterator
 * @see #mp3splt_points_next
 */
typedef struct _splt_points splt_points;

/**
 * @brief Returns all the splitpoints of the \p state.
 *
 * @param[in] state Main state.
 * @param[out] error Possible error; can be NULL.
 * @return The splitpoints from the \p state.
 *
 * @see #mp3splt_points_init_iterator
 * @see #mp3splt_points_next
 */
splt_points *mp3splt_get_splitpoints(splt_state *state, splt_code *error);

/**
 * @brief Initialisation of the iterator for use with #mp3splt_points_next.
 *
 * @param[in] splitpoints Splitpoints returned with #mp3splt_get_splitpoints.
 *
 * @see #mp3splt_points_next
 */
void mp3splt_points_init_iterator(splt_points *splitpoints);

/**
 * @brief Returns the next splitpoint from the \p splitpoints.
 *
 * @param[in] splitpoints Splitpoints to be processed.
 * @return Next splitpoint of \p splitpoints or NULL if none found or no point remains.
 *
 * @see #mp3splt_point_get_value
 * @see #mp3splt_point_get_type
 * @see #mp3splt_point_get_name
 */
const splt_point *mp3splt_points_next(splt_points *splitpoints);

/**
 * @brief Returns the time value of the splitpoint \p point.
 *
 * @param[in] point Splitpoint to be queried.
 * @return The time value of the splitpoint.
 *
 * @see #mp3splt_get_splitpoints
 */
long mp3splt_point_get_value(const splt_point *point);

/**
 * @brief Returns the type of the splitpoint \p point.
 * Type can be #splt_type_of_splitpoint.
 *
 * @param[in] point Splitpoint to be queried.
 * @return The type of the requested splitpoint.
 *
 * @see #mp3splt_get_splitpoints
 */
splt_type_of_splitpoint mp3splt_point_get_type(const splt_point *point);

/**
 * @brief Returns the name of the splitpoint \p point.
 *
 * @param[in] point Splitpoint to be queried.
 * @return The name of the requested splitpoint. Result must be freed.
 *
 * @see #mp3splt_get_splitpoints
 */
char *mp3splt_point_get_name(const splt_point *point);

/**
 * @brief Erase all splitpoints from the \p state.
 *
 * @param[in] state Main state.
 * @return Possible error.
 */
splt_code mp3splt_erase_all_splitpoints(splt_state *state);

//@}

/**
 * \ingroup using_libmp3splt
 * @defgroup splt_tags_ Tags handling
@{
 */

/**
 * @brief Undefined genre string.
 */
#define SPLT_UNDEFINED_GENRE "Other"

/**
 * @brief Number of ID3v1 genres.
 * @see #splt_id3v1_genres
 */
#define SPLT_ID3V1_NUMBER_OF_GENRES 127

/**
 * @brief ID3v1 genres.
 */
extern const char splt_id3v1_genres[SPLT_ID3V1_NUMBER_OF_GENRES][25];

/**
 * @brief Key tags useful with #mp3splt_append_tags.
 */
typedef enum {
  SPLT_TAGS_TITLE = 1,
  SPLT_TAGS_ARTIST = 2,
  SPLT_TAGS_ALBUM = 3,
  SPLT_TAGS_YEAR = 4,
  SPLT_TAGS_COMMENT = 5,
  SPLT_TAGS_TRACK = 6,
  SPLT_TAGS_GENRE = 7,
  SPLT_TAGS_PERFORMER = 8,
  /**
   * @brief Use this to set original tags.
   * You must call #mp3splt_read_original_tags in order to use this.
   */
  SPLT_TAGS_ORIGINAL = 900
} splt_tag_key;

/**
 * @brief Structure containing the tags for one output file.
 * All members are private.
 *
 * The structure contains the tags that we can set to one generated file.
 * Tags may also define the output filenames.
 *
 * @see mp3splt_tags_set
 */
typedef struct _splt_tags splt_tags;

/**
 * @brief Creates a new tags structure.
 *
 * @param[in] error Possible error; can be NULL.
 * @return Newly allocated tags.
 *
 * @see #mp3splt_tags_set
 * @see #mp3splt_append_tags
 */
splt_tags *mp3splt_tags_new(splt_code *error);

/**
 * @brief Set tags values in the \p tags.
 *
 * The ... parameters are pairs of (key, value); arguments must end with 0, where key is a #splt_tag_key
 * and value is const char *.
 *
 * Example:
 * \code{.c}
 *   mp3splt_tags_set(tags, SPLT_TAGS_ARTIST, "my_artist", SPLT_TAGS_ALBUM, "my_album", 0);
 * \endcode
 *
 * When using #SPLT_TAGS_ORIGINAL, the only possible values are "true" or "false".
 * In order to use #SPLT_TAGS_ORIGINAL, you have to call #mp3splt_read_original_tags before.
 *
 * @param[in] tags Tags to be changed.
 * @return Possible error.
 *
 * @see #mp3splt_append_tags
 */
splt_code mp3splt_tags_set(splt_tags *tags, ...);

/**
 * @brief Append the \p tags in the \p state.
 *
 * Tags must be appended in the same order as the splitpoints.
 *
 * First appended tags are mapped to the segment between the first two splitpoints.
 * Second appended tags are mapped to the second segment between the second and third splitpoints.
 *
 * @param[in] state Main state.
 * @param[in] tags Tags to be appended to the \p state.
 * @return Possible error.
 */
splt_code mp3splt_append_tags(splt_state *state, splt_tags *tags);

/**
 * @brief Structure containing a group of tags.
 * All members are private.
 */
typedef struct _splt_tags_group splt_tags_group;

/**
 * @brief Returns all the tags of the \p state.
 *
 * @param[in] state Main state.
 * @param[out] error Possible error; can be NULL.
 * @return The tags group of the \p state.
 *
 * @see #mp3splt_tags_group_init_iterator
 * @see #mp3splt_tags_group_next
 */
splt_tags_group *mp3splt_get_tags_group(splt_state *state, splt_code *error);

/**
 * @brief Removes all the tags of the \p state for the skippoints.
 *
 * @param[in] state Main state.
 * @return Possible error.
 */
splt_code mp3splt_remove_tags_of_skippoints(splt_state *state);

/**
 * @brief Initialisation of the iterator for use with #mp3splt_tags_group_next.
 *
 * @param[in] tags_group Group of tags returned with #mp3splt_get_tags_group.
 *
 * @see #mp3splt_tags_group_next
 */
void mp3splt_tags_group_init_iterator(splt_tags_group *tags_group);

/**
 * @brief Returns the next tags from the \p tags_group.
 *
 * @param[in] tags_group Tags group to be processed.
 * @return Next tags of \p tags_group or NULL if none found or no tags remains.
 *
 * @see #mp3splt_tags_get
 */
splt_tags *mp3splt_tags_group_next(splt_tags_group *tags_group);

/**
 * @brief Returns the value of \p key from the \p tags. Result must be freed.
 */
char *mp3splt_tags_get(splt_tags *tags, splt_tag_key key);

/**
 * @brief Fill the \p state with tags parsed from the \p tags string.
 *
 * \p tags should contain one or more square brackets pairs [].
 * The tags defined in the first pair of square brackets will be set on the first split file.
 * Those defined in the second pair of square brackets will be set on the second split file, ...
 * Inside a pair of square brackets, each tag is defined as \@variable=value and they tags are 
 * separated by commas. If a percent sign % is found before the open square bracket character, 
 * then the pair of square brackets following the % character will define the default tags in 
 * the following files. Multiple '%' can be defined.
 * An optional 'r' character can be placed at the start, to replace tags in tags.
 * The 'replace tags in tags' option is not recursive.
 *
 * Variables can be: \@a - artist, \@b - album, \@t - title, \@y - year, \@c - comment, \@g - genre, 
 * \@n - track number, \@o - set original tags, \@N - auto increment track number.
 * Variables for the start splitpoint: \@m - minutes, \@s - seconds, \@h - hundreths of seconds.
 * Variables for the end splitpoint: \@M - minutes, \@S - seconds, \@H - hundreths of seconds.
 *
 * Using the 'replace tags in tags' option, you can also use the following variables, which are 
 * replaced by the data from the original tags: \#a, \#b, \#t, \#y, \#c, \#g.
 * Note that this will only work if \@o has been found before. 
 *
 * @param[in] state Main state.
 * @param[in] tags String containing tags to be parsed and appended.
 * @param[out] error Possible error; can be NULL.
 * @return #SPLT_TRUE if the input tags are ambiguous.
 * Tags might be ambiguous if the input does not seem to be valid or if \@t or \@n is missing.
 */
int mp3splt_put_tags_from_string(splt_state *state, const char *tags, splt_code *error);

/**
 * @brief Parses the original tags from the input file and stores them for the future split.
 *
 * This function must be called when using #SPLT_TAGS_ORIGINAL called by #mp3splt_tags_set.
 *
 * @param[in] state Main state.
 * @return Possible error.
 */
splt_code mp3splt_read_original_tags(splt_state *state);

/**
 * @brief Erase all the tags from the \p state.
 *
 * @param[in] state Main state.
 * @return Possible error.
 */
splt_code mp3splt_erase_all_tags(splt_state *state);

/**
 * @brief Defines the regex that will be used for #SPLT_TAGS_FROM_FILENAME_REGEX.
 *
 * Tags will be extracted using the following variables:
 *   (?\<artist>), (?\<album>), (?\<title>), (?\<tracknum>), (?\<year>), (?\<comment>), (?\<genre>).
 *
 * Example: (?\<artist>.*?) _ (?\<album>.*?) will extract
 * 'one artist' and 'one album' from 'one artist _ one album'.
 *
 * @param[in] state Main state.
 * @param[in] regex Regular expression used to set the tags from the filename.
 * @return Possible error.
 */
splt_code mp3splt_set_input_filename_regex(splt_state *state, const char *regex);

/**
 * @brief Default comment tag when using #SPLT_TAGS_FROM_FILENAME_REGEX and no comment found.
 *
 * @param[in] state Main state.
 * @param[in] default_comment_tag Default comment if no comment has been found.
 * @return Possible error.
 *
 * @see #mp3splt_set_input_filename_regex
 */
splt_code mp3splt_set_default_comment_tag(splt_state *state, const char *default_comment_tag);

/**
 * @brief Default genre tag when using #SPLT_TAGS_FROM_FILENAME_REGEX and no genre found.
 *
 * @param[in] state Main state.
 * @param[in] default_genre_tag Default genre if no genre has been found.
 * @return Possible error.
 *
 * @see #mp3splt_set_input_filename_regex
 */
splt_code mp3splt_set_default_genre_tag(splt_state *state, const char *default_genre_tag);

/**
 * @brief Parse the filename provided with #mp3splt_set_filename_to_split using regex 
 * provided by #mp3splt_set_input_filename_regex and returns the parsed tags.
 *
 * @param[in] state Main state.
 * @param[out] error Possible error; can be NULL.
 * @return Parsed tags; must be freed with #mp3splt_free_one_tag.
 *
 * @see #mp3splt_set_filename_to_split
 * @see #mp3splt_set_input_filename_regex
 * @see #mp3splt_free_one_tag
 */
splt_tags *mp3splt_parse_filename_regex(splt_state *state, splt_code *error);

/**
 * @brief Free the memory of one #splt_tags
 *
 * @param[in] tags Pointer to a #splt_tags.
 *
 * @see #mp3splt_parse_filename_regex
 */
void mp3splt_free_one_tag(splt_tags *tags);

//@}

/**
 * \ingroup using_libmp3splt
 * @defgroup splt_split_ Split functions
@{
 */

/**
 * @brief Executes the main split process.
 *
 * @param[in] state Main state.
 * @return Possible error.
 *
 * @see #mp3splt_stop_split
 * @see #mp3splt_new_state
 * @see #mp3splt_set_filename_to_split
 * @see #splt_options
 * @see #mp3splt_set_path_of_split
 */
splt_code mp3splt_split(splt_state *state);

/**
 * @brief Stop the main split process.
 *
 * @param[in] state Main state.
 * @return Possible error.
 *
 * @see #mp3splt_split
 */
splt_code mp3splt_stop_split(splt_state *state);

/**
 * @brief Recursive search of all the filenames matching the loaded plugins.
 *
 * @param[in] state Main state.
 * @param[in] filename Directory to be looked for recursive search.
 * @param[out] num_of_files_found Number of files found.
 * @param[out] error Possible error; can be NULL.
 * @return Newly allocated array of found files that must be freed.
 *
 * @see #mp3splt_set_filename_to_split and #mp3splt_split
 */
char **mp3splt_find_filenames(splt_state *state, const char *filename,
    int *num_of_files_found, splt_code *error);

//@}

/**
 * \ingroup using_libmp3splt
 * @defgroup splt_import_ Import splitpoints
@{
 */

/**
 * @brief Type of the import.
 *
 * @see #mp3splt_import
 */
typedef enum {
  CUE_IMPORT,
  CDDB_IMPORT,
  AUDACITY_LABELS_IMPORT,
  PLUGIN_INTERNAL_IMPORT
} splt_import_type;

/**
 * @brief Import splitpoints from the \p file having the \p type into the \p state.
 *
 * @param[in] state Main state.
 * @param[in] type Type of the import.
 * @param[in] file File to import.
 * @return Possible error.
 *
 * @see #mp3splt_split
 */
splt_code mp3splt_import(splt_state *state, splt_import_type type, const char *file);

/**
 * @brief Search CDDB file using CDDB CGI protocol (tracktype.org).
 *
 * @see #mp3splt_get_freedb_search
 */
#define SPLT_FREEDB_SEARCH_TYPE_CDDB_CGI 1

/**
 * @brief Get CDDB file using CDDB CGI protocol (tracktype.org or freedb.org).
 *
 * @see #mp3splt_write_freedb_file_result
 */
#define SPLT_FREEDB_GET_FILE_TYPE_CDDB_CGI 3

/**
 * @brief Get CDDB file using freedb.org CDDB protocol.
 *
 * @see #mp3splt_write_freedb_file_result
 */
#define SPLT_FREEDB_GET_FILE_TYPE_CDDB 4

/**
 * @brief Default port.
 *
 * @see #mp3splt_get_freedb_search
 * @see #mp3splt_write_freedb_file_result
 */
#define SPLT_FREEDB_CDDB_CGI_PORT 80

/**
 * @brief URL of tracktype.org when using #SPLT_FREEDB_SEARCH_TYPE_CDDB_CGI and
 * #SPLT_FREEDB_GET_FILE_TYPE_CDDB_CGI types.
 * 
 * @see #mp3splt_get_freedb_search
 * @see #mp3splt_write_freedb_file_result
 */
#define SPLT_FREEDB2_CGI_SITE "tracktype.org/~cddb/cddb.cgi"

/**
 * @brief Structure containing the freedb search results.
 * All members are private.
 *
 * @see mp3splt_get_freedb_search
 * @see #mp3splt_freedb_init_iterator
 * @see #mp3splt_freedb_next
 */
typedef struct _splt_freedb_results splt_freedb_results;

/**
 * @brief Structure containing only one freedb result.
 *
 * @see #mp3splt_freedb_get_id
 * @see #mp3splt_freedb_get_name
 * @see #mp3splt_freedb_get_number_of_revisions
 */
typedef struct _splt_freedb_one_result splt_freedb_one_result;

/**
 * @brief Use proxy when accessing the internet.
 *
 * @param[in] state Main state.
 * @param[in] proxy_address Proxy address.
 * @param[in] proxy_port Port of the \p proxy_address.
 * @return Possible error.
 */
splt_code mp3splt_use_proxy(splt_state *state, const char *proxy_address, int proxy_port);

/**
 * @brief Use proxy with base64 authentification.
 *
 * @param[in] state Main state.
 * @param[in] base64_authentification Authentification credentials encoded in base64.
 * @return Possible error.
 *
 * @see #mp3splt_encode_in_base64
 * @see #mp3splt_clear_proxy
 * @see #mp3splt_use_proxy
 */
splt_code mp3splt_use_base64_authentification(splt_state *state, 
    const char *base64_authentification);

/**
 * @brief Encode the \p input in base64.
 *
 * @param[in] state Main state.
 * @param[in] input Input to be encoded in base64.
 * @param[in] error Possible error; can be NULL.
 * @return The \p input encoded as base64.
 *
 * @see #mp3splt_use_base64_authentification
 */
char *mp3splt_encode_in_base64(splt_state *state, const char *input, int *error);

/**
 * @brief Clears the proxy data from the \p state.
 *        For security purposes, use this function as soon as the proxy is not needed any more.
 *
 * @param[in] state Main state.
 */
void mp3splt_clear_proxy(splt_state *state);

/**
 * @brief Search on the internet for the \p searched_string and returns the results.
 *
 * @param[in] state Main state.
 * @param[in] searched_string Search string - might be artist or album.
 * @param[out] error Possible error; can be NULL.
 * @param[in] search_type Type of the search.
 *                        Only #SPLT_FREEDB_SEARCH_TYPE_CDDB_CGI is supported for the moment.
 * @param[in] search_server You can use #SPLT_FREEDB2_CGI_SITE as search server.
 * @param[in] port Port of the \p search_server. Can be #SPLT_FREEDB_CDDB_CGI_PORT.
 * @return The search results.
 *
 * @see #mp3splt_freedb_init_iterator
 * @see #mp3splt_freedb_next
 * @see #mp3splt_write_freedb_file_result
 */
splt_freedb_results *mp3splt_get_freedb_search(splt_state *state,
    const char *searched_string, splt_code *error,
    int search_type, const char *search_server, int port);

/**
 * @brief Initialisation of the iterator for use with #mp3splt_freedb_next
 *
 * @param[in] freedb_results Freedb results returned with #mp3splt_get_freedb_search.
 *
 * @see #mp3splt_freedb_next
 */
void mp3splt_freedb_init_iterator(splt_freedb_results *freedb_results);

/**
 * @brief Returns the next freedb result from the \p freedb_results.
 *
 * @param[in] freedb_results Freedb results to be processed.
 * @return Next freedb result of \p freedb_results or NULL if none found or no result remains.
 *
 * @see #mp3splt_freedb_get_id
 * @see #mp3splt_freedb_get_name
 * @see #mp3splt_freedb_get_number_of_revisions
 */
const splt_freedb_one_result *mp3splt_freedb_next(splt_freedb_results *freedb_results);

/**
 * @brief Returns the ID of the \p result.
 * The ID is needed when using #mp3splt_write_freedb_file_result.
 */
int mp3splt_freedb_get_id(const splt_freedb_one_result *result);

/**
 * @brief Returns the name of the \p result.
 */
const char *mp3splt_freedb_get_name(const splt_freedb_one_result *result);

/**
 * @brief Returns the number of revisions of the \p result.
 */
int mp3splt_freedb_get_number_of_revisions(const splt_freedb_one_result *result);

/**
 * @brief Downloads the CDDB file of the \p disc_id and writes it to a file.
 *
 * @param[in] state Main state.
 * @param[in] disc_id ID of the chosen disc provided by #mp3splt_freedb_get_id.
 * @param[in] output_file Name of the output CDDB file that will be written.
 * @param[in] cddb_get_type Type of the download.
 *            Can be #SPLT_FREEDB_GET_FILE_TYPE_CDDB or #SPLT_FREEDB_GET_FILE_TYPE_CDDB_CGI.
 * @param[in] cddb_get_server Name of the server from the file is downloaded.
 *            Can be #SPLT_FREEDB2_CGI_SITE (or freedb.org or freedb.org/~cddb/cddb.cgi).
 * @param[in] port Port of the \p cddb_get_server.
 *                 Can be #SPLT_FREEDB_CDDB_CGI_PORT (or 8880) for example.
 * @return Possible error.
 *
 * @see #mp3splt_get_freedb_search
 */
splt_code mp3splt_write_freedb_file_result(splt_state *state,
    int disc_id, const char *output_file,
    int cddb_get_type, const char *cddb_get_server, int port);

//@}

/**
 * \ingroup using_libmp3splt
 * @defgroup splt_export_ Export splitpoints
@{
 */

/**
 * @brief Type of the export.
 *
 * @see #mp3splt_export
 */
typedef enum {
  CUE_EXPORT
} splt_export_type;

/**
 * @brief Export splitpoints from the \p state into the \p file saved as \p type.
 *
 * @param[in] state Main state.
 * @param[in] type Export type.
 * @param[in] file File to be written with splitpoints from the \p state.
 * @param[in] stop_at_total_time If #SPLT_TRUE, don't export splitpoints after the total time
 *                               of the input file.
 * @return Possible error.
 */
splt_code mp3splt_export(splt_state *state, splt_export_type type, 
    const char *file, int stop_at_total_time);

//@}

/**
 * \ingroup using_libmp3splt
 * @defgroup splt_wrap_ Wrap utilities
@{
 */

/**
 * @brief Structure containg the wrapped filenames found inside the input filename.
 * All members are private.
 *
 * @see #mp3splt_get_wrap_files
 * @see #mp3splt_wrap_init_iterator
 * @see #mp3splt_wrap_next
 */
typedef struct _splt_wrap splt_wrap;

/**
 * @brief Structure containing one wrapped file 
 * All members are private
 *
 * @see #mp3splt_wrap_get_wrapped_file
 */
typedef struct _splt_one_wrap splt_one_wrap;

/**
 * @brief Returns the wrapped files found from the input filename set with
 * #mp3splt_set_filename_to_split.
 *
 * @param[in] state Main state.
 * @param[out] error Possible error; can be NULL.
 * @return Wrapped files found.
 *
 * @see #mp3splt_wrap_init_iterator
 * @see #mp3splt_wrap_next
 */
splt_wrap *mp3splt_get_wrap_files(splt_state *state, splt_code *error);

/**
 * @brief Initialisation of the iterator for use with #mp3splt_wrap_next.
 *
 * @param[in] wrap Wrapped files returned with #mp3splt_get_wrap_files.
 *
 * @see #mp3splt_wrap_next
 */
void mp3splt_wrap_init_iterator(splt_wrap *wrap);

/**
 * @brief Returns the next wrapped file from the \p wrap.
 *
 * @param[in] wrap Wrapped files to be processed.
 * @return Next wrapped file of \p wrap or NULL if none found or no wrapped file remains.
 *
 * @see #mp3splt_wrap_get_wrapped_file
 */
const splt_one_wrap *mp3splt_wrap_next(splt_wrap *wrap);

/**
 * @brief Returns the wrapped file from \p one_wrap. Result must be freed.
 */
char *mp3splt_wrap_get_wrapped_file(const splt_one_wrap *one_wrap);

//@}

/**
 * \ingroup using_libmp3splt
 * @defgroup splt_other_ Other utilities
@{
 */

/**
 * @brief Scan for silence and set silence splitpoints in the \p state.
 *
 * @param[in] state Main state.
 * @param[out] error Possible error; can be NULL.
 * @return The number of silence spots found.
 */
int mp3splt_set_silence_points(splt_state *state, splt_code *error);

/**
 * @brief Scan for silence and set silence trim splitpoints in the \p state.
 *
 * @param[in] state Main state.
 * @return Possible error.
 */
splt_code mp3splt_set_trim_silence_points(splt_state *state);

/**
 * @brief Returns the version of libmp3splt. Result must be freed.
 */
char *mp3splt_get_version();

#ifdef __WIN32__
/**
 * @brief Returns \p source converted from UTF-16 to UTF-8.
 */
char *mp3splt_win32_utf16_to_utf8(const wchar_t *source);
#endif

/**
 * @brief Returns #SPLT_TRUE if \p filename is a directory.
 */
int mp3splt_check_if_directory(const char *filename);

#ifndef SPLT_DIRCHAR
#ifdef __WIN32__
#define SPLT_DIRCHAR '\\'
#define SPLT_DIRSTR "\\"
#else
/**
 * @brief Path separator as character (/ or \\)
 */
#define SPLT_DIRCHAR '/'
/**
 * @brief Path separator as string (/ or \\)
 */
#define SPLT_DIRSTR "/"
#endif
#endif

//@}

/** @defgroup splt_plugin_api Creating libmp3splt plugins
 * See #splt_plugin_func for detailed description.
@{
 */

/**
 * @brief Structure containing plugin information, like the version, the name and file extension.
 */
typedef struct {
  /**
   * @brief Plugin version.
   */
  float version;
  /**
   * @brief Plugin name.
   */
  char *name;
  /**
   * @brief File extension handled by the plugin
   */
  char *extension;
  /**
   * @brief File extension handled by the plugin as uppercase.
   */
  char *upper_extension;
} splt_plugin_info;

/**
 * @brief Structure containing the original tags of the input file.
 */
typedef struct _splt_original_tags splt_original_tags;

/**
 * @brief Libmp3splt plugin API.
 *
 * \warning The plugin API might still change.
 *
 * In order to create a plugin for libmp3splt, the following functions can be implemented.\n
 * Mandatory functions are #splt_pl_init, #splt_pl_end, #splt_pl_check_plugin_is_for_file,
 * #splt_pl_set_plugin_info and #splt_pl_split.
 *
 * Examples can be found for the <a
 * href="http://svn.code.sf.net/p/mp3splt/code/mp3splt-project/trunk/libmp3splt/plugins/mp3.c">mp3</a>,
 * <a href="http://svn.code.sf.net/p/mp3splt/code/mp3splt-project/trunk/libmp3splt/plugins/ogg.c">ogg vorbis</a>
 * <a href="http://svn.code.sf.net/p/mp3splt/code/mp3splt-project/trunk/libmp3splt/plugins/flac.c">FLAC</a>
 * implementations.
 */
typedef struct {
  /**
   * @brief Initialise the plugin. Mandatory.
   *
   * Create the plugin data, open the input file and read headers.\n
   * Use the \p state->codec pointer to store the plugin data.
   *
   * @param[in] state Main state.
   * @param[out] error Fill in possible error.
   */
  void (*splt_pl_init)(splt_state *state, splt_code *error);
  /**
   * @brief Unitialise the plugin. Mandatory.
   *
   * Close the input file, free the plugin data.\n
   * 
   * @param[in] state Main state.
   * @param[out] error Fill in possible error.
   */
  void (*splt_pl_end)(splt_state *state, splt_code *error);
  /**
   * @brief Checks if the plugin matches the input file. Mandatory.
   *
   * If stdin is supported, don't forget to check if the input filename is stdin.
   * 
   * @param[in] state Main state.
   * @param[out] error Fill in possible error.
   * @return #SPLT_TRUE if the plugin matches the input file.
   */
  int (*splt_pl_check_plugin_is_for_file)(splt_state *state, splt_code *error);
  /**
   * @brief Set plugin information into the \p information structure. Mandatory.
   *
   * Information like the plugin version, plugin name and file extension must be filled.\n
   *
   * @param[in] splt_plugin_info Plugin information to be filled. Parameter is already allocated.
   * @param[out] error Fill in possible error.
   */
  void (*splt_pl_set_plugin_info)(splt_plugin_info *information, splt_code *error);
  /**
   * @brief Main split function. Mandatory.
   *
   * @param[in] state Main state.
   * @param[in] final_fname Output filename to be written for this split.
   * @param[in] begin_point Begin point where the split starts as seconds.hundreths.
   * @param[in] end_point End point where the split ends as seconds.hundreths.
   * @param[out] error Fill in possible error.
   * @param[in] save_end_point Is equal to #SPLT_TRUE if optimisation can be done for saving the
   * end point seek for the next call to this function. This avoids looking for the next begin point
   * seek since it will be equal to the previous saved end point seek.
   * @return The real end point split; in most cases, it is equal to the \p end_point.
   */
  double (*splt_pl_split)(splt_state *state, const char *final_fname, double begin_point,
      double end_point, splt_code *error, int save_end_point);
  /**
   * @brief Set the original tags into the \p state from the input file.
   *
   * \p splt_tu_set_original_tags_field has to be used to set the original tags.\n
   * You can also save all the original tags in the \p state using \p
   * splt_tu_set_original_tags_data, in case you want to write them all in the output file,
   * for the tags that are not supported by the library's structure.
   *
   * @param[in] state Main state.
   * @param[out] error Fill in possible error.
   */
  void (*splt_pl_set_original_tags)(splt_state *state, splt_code *error);
  /**
   * @brief Frees the memory of the tags previously set in the #splt_pl_set_original_tags function.
   *
   * Free the \p original_tags->all_original_tags data previously set with
   * \p splt_tu_set_original_tags_data.
   *
   * @param[in] original_tags Original tags structure containing the original tags data to be freed.
   */
  void (*splt_pl_clear_original_tags)(splt_original_tags *original_tags);
  /**
   * @brief Scan the input file for silence.
   *
   * The input file has to be scanned for silence and for each time/audio level, a generic silence
   * processor will be called.\n
   * The processor handles the mp3splt silence detection logic.
   *
   * @param[in] state Main state.
   * @param[out] error Fill in possible error.
   * @return The number of silence spots found.
   */
  int (*splt_pl_scan_silence)(splt_state *state, splt_code *error);
  /**
   * @brief Scan the input file for trimming using silence detection.
   *
   * The implementation of this function is straight forward after implementing
   * #splt_pl_scan_silence, since the silence detection is the same.\n
   * Only the generic silence processor changes.
   *
   * @param[in] state Main state.
   * @param[out] error Fill in possible error.
   * @return The number of silence spots found.
   */
  int (*splt_pl_scan_trim_silence)(splt_state *state, splt_code *error);
  /**
   * @brief Search for synchronisation errors.
   *
   * Currently only mp3 supports synchronisation errors split.
   *
   * @param[in] state Main state.
   * @param[out] error Fill in possible error.
   */
  void (*splt_pl_search_syncerrors)(splt_state *state, splt_code *error);
  /**
   * @brief Split the input filename by offsets.
   *
   * Currently only used when splitting mp3 files using the synchronisation error mode.
   *
   * @param[in] state Main state.
   * @param[in] output_fname Output filename.
   * @param[in] begin Begin offset of the portion to be split.
   * @param[in] end End offset of the portion to be split.
   * @return Possible error.
   */
  int (*splt_pl_offset_split)(splt_state *state, const char *output_fname, off_t begin, off_t end);
  /**
   * @brief Unwrap the input file into the directory \p dir.
   *
   * Currently only mp3 supports wrapped files.
   *
   * @param[in] state Main state.
   * @param[in] listonly If equal to #SPLT_TRUE, then the wrapped files found are stored in the \p
   * state without actually splitting.
   * @param[in] dir Output directory where the wrapped files have to be stored.
   * @param[out] error Fill in possible error.
   */
  void (*splt_pl_dewrap)(splt_state *state, int listonly, const char *dir, splt_code *error);
  /**
   * @brief Import splitpoints from internal sheets.
   *
   * @param[in] state Main state.
   * @param[out] error Fill in possible error.
   */
  void (*splt_pl_import_internal_sheets)(splt_state *state, splt_code *error);
} splt_plugin_func;

//@}

/**
 * @brief Allow several inclusions of this file.
 */
#define MP3SPLT_MP3SPLT_H
#endif