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
|
---
layout: page
title: libsndfile : the sf_command function.
---
# sf_command
```c
int sf_command (SNDFILE *sndfile, int cmd, void *data, int datasize) ;
```
This function allows the caller to retrieve information from or change aspects
of the library behaviour. Examples include retrieving a string containing the
library version or changing the scaling applied to floating point sample data
during read and write. Most of these operations are performed on a per-file
basis.
The cmd parameter is an integer identifier which is defined in *sndfile.h*. All
of the valid command identifiers have names beginning with "SFC_". Data is
passed to and returned from the library by use of a void pointer. The library
will not read or write more than datasize bytes from the void pointer. For some
calls no data is required in which case data should be NULL and datasize may be
used for some other purpose.
The available commands are as follows:
| Name | Description |
|:------------------------------------------------------------------|:--------------------------------------------------------|
| [SFC_GET_LIB_VERSION](#sfc_get_lib_version) | Retrieve the version of the library as a string. |
| [SFC_GET_LOG_INFO](#sfc_get_log_info) | Retrieve the internal per-file operation log. |
| [SFC_GET_CURRENT_SF_INFO](#sfc_get_current_sf_info) | Retrieve `SF_INFO` struct of opened file. |
| [SFC_CALC_SIGNAL_MAX](#sfc_calc_signal_max) | Calculate the measured maximum signal value. |
| [SFC_CALC_NORM_SIGNAL_MAX](#sfc_calc_norm_signal_max) | Calculate the measured normalised maximum signal value. |
| [SFC_CALC_MAX_ALL_CHANNELS](#sfc_calc_max_all_channels) | Calculate the peak value for each channel. |
| [SFC_CALC_NORM_MAX_ALL_CHANNELS](#sfc_calc_norm_max_all_channels) | Calculate the normalised peak for each channel. |
| [SFC_GET_SIGNAL_MAX](#sfc_get_signal_max) | Retrieve the peak value for the file. |
| [SFC_GET_MAX_ALL_CHANNELS](#sfc_get_max_all_channels) | Retrieve the peak value for each channel. |
| [SFC_SET_NORM_FLOAT](#sfc_set_norm_float) | Set float normalisation behaviour. |
| [SFC_SET_NORM_DOUBLE](#sfc_set_norm_double) | Set double normalisation behaviour. |
| [SFC_GET_NORM_FLOAT](#sfc_get_norm_float) | Get float normalisation behaviour. |
| [SFC_GET_NORM_DOUBLE](#sfc_get_norm_double) | Get double normalisation behaviour. |
| [SFC_SET_SCALE_FLOAT_INT_READ](#sfc_set_scale_float_int_read) | Control scale factor on read. |
| [SFC_SET_SCALE_INT_FLOAT_WRITE](#sfc_set_scale_int_float_write) | Control scale factor on write. |
| [SFC_GET_SIMPLE_FORMAT_COUNT](#sfc_get_simple_format_count) | Get simple formats count. |
| [SFC_GET_SIMPLE_FORMAT](#sfc_get_simple_format) | Get information about a simple format. |
| [SFC_GET_FORMAT_INFO](#sfc_get_format_info) | Get information about a major or subtype format. |
| [SFC_GET_FORMAT_MAJOR_COUNT](#sfc_get_format_major_count) | Get the number of major formats. |
| [SFC_GET_FORMAT_MAJOR](#sfc_get_format_major) | Get information about a major format type. |
| [SFC_GET_FORMAT_SUBTYPE_COUNT](#sfc_get_format_subtype_count) | Get the number of subformats. |
| [SFC_GET_FORMAT_SUBTYPE](#sfc_get_format_subtype) | Get information about a subformat. |
| [SFC_SET_ADD_PEAK_CHUNK](#sfc_set_add_peak_chunk) | Control PEAK chunk write to WAV and AIFF. |
| [SFC_UPDATE_HEADER_NOW](#sfc_update_header_now) | Update the file header in write mode on demand. |
| [SFC_SET_UPDATE_HEADER_AUTO](#sfc_set_update_header_auto) | Update the file header on each write. |
| [SFC_FILE_TRUNCATE](#sfc_file_truncate) | Truncate a file open for write or for read/write. |
| [SFC_SET_RAW_START_OFFSET](#sfc_set_raw_start_offset) | Change the data start offset for raw files. |
| SFC_SET_DITHER_ON_WRITE | Not implemented. |
| SFC_SET_DITHER_ON_READ | Not implemented. |
| SFC_GET_DITHER_INFO_COUNT | Not implemented. |
| SFC_GET_DITHER_INFO | Not implemented. |
| [SFC_SET_CLIPPING](#sfc_set_clipping) | Control automatic clipping behaviour. |
| [SFC_GET_CLIPPING](#sfc_get_clipping) | Get current clipping setting. |
| [SFC_GET_EMBED_FILE_INFO](#sfc_get_embed_file_info) | Get information about embedded audio files. |
| [SFC_WAVEX_GET_AMBISONIC](#sfc_wavex_get_ambisonic) | Test a WAVEX file for Ambisonic format. |
| [SFC_WAVEX_SET_AMBISONIC](#sfc_wavex_set_ambisonic) | Modify a WAVEX header for Ambisonic format. |
| [SFC_SET_VBR_ENCODING_QUALITY](#sfc_set_vbr_encoding_quality) | Set the Variable Bit Rate encoding quality. |
| [SFC_SET_OGG_PAGE_LATENCY_MS](#sfc_set_ogg_page_latency_ms) | Set Ogg page latency for Opus file. |
| [SFC_GET_OGG_STREAM_SERIALNO](#sfc_get_ogg_stream_serialno) | Get Ogg stream serial number. |
| [SFC_SET_COMPRESSION_LEVEL](#sfc_set_compression_level) | Set the compression level. |
| [SFC_RAW_DATA_NEEDS_ENDSWAP](#sfc_raw_data_needs_endswap) | Determine if raw data needs endswapping. |
| [SFC_GET_BROADCAST_INFO](#sfc_get_broadcast_info) | Get the Broadcast Chunk info. |
| [SFC_SET_BROADCAST_INFO](#sfc_set_broadcast_info) | Set the Broadcast Chunk info. |
| [SFC_GET_CHANNEL_MAP_INFO](#sfc_get_channel_map_info) | Get the channel map info. |
| [SFC_SET_CHANNEL_MAP_INFO](#sfc_set_channel_map_info) | Set the channel map info. |
| [SFC_SET_CART_INFO](#sfc_set_cart_info) | Set the Cart Chunk info. |
| [SFC_GET_CART_INFO](#sfc_get_cart_info) | Get the Cart Chunk info. |
| [SFC_GET_LOOP_INFO](#sfc_get_loop_info) | Get loop info. |
| [SFC_GET_INSTRUMENT](#sfc_get_instrument) | Get instrument info. |
| [SFC_SET_INSTRUMENT](#sfc_set_instrument) | Set instrument info. |
| [SFC_GET_CUE_COUNT](#sfc_get_cue_count) | Get the cue marker count. |
| [SFC_GET_CUE](#sfc_get_cue) | Get cue marker info. |
| [SFC_SET_CUE](#sfc_set_cue) | Set cue marker info. |
| [SFC_RF64_AUTO_DOWNGRADE](#sfc_rf64_auto_downgrade) | Set auto downgrade from RF64 to WAV. |
| [SFC_GET_ORIGINAL_SAMPLERATE](#sfc_get_original_samplerate) | Get original samplerate metadata. |
| [SFC_SET_ORIGINAL_SAMPLERATE](#sfc_set_original_samplerate) | Set original samplerate metadata. |
| [SFC_GET_BITRATE_MODE](#sfc_get_bitrate_mode) | Get bitrate mode. |
| [SFC_SET_BITRATE_MODE](#sfc_set_bitrate_mode) | Set bitrate mode. |
---
## SFC_GET_LIB_VERSION
Retrieve the version of the library as a string.
### Parameters
sndfile
: Not used
cmd
: SFC_GET_LIB_VERSION
data
: A pointer to a char buffer
datasize
: The size of the buffer
### Examples
```c
char buffer [128] ;
sf_command (NULL, SFC_GET_LIB_VERSION, buffer, sizeof (buffer)) ;
```
### Return value
This call will return the length of the retrieved version string.
### Notes
The string returned in the buffer passed to this function will not overflow the
buffer and will always be null terminated .
## SFC_GET_LOG_INFO
Retrieve the internal per-file operation log.
This log buffer can often contain a good reason for why libsndfile failed to
open a particular file.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_GET_LOG_INFO
data
: A pointer to a char buffer
datasize
: The size of the buffer
Example:
```c
char buffer [2048] ;
sf_command (sndfile, SFC_GET_LOG_INFO, buffer, sizeof (buffer)) ;
```
### Return value
This call will return the length of the retrieved version string.
### Notes
The string returned in the buffer passed to this function will not overflow the
buffer and will always be null terminated.
## SFC_GET_CURRENT_SF_INFO
Retrieve `SF_INFO` struct of opened file.
`SFC_GET_CURRENT_SF_INFO` command copies `SF_INFO` struct of `sndfile` object to
provided buffer.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_GET_CURRENT_SF_INFO
data
: A pointer to a valid SF_INFO* pointer
datasize
: sizeof (SF_INFO)
### Examples
```c
SF_INFO sfinfo ;
sf_command (sndfile, SFC_GET_CURRENT_SF_INFO, sfinfo, sizeof (SF_INFO)) ;
```
### Return value
Zero on success, non-zero otherwise.
## SFC_CALC_SIGNAL_MAX
Retrieve the measured maximum signal value. This involves reading through the
whole file which can be slow on large files.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_CALC_SIGNAL_MAX
data
: A pointer to a double
datasize
: sizeof (double)
### Examples
```c
double max_val ;
sf_command (sndfile, SFC_CALC_SIGNAL_MAX, &max_val, sizeof (max_val)) ;
```
### Return value
Zero on success, non-zero otherwise.
## SFC_CALC_NORM_SIGNAL_MAX
Retrieve the measured normalised maximum signal value. This involves reading
through the whole file which can be slow on large files.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_CALC_NORM_SIGNAL_MAX
data
: A pointer to a double
datasize
: sizeof (double)
### Examples
```c
double max_val ;
sf_command (sndfile, SFC_CALC_NORM_SIGNAL_MAX, &max_val, sizeof (max_val)) ;
```
### Return value
Zero on success, non-zero otherwise.
## SFC_CALC_MAX_ALL_CHANNELS
Calculate the peak value (ie a single number) for each channel. This involves
reading through the whole file which can be slow on large files.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_CALC_MAX_ALL_CHANNELS
data
: A pointer to a double
datasize
: sizeof (double) * number_of_channels
### Examples
```c
double peaks [number_of_channels] ;
sf_command (sndfile, SFC_CALC_MAX_ALL_CHANNELS, peaks, sizeof (peaks)) ;
```
### Return value
Zero if peaks have been calculated successfully and non-zero otherwise.
## SFC_CALC_NORM_MAX_ALL_CHANNELS
Calculate the normalised peak for each channel. This involves reading through
the whole file which can be slow on large files.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_CALC_NORM_MAX_ALL_CHANNELS
data
: A pointer to a double
datasize
: sizeof (double) * number_of_channels
### Examples
```c
double peaks [number_of_channels] ;
sf_command (sndfile, SFC_CALC_NORM_MAX_ALL_CHANNELS, peaks, sizeof (peaks)) ;
```
### Return value
Zero if peaks have been calculated successfully and non-zero otherwise.
## SFC_GET_SIGNAL_MAX
Retrieve the peak value for the file as stored in the file header.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_GET_SIGNAL_MAX
data
: A pointer to a double
datasize
: sizeof (double)
### Examples
```c
double max_peak ;
sf_command (sndfile, SFC_GET_SIGNAL_MAX, &max_peak, sizeof (max_peak)) ;
```
### Return value
SF_TRUE if the file header contained the peak value. SF_FALSE
otherwise.
## SFC_GET_MAX_ALL_CHANNELS
Retrieve the peak value for the file as stored in the file header.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_GET_SIGNAL_MAX
data
: A pointer to an array of doubles
datasize
: sizeof (double) * number_of_channels
### Example
```c
double peaks [number_of_channels] ;
sf_command (sndfile, SFC_GET_MAX_ALL_CHANNELS, peaks, sizeof (peaks)) ;
```
### Return value
SF_TRUE if the file header contains per channel peak values for the file,
SF_FALSE otherwise.
## SFC_SET_NORM_FLOAT
This command only affects data read from or written to using the
floating point
functions:
```c
size_t sf_read_float (SNDFILE *sndfile, float *ptr, size_t items) ;
size_t sf_readf_float (SNDFILE *sndfile, float *ptr, size_t frames) ;
size_t sf_write_float (SNDFILE *sndfile, float *ptr, size_t items) ;
size_t sf_writef_float (SNDFILE *sndfile, float *ptr, size_t frames) ;
```
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_SET_NORM_FLOAT
data
: NULL
datasize
: SF_TRUE or SF_FALSE
For read operations setting normalisation to SF_TRUE means that the data from
all subsequent reads will be be normalised to the range [-1.0, 1.0].
For write operations, setting normalisation to SF_TRUE means than all data
supplied to the float write functions should be in the range [-1.0, 1.0] and
will be scaled for the file format as necessary.
For both cases, setting normalisation to SF_FALSE means that no scaling will
take place.
### Examples
```c
sf_command (sndfile, SFC_SET_NORM_FLOAT, NULL, SF_TRUE) ;
sf_command (sndfile, SFC_SET_NORM_FLOAT, NULL, SF_FALSE) ;
```
### Return value
Returns the previous float normalisation mode.
## SFC_SET_NORM_DOUBLE
This command only affects data read from or written to using the double
precision floating point
functions:
```c
size_t sf_read_double (SNDFILE *sndfile, double *ptr, size_t items) ;
size_t sf_readf_double (SNDFILE *sndfile, double *ptr, size_t frames) ;
size_t sf_write_double (SNDFILE *sndfile, double *ptr, size_t items) ;
size_t sf_writef_double (SNDFILE *sndfile, double *ptr, size_t frames) ;
```
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_SET_NORM_DOUBLE
data
: NULL
datasize
: SF_TRUE or SF_FALSE
For read operations setting normalisation to SF_TRUE means that the data from
all subsequent reads will be be normalised to the range [-1.0, 1.0].
For write operations, setting normalisation to SF_TRUE means than all data
supplied to the double write functions should be in the range [-1.0, 1.0] and
will be scaled for the file format as necessary.
For both cases, setting normalisation to SF_FALSE means that no scaling will
take place.
### Examples
```c
sf_command (sndfile, SFC_SET_NORM_DOUBLE, NULL, SF_TRUE) ;
sf_command (sndfile, SFC_SET_NORM_DOUBLE, NULL, SF_FALSE) ;
```
### Return value
Returns the previous double normalisation mode.
## SFC_GET_NORM_FLOAT
Retrieve the current float normalisation mode.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_GET_NORM_FLOAT
data
: NULL
datasize
: anything
### Examples
```c
normalisation = sf_command (sndfile, SFC_GET_NORM_FLOAT, NULL, 0) ;
```
### Return value
Returns TRUE if normalisation is on and FALSE otherwise.
## SFC_GET_NORM_DOUBLE
Retrieve the current float normalisation mode.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_GET_NORM_DOUBLE
data
: NULL
datasize
: anything
Example:
```c
normalisation = sf_command (sndfile, SFC_GET_NORM_DOUBLE, NULL, 0) ;
```
### Return value
Returns TRUE if normalisation is on and FALSE otherwise.
## SFC_SET_SCALE_FLOAT_INT_READ
Set/clear the scale factor when integer (short/int) data is read from a file
containing floating point data.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd:
SFC_SET_SCALE_FLOAT_INT_READ
data
: NULL
datasize
: TRUE or FALSE
Example:
```c
sf_command (sndfile, SFC_SET_SCALE_FLOAT_INT_READ, NULL, SF_TRUE) ;
```
### Return value
Returns the previous `SFC_SET_SCALE_FLOAT_INT_READ` setting for this file.
## SFC_SET_SCALE_INT_FLOAT_WRITE
Set/clear the scale factor when integer (short/int) data is written to a file as
floating point data.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_SET_SCALE_INT_FLOAT_WRITE
data
: NULL
datasize
: TRUE or FALSE
### Examples
```c
sf_command (sndfile, SFC_SET_SCALE_INT_FLOAT_WRITE, NULL, SF_TRUE) ;
```
### Return value
Returns the previous `SFC_SET_SCALE_INT_FLOAT_WRITE` setting for this file.
## SFC_GET_SIMPLE_FORMAT_COUNT
Retrieve the number of simple formats supported by libsndfile.
### Parameters
sndfile
: Not used.
cmd
: SFC_GET_SIMPLE_FORMAT_COUNT
data
: a pointer to an int
datasize
: sizeof (int)
### Examples
```c
int count ;
sf_command (sndfile, SFC_GET_SIMPLE_FORMAT_COUNT, &count, sizeof (int)) ;
```
### Return value
`0`.
## SFC_GET_SIMPLE_FORMAT
Retrieve information about a simple format.
### Parameters
sndfile
: Not used.
cmd
: SFC_GET_SIMPLE_FORMAT
data
: a pointer to an SF_FORMAT_INFO struct
datasize
: sizeof (SF_FORMAT_INFO)
The SF_FORMAT_INFO struct is defined in *sndfile.h* as:
```c
typedef struct
{ int format ;
const char *name ;
const char *extension ;
} SF_FORMAT_INFO ;
```
When `sf_command()` is called with `SF_GET_SIMPLE_FORMAT`, the value of the
format field should be the format number (ie 0 \<= format \<= count value
obtained using `SF_GET_SIMPLE_FORMAT_COUNT).
### Examples
```c
SF_FORMAT_INFO format_info ;
int k, count ;
sf_command (sndfile, SFC_GET_SIMPLE_FORMAT_COUNT, &count, sizeof (int)) ;
for (k = 0 ; k < count ; k++)
{ format_info.format = k ;
sf_command (sndfile, SFC_GET_SIMPLE_FORMAT, &format_info, sizeof (format_info)) ;
printf ("%08x %s %s\n", format_info.format, format_info.name, format_info.extension) ;
} ;
```
### Return value
0 on success and non-zero otherwise.
The value of the format field of the `SF_FORMAT_INFO` struct will be a value
which can be placed in the format field of an `SF_INFO` struct when a file is to
be opened for write. The name field will contain a char\* pointer to the name of
the string, eg. "WAV (Microsoft 16 bit PCM)". The extension field will contain
the most commonly used file extension for that file type.
## SFC_GET_FORMAT_INFO
Retrieve information about a major or subtype format.
### Parameters
sndfile
: Not used.
cmd
: SFC_GET_FORMAT_INFO
data
: a pointer to an SF_FORMAT_INFO struct
datasize
: sizeof (SF_FORMAT_INFO)
The `SF_FORMAT_INFO` struct is defined in \<sndfile.h\> as:
```c
typedef struct
{ int format ;
const char *name ;
const char *extension ;
} SF_FORMAT_INFO ;
```
When `sf_command()` is called with `SF_GET_FORMAT_INFO`, the format field is
examined and if (format & `SF_FORMAT_TYPEMASK`) is a valid format then the
struct is filled in with information about the given major type. If (format &
`SF_FORMAT_TYPEMASK`) is FALSE and (format & `SF_FORMAT_SUBMASK`) is a valid
subtype format then the struct is filled in with information about the given
subtype.
### Examples
```c
SF_FORMAT_INFO format_info ;
format_info.format = SF_FORMAT_WAV ;
sf_command (sndfile, SFC_GET_FORMAT_INFO, &format_info, sizeof (format_info)) ;
printf ("%08x %s %s\n", format_info.format, format_info.name, format_info.extension) ;
format_info.format = SF_FORMAT_ULAW ;
sf_command (sndfile, SFC_GET_FORMAT_INFO, &format_info, sizeof (format_info)) ;
printf ("%08x %s\n", format_info.format, format_info.name) ;
```
### Return value
0 on success and non-zero otherwise.
## SFC_GET_FORMAT_MAJOR_COUNT
Retrieve the number of major formats.
### Parameters
sndfile
: Not used.
cmd
: SFC_GET_FORMAT_MAJOR_COUNT
data
: a pointer to an int
datasize
: sizeof (int)
### Examples
```c
int count ;
sf_command (sndfile, SFC_GET_FORMAT_MAJOR_COUNT, &count, sizeof (int)) ;
```
### Return value
0.
## SFC_GET_FORMAT_MAJOR
Retrieve information about a major format type.
### Parameters
sndfile
: Not used.
cmd
: SFC_GET_FORMAT_MAJOR
data
: a pointer to an SF_FORMAT_INFO struct
datasize
: sizeof (SF_FORMAT_INFO)
### Examples
```c
SF_FORMAT_INFO format_info ;
int k, count ;
sf_command (sndfile, SFC_GET_FORMAT_MAJOR_COUNT, &count, sizeof (int)) ;
for (k = 0 ; k < count ; k++)
{ format_info.format = k ;
sf_command (sndfile, SFC_GET_FORMAT_MAJOR, &format_info, sizeof (format_info)) ;
printf ("%08x %s %s\n", format_info.format, format_info.name, format_info.extension) ;
} ;
```
For a more comprehensive example, see the program `list_formats.c` in the
`examples/` directory of the libsndfile source code distribution.
### Return value
0 on success and non-zero otherwise.
The value of the format field will be one of the major format identifiers such
as `SF_FORMAT_WAV` or `SF_FORMAT`_AIFF. The name field will contain a char\*
pointer to the name of the string, eg. "WAV (Microsoft)". The extension field
will contain the most commonly used file extension for that file type.
## SFC_GET_FORMAT_SUBTYPE_COUNT
Retrieve the number of subformats.
### Parameters
sndfile
: Not used.
cmd
: SFC_GET_FORMAT_SUBTYPE_COUNT
data
: a pointer to an int
datasize
: sizeof (int)
### Examples
```c
int count ;
sf_command (sndfile, SFC_GET_FORMAT_SUBTYPE_COUNT, &count, sizeof (int)) ;
```
### Return value
Returns zero.
## SFC_GET_FORMAT_SUBTYPE
Enumerate the subtypes (this function does not translate a subtype into a string
describing that subtype). A typical use case might be retrieving a string
description of all subtypes so that a dialog box can be filled in.
### Parameters
sndfile
: Not used.
cmd
: SFC_GET_FORMAT_SUBTYPE
data
: a pointer to an SF_FORMAT_INFO struct
datasize
: sizeof (SF_FORMAT_INFO)
### Examples
Example 1: Retrieve all sybtypes supported by the WAV format.
```c
SF_FORMAT_INFO format_info ;
int k, count ;
sf_command (sndfile, SFC_GET_FORMAT_SUBTYPE_COUNT, &count, sizeof (int)) ;
for (k = 0 ; k < count ; k++)
{ format_info.format = k ;
sf_command (sndfile, SFC_GET_FORMAT_SUBTYPE, &format_info, sizeof (format_info)) ;
if (! sf_format_check (format_info.format | SF_FORMAT_WAV))
continue ;
printf ("%08x %s\n", format_info.format, format_info.name) ;
} ;
```
Example 2: Print a string describing the `SF_FORMAT_PCM_16` subtype.
```c
SF_FORMAT_INFO format_info ;
int k, count ;
sf_command (sndfile, SFC_GET_FORMAT_SUBTYPE_COUNT, &count, sizeof (int)) ;
for (k = 0 ; k < count ; k++)
{ format_info.format = k ;
sf_command (sndfile, SFC_GET_FORMAT_SUBTYPE, &format_info, sizeof (format_info)) ;
if (format_info.format == SF_FORMAT_PCM_16)
{ printf ("%08x %s\n", format_info.format, format_info.name) ;
break ;
} ;
} ;
```
For a more comprehensive example, see the program `list_formats.c` in the
`examples/` directory of the libsndfile source code distribution.
### Return value
0 on success and non-zero otherwise.
The value of the format field will be one of the major format identifiers such
as `SF_FORMAT_WAV` or `SF_FORMAT_AIFF`. The name field will contain a char\*
pointer to the name of the string; for instance "WAV (Microsoft)" or "AIFF
(Apple/SGI)". The extension field will be a NULL pointer.
## SFC_SET_ADD_PEAK_CHUNK
By default, WAV and AIFF files which contain floating point data (subtype
`SF_FORMAT_FLOAT` or `SF_FORMAT_DOUBLE`) have a PEAK chunk. By using this
command, the addition of a PEAK chunk can be turned on or off.
**Note**: This call must be made before any data is written to the file.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_SET_ADD_PEAK_CHUNK
data
: Not used (should be NULL)
datasize
: TRUE or FALSE.
### Examples
```c
/* Turn on the PEAK chunk. */
sf_command (sndfile, SFC_SET_ADD_PEAK_CHUNK, NULL, SF_TRUE) ;
/* Turn off the PEAK chunk. */
sf_command (sndfile, SFC_SET_ADD_PEAK_CHUNK, NULL, SF_FALSE) ;
```
### Return value
Returns SF_TRUE if the peak chunk will be written after this call. Returns
SF_FALSE if the peak chunk will not be written after this call.
## SFC_UPDATE_HEADER_NOW
The header of an audio file is normally written by libsndfile when the file is
closed using [**sf_close()**](api.md#file-close-function).
There are however situations where large files are being generated and it would
be nice to have valid data in the header before the file is complete. Using this
command will update the file header to reflect the amount of data written to the
file so far. Other programs opening the file for read (before any more data is
written) will then read a valid sound file header.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_UPDATE_HEADER_NOW
data
: Not used (should be NULL)
datasize
: Not used.
### Examples
```c
/* Update the header now. */
sf_command (sndfile, SFC_UPDATE_HEADER_NOW, NULL, 0) ;
```
### Return value
Returns zero.
## SFC_SET_UPDATE_HEADER_AUTO
Similar to `SFC_UPDATE_HEADER_NOW` but updates the header at the end of every
call to the [sf_write\*](api.md#write) functions.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_SET_UPDATE_HEADER_AUTO
data
: Not used (should be NULL)
datasize
: `SF_TRUE` or `SF_FALSE`
### Examples
```c
/* Turn on auto header update. */
sf_command (sndfile, SFC_SET_UPDATE_HEADER_AUTO, NULL, SF_TRUE) ;
/* Turn off auto header update. */
sf_command (sndfile, SFC_SET_UPDATE_HEADER_AUTO, NULL, SF_FALSE) ;
```
### Return value
TRUE if auto update header is now on; FALSE otherwise.
## SFC_FILE_TRUNCATE
Truncate a file that was opened for write or read/write.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_FILE_TRUNCATE
data
: A pointer to an sf_count_t.
datasize
: sizeof (sf_count_t)
Truncate the file to the number of frames specified by the sf_count_t pointed to
by data. After this command, both the read and the write pointer will be at the
new end of the file. This command will fail (returning non-zero) if the
requested truncate position is beyond the end of the file.
### Examples
```c
/* Truncate the file to a length of 20 frames. */
sf_count_t frames = 20 ;
sf_command (sndfile, SFC_FILE_TRUNCATE, &frames, sizeof (frames)) ;
```
### Return value
Zero on success, non-zero otherwise.
## SFC_SET_RAW_START_OFFSET
Change the data start offset for files opened up as `SF_FORMAT_RAW`.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_SET_RAW_START_OFFSET
data
: A pointer to an sf_count_t.
datasize
: sizeof (sf_count_t)
For a file opened as format `SF_FORMAT_RAW`, set the data offset to the value
given by `data`.
### Examples
```c
/* Reset the data offset to 5 bytes from the start of the file. */
sf_count_t offset = 5 ;
sf_command (sndfile, SFC_SET_RAW_START_OFFSET, &offset, sizeof (offset)) ;
```
### Return value
Zero on success, non-zero otherwise.
## SFC_SET_CLIPPING
Turn on/off automatic clipping when doing floating point to integer conversion.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_SET_CLIPPING
data
: NULL
datasize
: SF_TRUE or SF_FALSE.
Turn on (datasize == SF_TRUE) or off (datasize == SF_FALSE) clipping.
### Examples
```c
sf_command (sndfile, SFC_SET_CLIPPING, NULL, SF_TRUE) ;
```
### Return value
Clipping mode (SF_TRUE or SF_FALSE).
## SFC_GET_CLIPPING
Turn on/off automatic clipping when doing floating point to integer conversion.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_GET_CLIPPING
data
: NULL
datasize
: 0
Retrieve the current cliiping setting.
### Examples
```c
sf_command (sndfile, SFC_GET_CLIPPING, NULL, 0) ;
```
### Return value
Clipping mode (SF_TRUE or SF_FALSE).
## SFC_GET_EMBED_FILE_INFO
Get the file offset and file length of a file enbedded within another larger
file.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_GET_EMBED_FILE_INFO
data
: a pointer to an SF_EMBED_FILE_INFO struct
datasize
: sizeof (SF_EMBED_FILE_INFO)
The `SF_EMBED_FILE_INFO` struct is defined in *sndfile.h* as:
```c
typedef struct
{ sf_count_t offset ;
sf_count_t length ;
} SF_EMBED_FILE_INFO ;
```
### Return value
0 on success and non-zero otherwise.
The value of the offset field of the `SF_EMBED_FILE_INFO` struct will be the
offsets in bytes from the start of the outer file to the start of the audio
file. The value of the offset field of the `SF_EMBED_FILE_INFO` struct will be
the length in bytes of the embedded file.
## SFC_WAVEX_GET_AMBISONIC
Test if the current file has the GUID of a WAVEX file for any of the Ambisonic
formats.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_WAVEX_GET_AMBISONIC
data
: NULL
datasize
: 0
The Ambisonic WAVEX formats are defined here:
<http://dream.cs.bath.ac.uk/researchdev/wave-ex/bformat.html>.
### Return value
`SF_AMBISONIC_NONE(0x40)` or `SF_AMBISONIC_B_FORMAT(0x41)` or zero if the file
format does not support ambisonic formats.
## SFC_WAVEX_SET_AMBISONIC
Set the GUID of a new WAVEX file to indicate an Ambisonics format.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_WAVEX_SET_AMBISONIC
data
: NULL
datasize
: SF_AMBISONIC_NONE or SF_AMBISONIC_B_FORMAT
Turn on (`SF_AMBISONIC_B_FORMAT(0x41)`) or off (`SF_AMBISONIC_NONE(0x40)`)
encoding. This command is currently only supported for files with
`SF_FORMAT_WAVEX` format.
The Ambisonic WAVEX formats are defined here:
<http://dream.cs.bath.ac.uk/researchdev/wave-ex/bformat.html>.
### Return value
Return the ambisonic value that has just been set or zero if the
file format does not support ambisonic encoding.
## SFC_SET_VBR_ENCODING_QUALITY
Set the Variable Bit Rate encoding quality. The encoding quality value
should be between 0.0 (lowest quality) and 1.0 (highest quality).
Currently this command is only implemented for FLAC and Ogg/Vorbis files.
It has no effect on un-compressed file formats.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_SET_VBR_ENCODING_QUALITY
data
: A pointer to a double value
datasize
: sizeof (double)
The command must be sent before any audio data is written to the file.
### Return value
SF_TRUE if VBR encoding quality was set. SF_FALSE otherwise.
## SFC_SET_OGG_PAGE_LATENCY_MS
Set page latency for Ogg Opus file in milliseconds. The value should be between
50.0 and 1600.0. This command is only implemented for Ogg Opus files.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_SET_OGG_PAGE_LATENCY_MS
data
: A pointer to a double value
datasize
: sizeof (double)
### Return value
0 on success and non-zero otherwise.
## SFC_GET_OGG_STREAM_SERIALNO
Get the Ogg stream serial number for files with the Ogg major format. Ogg
stream serail numbers are a randomly chosen 32-bit value, used for
differentiating logical Ogg streams.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_SET_OGG_STREAM_SERIALNO
data
: A pointer to a 32-bit int value
datasize
: sizeof (int32_t) = 4
### Return value
0 on success and non-zero otherwise.
## SFC_SET_COMPRESSION_LEVEL
Set the compression level. The compression level should be between 0.0 (minimum
compression level) and 1.0 (highest compression level). Currently this command is
only implemented for FLAC and Ogg/Vorbis files. It has no effect on
uncompressed file formats.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_SET_COMPRESSION_LEVEL
data
: A pointer to a double value
datasize
: sizeof (double)
The command must be sent before any audio data is written to the file.
### Return value
SF_TRUE if compression level was set. SF_FALSE otherwise.
## SFC_RAW_DATA_NEEDS_ENDSWAP
Determine if raw data read using [sf_read_raw()](api.md#raw) needs to be end
swapped on the host CPU.
For instance, will return SF_TRUE on when reading WAV containing
`SF_FORMAT_PCM_16` data on a big endian machine and `SF_FALSE` on a
little endian machine.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_RAW_DATA_NEEDS_ENDSWAP
data
: NULL
datasize
: 0
### Return value
`SF_TRUE` or `SF_FALSE`.
## SFC_GET_BROADCAST_INFO
Retrieve the Broadcast Extension Chunk from WAV (and related) files.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_GET_BROADCAST_INFO
data
: a pointer to an SF_BROADCAST_INFO struct
datasize
: sizeof (SF_BROADCAST_INFO)
The SF_BROADCAST_INFO struct is defined in *sndfile.h* as:
```c
typedef struct
{ char description [256] ;
char originator [32] ;
char originator_reference [32] ;
char origination_date [10] ;
char origination_time [8] ;
unsigned int time_reference_low ;
unsigned int time_reference_high ;
short version ;
char umid [64] ;
char reserved [190] ;
unsigned int coding_history_size ;
char coding_history [256] ;
} SF_BROADCAST_INFO ;
```
### Return value
`SF_TRUE` if the file contained a Broadcast Extension chunk or `SF_FALSE`
otherwise.
## SFC_SET_BROADCAST_INFO
Set the Broadcast Extension Chunk for WAV (and related) files.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_SET_BROADCAST_INFO
data
: a pointer to an SF_BROADCAST_INFO struct
datasize
: sizeof (SF_BROADCAST_INFO)
### Return value
`SF_TRUE` if setting the Broadcast Extension chunk was successful and `SF_FALSE`
otherwise.
## SFC_GET_CHANNEL_MAP_INFO
Retrieve the channel map contained in an AIFF or CAF Channel Layout chunk.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_GET_CHANNEL_MAP_INFO
data
: a pointer to an array of int, the same size as the number of channels in the
file
datasize
: number of channels * sizeof (int)
Channel map positions are defined in an enum in *sndfile.h*:
| Name | Value | Description |
|:-------------------------------------|:------|:------------------------------------------------------------------|
| SF_CHANNEL_MAP_INVALID | 0 | |
| SF_CHANNEL_MAP_MONO | 1 | |
| SF_CHANNEL_MAP_LEFT | 2 | Apple calls this 'Left' |
| SF_CHANNEL_MAP_RIGHT | 3 | Apple calls this 'Right' |
| SF_CHANNEL_MAP_CENTER | 4 | Apple calls this 'Center' |
| SF_CHANNEL_MAP_FRONT_LEFT | 5 | |
| SF_CHANNEL_MAP_FRONT_RIGHT | 6 | |
| SF_CHANNEL_MAP_FRONT_CENTER | 7 | |
| SF_CHANNEL_MAP_REAR_CENTER | 8 | Apple calls this 'Center Surround', Msft calls this 'Back Center' |
| SF_CHANNEL_MAP_REAR_LEFT | 9 | Apple calls this 'Left Surround', Msft calls this 'Back Left' |
| SF_CHANNEL_MAP_REAR_RIGHT | 10 | Apple calls this 'Right Surround', Msft calls this 'Back Right' |
| SF_CHANNEL_MAP_LFE | 11 | Apple calls this 'LFEScreen', Msft calls this 'Low Frequency' |
| SF_CHANNEL_MAP_FRONT_LEFT_OF_CENTER | 12 | Apple calls this 'Left Center' |
| SF_CHANNEL_MAP_FRONT_RIGHT_OF_CENTER | 13 | Apple calls this 'Right Center' |
| SF_CHANNEL_MAP_SIDE_LEFT | 14 | Apple calls this 'Left Surround Direct' |
| SF_CHANNEL_MAP_SIDE_RIGHT | 15 | Apple calls this 'Right Surround Direct' |
| SF_CHANNEL_MAP_TOP_CENTER | 16 | Apple calls this 'Top Center Surround' |
| SF_CHANNEL_MAP_TOP_FRONT_LEFT | 17 | Apple calls this 'Vertical Height Left' |
| SF_CHANNEL_MAP_TOP_FRONT_RIGHT | 18 | Apple calls this 'Vertical Height Right' |
| SF_CHANNEL_MAP_TOP_FRONT_CENTER | 19 | Apple calls this 'Vertical Height Center' |
| SF_CHANNEL_MAP_TOP_REAR_LEFT | 20 | Apple and MS call this 'Top Back Left' |
| SF_CHANNEL_MAP_TOP_REAR_RIGHT | 21 | Apple and MS call this 'Top Back Right' |
| SF_CHANNEL_MAP_TOP_REAR_CENTER | 22 | Apple and MS call this 'Top Back Center' |
| SF_CHANNEL_MAP_AMBISONIC_B_W | 23 | |
| SF_CHANNEL_MAP_AMBISONIC_B_X | 24 | |
| SF_CHANNEL_MAP_AMBISONIC_B_Y | 25 | |
| SF_CHANNEL_MAP_AMBISONIC_B_Z | 26 | |
| SF_CHANNEL_MAP_MAX | 27 | |
### Return value
`SF_TRUE` if the file contained a Channel Layout chunk or `SF_FALSE` otherwise.
## SFC_SET_CHANNEL_MAP_INFO
Set the channel map contained in an AIFF or CAF Channel Layout chunk.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_SET_CHANNEL_MAP_INFO
data
: a pointer to an array of int, the same size as the number of channels in the
file
datasize
: number of channels * sizeof (int)
### Return value
`SF_TRUE` if setting the Channel Layout chunk was successful and `SF_FALSE`
otherwise.
## SFC_GET_CART_INFO
Retrieve the Cart Chunk from WAV (and related) files. Based on AES46 standard
for CartChunk (see [CartChunk.org](http://www.cartchunk.org/) for more
information.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_GET_CART_INFO
data
: a pointer to an SF_CART_INFO struct
datasize
: sizeof (SF_CART_INFO)
The SF_CART_INFO struct is defined in *sndfile.h* as:
```c
#define SF_CART_INFO_VAR(p_tag_text_size) \
struct
{ char version [4] ;
char title [64] ;
char artist [64] ;
char cut_id [64] ;
char client_id [64] ;
char category [64] ;
char classification [64] ;
char out_cue [64] ;
char start_date [10] ;
char start_time [8] ;
char end_date [10] ;
char end_time [8] ;
char producer_app_id [64] ;
char producer_app_version [64] ;
char user_def [64] ;
long level_reference ;
SF_CART_TIMER post_timers [8] ;
char reserved [276] ;
char url [1024] ;
unsigned int tag_text_size ;
char tag_text[p_tag_text_size] ;
}
```
### Return value
`SF_TRUE` if the file contained a Cart chunk or `SF_FALSE` otherwise.
## SFC_SET_CART_INFO
Set the Cart Chunk for WAV (and related) files.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_SET_CART_INFO
data
: a pointer to an SF_CART_INFO struct
datasize
: sizeof (SF_CART_INFO)
### Return value
SF_TRUE if setting the Cart chunk was successful and SF_FALSE otherwise.
## SFC_GET_LOOP_INFO
Retrieve loop information for file including time signature, length in beats and
original MIDI base note
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_GET_LOOP_INFO
data
: a pointer to an SF_LOOP_INFO struct
datasize
: sizeof (SF_LOOP_INFO)
The SF_LOOP_INFO struct is defined in *sndfile.h* as:
```c
typedef struct
{ short time_sig_num ; /* any positive integer > 0 */
short time_sig_den ; /* any positive power of 2 > 0 */
int loop_mode ; /* see SF_LOOP enum */
int num_beats ; /* this is NOT the amount of quarter notes !!!*/
/* a full bar of 4/4 is 4 beats */
/* a full bar of 7/8 is 7 beats */
float bpm ; /* suggestion, as it can be calculated using other fields:*/
/* file's length, file's sampleRate and our time_sig_den*/
/* -> bpms are always the amount of _quarter notes_ per minute */
int root_key ; /* MIDI note, or -1 for None */
int future [6] ;
} SF_LOOP_INFO ;
```
### Examples
```c
SF_LOOP_INFO loop;
sf_command (sndfile, SFC_GET_LOOP_INFO, &loop, sizeof (loop)) ;
```
### Return value
`SF_TRUE` if the file header contains loop information for the file, `SF_FALSE`
otherwise.
## SFC_GET_INSTRUMENT
Retrieve instrument information from file including MIDI base note, keyboard
mapping and looping information (start/stop and mode).
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_GET_INSTRUMENT
data
: a pointer to an SF_INSTRUMENT struct
datasize
: sizeof (SF_INSTRUMENT)
The `SF_INSTRUMENT` struct is defined in *sndfile.h* as:
```c
typedef struct
{ int gain ;
char basenote, detune ;
char velocity_lo, velocity_hi ;
char key_lo, key_hi ;
int loop_count ;
struct
{ int mode ;
unsigned int start ;
unsigned int end ;
unsigned int count ;
} loops [16] ; /* make variable in a sensible way */
} SF_INSTRUMENT ;
```
`mode` values are defined as:
| Name | Value | Description |
|:--------------------|:------|:------------|
| SF_LOOP_NONE | 800 | |
| SF_LOOP_FORWARD | 801 | |
| SF_LOOP_BACKWARD | 802 | |
| SF_LOOP_ALTERNATING | 803 | |
### Examples
```c
SF_INSTRUMENT inst ;
sf_command (sndfile, SFC_GET_INSTRUMENT, &inst, sizeof (inst)) ;
```
### Return value
`SF_TRUE` if the file header contains instrument information for the file,
`SF_FALSE` otherwise.
## SFC_SET_INSTRUMENT
Set the instrument information for the file.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_SET_INSTRUMENT
data
: a pointer to an SF_INSTRUMENT struct
datasize
: sizeof (SF_INSTRUMENT)
### Examples
```c
SF_INSTRUMENT inst ;
sf_command (sndfile, SFC_SET_INSTRUMENT, &inst, sizeof (inst)) ;
```
### Return value
`SF_TRUE` if the file header contains instrument information for the file,
`SF_FALSE` otherwise.
## SFC_GET_CUE_COUNT
Retrieve the number of cue markers available for retrieval using the
[SFC_GET_CUE](#sfc_get_cue) command.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_GET_CUE_COUNT
data
: a pointer to a uint32_t
datasize
: sizeof (uint32_t)
### Examples
```c
uint32_t cue_count ;
sf_command (sndfile, SFC_GET_CUE_COUNT, &cue_count, sizeof (cue_count)) ;
```
### Return value
`SF_TRUE` if the file header contains cue marker information for the file,
`SF_FALSE` otherwise.
## SFC_GET_CUE
Retrieve cue marker information from file.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_GET_CUE
data
: a pointer to an SF_CUES struct
datasize
: sizeof (SF_CUES)
The SF_CUES struct is defined in *sndfile.h* as:
```c
typedef struct
{ int cue_count ;
struct
{ int32_t indx ;
uint32_t position ;
int32_t fcc_chunk ;
int32_t chunk_start ;
int32_t block_start ;
uint32_t sample_offset ;
char name [256] ;
} cue_points [100] ;
} SF_CUES ;
```
There is also an SF_CUES_VAR \#define that allows reading/writing more than 100
cue markers.
### Examples
```c
SF_CUES cues ;
sf_command (sndfile, SFC_GET_CUE, &cues, sizeof (cues)) ;
```
### Return value
`SF_TRUE` if the file header contains cue marker information for the file,
`SF_FALSE` otherwise.
## SFC_SET_CUE
Set the cue marker information for the file.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_SET_CUE
data
: a pointer to an SF_CUES struct
datasize
: sizeof (SF_CUES)
### Examples
```c
SF_CUES cues ;
sf_command (sndfile, SFC_SET_CUE, &cues, sizeof (cues)) ;
```
### Return value
`SF_TRUE` if the file header contains cue marker information for the file,
`SF_FALSE` otherwise.
## SFC_RF64_AUTO_DOWNGRADE
Enable auto downgrade from RF64 to WAV.
The EBU recommendation is that when writing RF64 files and the resulting file is
less than 4Gig in size, it should be downgraded to a WAV file (WAV files have a
maximum size of 4Gig). libsndfile doesn't follow the EBU recommendations
exactly, mainly because the test suite needs to be able test reading/writing
RF64 files without having to generate files larger than 4 gigabytes.
Note: This command should be issued before the first bit of audio data has been
written to the file. Calling this command after audio data has been written will
return the current value of this setting, but will not allow it to be changed.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_RF64_AUTO_DOWNGRADE
data
: NULL
datasize
: SF_TRUE or SF_FALSE
### Examples
```c
/* Enable auto downgrade on file close. */
sf_command (sndfile, SFC_RF64_AUTO_DOWNGRADE, NULL, SF_TRUE) ;
```
### Return value
Returns `SF_TRUE` if `SFC_RF64_AUTO_DOWNGRADE` is set and `SF_FALSE` otherwise.
## SFC_GET_ORIGINAL_SAMPLERATE
Get original samplerate metadata.
The Opus audio codec stores audio data independent of samplerate, but only
supports encoding or decoding at 8000Hz, 12000Hz, 16000Hz, 24000Hz or 48000Hz.
Opus includes a header field to record the original source input samplerate, and
a samplerate converter may be used if needed.
This command gets the original samplerate header field. It does not enable any
(non-existent) samplerate conversion, nor change the current decoder samplerate.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_GET_ORIGINAL_SAMPLERATE
data
: pointer to an integer
datasize
: sizeof (int)
### Examples
```c
/* Get the original sample rate */
int original_samplerate ;
sf_command (sndfile, SFC_GET_ORIGINAL_SAMPLERATE, &original_samplerate, sizeof (original_samplerate)) ;
```
### Return value
Returns `SF_TRUE` on success, `SF_FALSE` otherwise.
The passed integer is set to the value of the original samplerate.
## SFC_SET_ORIGINAL_SAMPLERATE
Set original samplerate metadata.
The Opus audio codec stores audio data independent of samplerate, but only
supports encoding or decoding at 8000Hz, 12000Hz, 16000Hz, 24000Hz or 48000Hz.
Opus includes a header field to record the original source input samplerate, and
a samplerate converter may be used if needed.
When writing an Opus file this command sets the original samplerate header field
to the provided value, which is then stored in the file. This has no effect on
the current encoder samplerate.
When reading an Opus file this command overrides the original samplerate value
as read from the file. libsndfile uses this value to choose what samplerate to
decode at, rounding up to the nearest valid Opus samplerate. After a successful
call, the file samplerate and frames count may have changed.
Note: This command should be issued before the first bit of audio data has been
read from or written to the file.
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_SET_ORIGINAL_SAMPLERATE
data
: pointer to an integer
datasize
: sizeof (int)
### Examples
```c
/* Store the original sample rate as 44100 */
int original_samplerate 44100;
sf_command (sndfile, SFC_SET_ORIGINAL_SAMPLERATE, &original_samplerate, sizeof (input_samplerate)) ;
```
### Return value
Returns SF_TRUE on success, SF_FALSE otherwise.
On write, can only succeed if no data has been written. On read, if successful,
[SFC_GET_CURRENT_SF_INFO](#sfc_get_current_sf_info) should be called to
determine the new frames count and samplerate
## SFC_GET_BITRATE_MODE
Get bitrate mode.
The bitrate mode is one of:
| Name | Value | Description |
|:-------------------------|:------|:------------------|
| SF_BITRATE_MODE_CONSTANT | 800 | Constant bitrate. |
| SF_BITRATE_MODE_AVERAGE | 801 | Average bitrate. |
| SF_BITRATE_MODE_VARIABLE | 802 | Variable bitrate. |
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_GET_BITRATE_MODE
data
: NULL
datasize
: anything
### Return value
Returns one of `SF_BITRATE_MODE_XXX` on success, `-1` otherwise.
## SFC_SET_BITRATE_MODE
Set bitrate mode.
The bitrate mode is one of:
| Name | Value | Description |
|:-------------------------|:------|:------------------|
| SF_BITRATE_MODE_CONSTANT | 800 | Constant bitrate. |
| SF_BITRATE_MODE_AVERAGE | 801 | Average bitrate. |
| SF_BITRATE_MODE_VARIABLE | 802 | Variable bitrate. |
### Parameters
sndfile
: A valid SNDFILE* pointer
cmd
: SFC_SET_BITRATE_MODE
data
: pointer to an integer
datasize
: sizeof (int)
### Return value
Returns `SF_TRUE` on success, `SF_FALSE` otherwise.
|