1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936
|
2006-02-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* Mingw-make-dist.sh
Add a shell script to build the windows binary/source ZIP file.
* doc/index.html
Add download link for windows binary/source ZIP file. Add links for GPG
signatures.
* doc/win32.html
Remove info about building using microsoft compiler.
* configure.ac
Bump version to 1.0.14.
2006-02-11 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sd2.c
Improve logging of errors in resource fork parser.
2006-01-31 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* Win32/Makefile.msvc
Replace au_g72x.* with g72x.*. Thanks to ussell Borogove.
2006-01-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.c
Make sure return values are initialised header buffer is full.
* src/wav.c
Add workarounds for messed up WAV files.
2006-01-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* Win32/config.h
Undef HAVE_INTTYPES_H for win32.
* tests/command_test.c
Don't exit on error in instrument test for XI files.
* configure.ac
Bump version to 1.0.13.
* doc/*.html NEWS README
Update version numbers.
2006-01-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/xi.c
Start work on add read/write of instrument chunks.
* src/command_test.c
Add tests for XI instrument chunk.
* tests/largefile_test.c tests/Makefile.am
Add new test and hook it into the build system. This test will not be run
automatically because it requires 3 Gig of disk space and takes 3 minutes
to run.
2006-01-10 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-play.c
Fix calculation of samples remaining in win32 code. Thanks Axel Roebel.
* src/common.h
Make sure length of header buffer can hold header plus strings. Thanks Axel
Roebel.
2006-01-09 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h.in src/aiff.c src/wav.c
Apply a patch from John Fitch (Csound project).
Add detune field to SF_INSTRUMENT struct.
Add reading/writing instrument chunks to WAV files.
* tests/command_test.c
Update SF_INSTRUMENT tests.
* tests/Makefile.am
Hook instrument tests into test suite.
2006-01-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac
Check for <inttypes.h> because some broken systems (like Solaris) don't have
<stdint.h> which is the 1999 ISO C standard file containing int64_t.
* src/sfendian.h src/common.h
Use <inttypes.h> if <stdint.h> is not available.
2005-12-30 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/peak_chunk_test.c
Extend and clean up tests.
* src/sndfile.c
Fix a bug that prevented the turning off of PEAK chunks.
2005-12-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/error_test.c
Make the test distclean correct.
* src/file_io.c
Fix an SD2 MacOSX bug (reported by vince schwarzinger).
2005-12-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c tests/command_test.c
Apply a big patch from John ffitch (Csound project) to add reading and
writing of instrument chunks to AIFF files. Also update the test.
2005-12-10 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/aiff_rw_test.c tests/virtual_io_test.c tests/utils.tpl
Move test function dump_data_to_file() to utils.tpl.
* tests/error_test.c tests/Makefile.am
Updates, including a new test to test that sf_error() returns a valid error
number.
2005-12-07 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/list_formats.c
Make sure the SF_INFO struct is memset to all zero before being used.
Thanks to Stephen F. Booth.
* src/sndfile.c
Make the return value of sf_error() match the API documentation.
2005-11-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-convert.c
Allow conversion to raw gsm610.
* src/common.h src/sndfile.c src/au.c
Remove au_nh_open() and all references to it (wasn't working anyway).
* tests/headerless_test.c
Add new test for file extension based detection.
* src/sndfile.c
Rejig file extension based file type detection.
2005-11-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Add "gsm" as a recognised file extension when no magic number can be found.
* tests/lossy_comp_test.c tests/Makefile.am
Test headerless GSM610.
2005-11-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/api.html
Fix a minor typo and a minor error. Thanks Christoph Kobe and John Pavel.
2005-10-30 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav_w64.c
Add more reporting of 'fmt ' chunk for G721 encoded files.
* src/wav.c
Gernerate a more correct 20 byte 'fmt ' chunk rather than a 16 byte one.
2005-10-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/G72x/g72x.[ch]
Minor cleanup of interface.
2005-10-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/ogg.c
Removed the horribly broken and non-functional OGG implementation when
--enable-experimental was enabled. When OGG does finally work it will be
merged.
* src/caf.c
Fix a memory leak.
2005-10-27 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/g72x.c src/G72x/*.(c|h) src/common.h src/sndfile.c src/wav.c src/au.c
Add support for G721 encoded WAV files.
* doc/index.html
Update support matrix.
* tests/lossy_comp_test.c
For file formats that support it, add string data after the audio data and
make sure it isn't treated as audio data on read.
* src/gsm610.c
Add code to ensure that the container close function (ie for WAV files) gets
called after the codec's close function. This allows GSM610 encoded WAV files
to have string data following the audio data.
Add an AIFF specific check on psf->datalength.
* src/wav.c
Simplify wav_close function.
* src/aiff.c
Make sure the tailer data gets written at an even file offset. Pad if
necessary.
* src/common.h
Replace the close function pointer in SF_PRIVATE with separate functions
codec_close and container_close. The former is always called first.
* src/*.c
Fix knock on effects of above.
2005-10-26 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-info.c
Complete dumping SF_INSTRUMENT data.
* src/dwvw.c src/ima_adpcm.c src/gsm610.c src/ms_adpcm.c
Add extra checks in *_init function.
* tests/lossy_comp_test.c
Add a string comment to the end of the files to make sure that the decoder
doesn't decode beyond the end of the audio data section.
2005-10-25 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-info.c
Minor code cleanup.
Start work on dumping SF_INSTRUMENT data.
2005-10-23 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h.in src/common.h src/common.c
Update definition of SF_INSTRUMENT struct and create a function to allocate
and initialize the struct (input from David Viens).
Clean up definition of SF_INSTRUMENT struct.
* src/wav.c src/wav_w64.c
Add support for Ambisoncs B WAVEX files (David Viens).
* src/aiff.c src/wav.c src/wav_w64.c
Start work on reading/writing the SF_INSTRUMENT data.
* src/sndfile.c
Add code to get and set SF_INSTRUMENT data.
* tests/command_test.* tests/Makefile.am
Add test for set and getof SF_INSTRUMENT data.
The file command_test.c is no longer autogen generated.
2005-10-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/gsm610.c
Minor cleanup.
2005-10-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/lossy_comp_test.c
Minor cleanup.
2005-10-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/*.c
Ensure sfconfig.h is included before any other header file.
* src/file_io.c
Add comments documenting the three sections of the file.
* src/gsm610.c
Make sure SF_FORMAT_WAVEX are handled correctly.
2005-10-07 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac
Add options to allow disabling of FLAC and ALSA. Suggested by Ben Greear.
2005-09-30 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/locale_test.c
Modify the way the unicode strings were encoded so that older compilers
do not complain. Thanks Axel Roebel.
* configure.ac
Bump the version to 1.0.12 for release.
* NEWS README Win32/config.h doc/(FAQ|index.html|command|api).html
Update version numbers.
2005-09-26 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/flac.c
Fix valgrind error and minor cleanup.
2005-09-25 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/(au|paf|aiff|w64|wav|svx).c
Make sure structs are initialised.
2005-09-24 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac
Make -Wdeclaration-after-statement work with --enable-gcc-werror configure
option.
Add -std=gnu99 (C99 plus posix style stuff like gmtime_r) to CFLAGS if the
compiler supports it.
2005-09-23 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac acinclude.m4
Add -Wdeclaration-after-statement to CFLAGS if the compilers supports it.
2005-09-22 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/util.(tpl|def)
Make the test_write_*_or_die() functions const safe.
2005-09-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/nist.c
Make sure the data offset is read from the file header. Thanks to
David A. van Leeuwen for a patch.
2005-09-20 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac src/sfconfig.h
Check for <locale.h> and the function setlocale().
Set config variables to zero if not found.
* tests/locale_test.c tests/Makefile.am
Add new test program and hook into build/test system.
2005-09-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h src/file_io.c
On windows, use windows specific types for file handles.
Add functions psf_init_files() and psf_use_rsrc().
* src/sd2.c
Make resource fork handling independant of file desciptor/handles.
* src/sndfile.c src/test_file_io.c
Fix knock on effects.
2005-09-06 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/float_cast.h
The lrint and lrintf implementations in Cygwin are both buggy and slow.
Add replacements which were pulled from the Public Domain MinGW math.h
header file.
2005-09-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/(lossy_comp_test|virtual_io_test).c
More Valgrind fixups.
* configure.ac
Simplify and correct configuring for Cygwin.
* Win32/config.h Win32/sndfile.h Win32/Makefile.msvc
Update build for MSVC.
2005-09-04 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/lossy_comp_test.c
Make sure to close SNDFILE when exiting test when file format is not seekable.
* tests/(aiff_rw_test|virtual_io_test).c
Do a few valgrind fix ups.
2005-09-03 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/float32.c src/double64.c
Replace floating point equality comparisons with greater/less comparisons.
Found by John Pavel using the Intel compiler.
* src/sfconfig.h
New file to clean up issues surrounding autoconf generated preprocessor
symbols.
* src/*.(c|h) tests/*.(c|tpl) examples/*.c
Fixed a bunch of other stuff found by John Pavel using the Intel compiler.
* src/file_io.c
Remove Mac OS9 Metrowerks compiler specific hacks.
2005-08-31 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/w64.c
Cast integer literal to sf_count_t in call to psf_binheader_writef() to
prevent Valgrind error.
2005-08-30 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/command.html
Improve documentation of SF_GET_FORMAT_SUBTYPE.
2005-08-26 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-convert.c
Allow files to be converted to SD2 format.
* src/sd2.c
Fix a bug in reading and writing of SD2 files on little endian CPUs.
Thanks to Matthew Willis for finding this.
2005-08-25 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/api.html
Update Note2 to point to SFC_SET_SCALE_FLOAT_INT_READ.
2005-08-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac
Use $host_os instead of $target_os (thanks to Mo De Jong).
2005-08-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/Makefile.am
Apply a patch from Mo DeJong to allow building outside of the source dir.
* src/file_io.c
Fix psf_fsync() for win32.
* src/wav.c src/wav_w64.(c|h)
Move some code from wav.c to wav_w64.c to improve the log output of files of
type WAVE_FORMAT_EXTENSIBLE.
2005-08-10 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/create_symbols_file.py
Make sure sf_write_fsync is an exported symbol.
* examples/sndfile-convert.c
Add support for writing VOX adpcm files.
2005-07-31 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/api.html
Document the new function sf_write_sync().
* doc/FAQ.html
Do you plan to support XYZ codec.
2005-07-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h.in src/sndfile.c
Add function sf_write_sync() to the API.
* src/common.h src/file_io.c
Low level implementation (win32 not done yet).
* tests/write_read_test.tpl
Use the new function in the tests.
2005-07-24 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h src/double64.c src/float32.c src/sndfile.c
Change the way PEAK chunk info is stored. Peaks now stored as an sf_count_t
for position and a double as the value.
* src/aiff.c src/caf.c src/wav.c
Fix knock on effects of above changes.
* src/caf.c
Implement 'peak' chunk for file wuth data in SF_FORMAT_FLOAT or
SF_FORMAT_DOUBLE format.
2005-07-23 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/nist.c
Fix a bug where a variable was being used without being initialized.
* src/flac.c
Add extra debug in sf_flac_meta_callback.
Make a bunch of private functions static.
* src/aiff.c src/wav.c
Fix allocation for PEAK_CHUNK (bug found using valgrind).
2005-07-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h
Move the peak_loc field of SF_PRIVATE to the PEAK_CHUNK struct.
Remove had_peak field of SF_PRIVATE, use pchunk != NULL instead.
Rename PEAK_CHUNK and PEAK_POS to PEAK_CHUNK_32 and PEAK_POS_32.
* src/aiff.c src/caf.c src/wav.c src/float32.c src/double64.c
Fix knock on effects from above.
2005-07-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Prevent files with unknown chunks from being opened read/write.
2005-07-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/flac.c
Do not use psf->end_of_file because it never gets set to anything.
* src/common.h
Remove unused SF_PRIVATE field end_of_file.
2005-07-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.c
Change the 'S' format specifier of psf_binheader_writef() to write AIFF
style strings (no terminating character).
* src/aiff.c
Move to new (correct) AIFF string style. Thanks to Axel Roebel for being
so persistent on this issue.
2005-07-11 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Allow SFE_UNSUPPORTED_FORMAT as an error from sf_open().
* doc/api.html doc/command.html
Documentation updates (thanks to Kyroz for promoting these updates).
* src/mat5.c
Modify the way the header is written.
2005-07-10 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/caf.c
Add a 'free' chunk to the written file so that the audio data starts at
an offset of 0x1000.
* src/sndfile.c
Allow SFE_UNSUPPORTED_FORMAT as an error from sf_open().
2005-07-09 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/caf.c src/sndfile.c
Add support for signed 8 bit integers.
* tests/write_read_test.tpl
Add test for signed 8 bit integers in CAF files.
* doc/index.html
Update matrix for signed 8 bit integers in CAF files.
2005-07-08 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Update sf_check_format() to support CAF.
* examples/sndfile-convert.c
Add support for ".caf" file extension.
* doc/index.html
Add Apple CAF to the support matrix.
* src/caf.c
Add file write support.
* src/common.c
Fix printing of Frames.
* tests/Makefile.am tests/write_read_test.tpl tests/lossy_comp_test.c
tests/header_test.tpl misc_test.c
Add tests for CAF files.
2005-07-07 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/FAQ.html
Fix Q/A about reading/writing memory buffers.
* src/caf.c
Bunch of work to support reading of CAF files.
2005-07-04 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/(aiff|ima_adpcm|mat4|mat5|ms_adpcm).c examples/sndfile-play.c
Fix sign conversion errors reported by gcc-4.0.
* src/caf.c
New file for Apple's Core Audio File format.
* src/sndfile.c src/common.h src/sndfile.h.in src/Makefile.am
Hook new file into build system.
2005-06-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src_wav_w64.c
Fix handling of stupidly large 'fmt ' chunks. Thanks to Vadim Berezniker
for supplying an example file.
* src/common.h src/sndfile.c
Remove redundant error code SFE_WAV_FMT_TOO_BIG.
2005-06-20 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h.in src/common.h src/sndfile.c
Add public error value SF_ERR_MALFORMED_FILE.
* src/sndfile.c
When parsing a file header fails and we don't have a system error, then set
the error number to SF_ERR_MALFORMED_FILE (suggested by Kyroz).
* configure.ac
Allow sqlite support to be disabled in configure script.
* regtest/database.c regtest/sndfile-regtest.c
Fix compiling when sqlite is missing.
2005-06-11 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
Fix psf_is_pipe() and return value of psf_fread() when using virtual i/o.
* src/sndfile.c
Fix VALIDATE_AND_ASSIGN_PSF macro for virtual i/o.
* tests/virtual_io_test.c
Fill in skeleton test program.
* tests/Makefile.am
Move virtual i/o tests to end of tests with stdio/pipe tests.
* src/(sndfile.h.in|file_io.c|common.h|sndfile.c) tests/virtual_io_test.c
Rename some of the virtual i/o functions and data types.
2005-06-10 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Fix the return values of sf_commands : SFC_SET_NORM_DOUBLE,
SFC_SET_NORM_FLOAT, SFC_GET_LIB_VERSION and SFC_GET_LOG_INFO. Thanks to
Kyroz for pointing out these errors.
* doc/command.html
Correct documented return values for SFC_SET_NORM_DOUBLE and
SFC_SET_NORM_FLOAT. Thanks to Kyroz again.
2005-05-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* regtest/*
Add new files for sndfile-regtest program.
* configure.ac Makefile.am
Hook regetest into build.
* src/wav.c src/common.c
Fix a regression where long ICMT chunks were causing the WAV parser
to exit.
2005-05-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* libsndfile.spec.in
Add html docs to the files section as suggested by Karsten Jeppesen.
* src/aiff.c
Fix parsing of odd length ANNO chunks.
2005-05-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h
Change the include guard to prevent clashes with other code.
2005-05-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-play.c
Improve error handling in code for playback under Linux/ALSA.
2005-05-10 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/ircam.c
Fix writing of IRCAM files on big endian systems (thanks to Axel Roebel).
* src/wav.c
Add workaround for files created by the Peak audio editor on Mac which can
produce files with very short LIST chunks (thanks to Jonathan Segel who
supplied the file).
2005-04-30 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c
Apply a patch From David Viens to make the parsing of basc chunks more
robust.
* src/wav.c
Another patch from David Viens to write correct wavex channel masks for
the most common channel configurations.
2005-04-08 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/command.c
Only allow FLAC in the format arrays if FLAC is enabled. Thanks to
Leigh Smith.
2005-03-09 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h
Add a directory field for storing the file directory to the SF_PRIVATE
struct.
* src/sndfile.c
Grab the directory name when copying the file path.
* src/file_io.c
Cleanup psf_open_rsrc() and also check for resource fork in
.AppleDouble/filename.
2005-03-01 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/svx.c
Fix a bug in the printing of the channel count. Bug reported by Michael
Schwendt. Thanks.
2005-01-26 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/paf.c
Fix a seek bug for 24 bit PAF files.
* tests/write_read_test.tpl
Update write_read_test to trigger the previously hidden PAF seek bug.
2005-01-25 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c src/w64.c src/wav.c
Do not return a header parse error when the log buffer overflows.
Continuing parsing works even on files where the log buffer does overflow.
This avoids a bug on some weirdo WAV (and other) files.
* src/common.h src/sndfile.c
Remove SFE_LOG_OVERRIN error and its associated error message.
* src/file_io.c
Fix a rsrc fork problem on MacOSX.
2004-12-31 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile-play.c
In the ALSA output code, added call to snd_pcm_drain() just before
snd_pcm_close() as suggested by Thomas Kaeding.
In the OSS output code, added two ioctls (SNDCTL_DSP_POST and
SNDCTL_DSP_SYNC) just before the close of the audio device.
* tests/virtual_io_test.c tests/Makefile.am
Add a new test program (currently empty) and add it to the build.
2004-12-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h.in src/sndfile.h src/common.h src/file_io.c
src/create_symbols_file.py
Apply patch from Steve Baker which is the beginnings of a virtual
I/O interface.
2004-12-23 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/*.c src/sndfile.h.in
Const-ify the write path throughout the library.
2004-12-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/development.html
Minor improvements.
2004-11-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/bugs.html
Minor improvements.
2004-11-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c
Add workaround for Logic Platinum AIFF files with broken COMT chunks.
2004-11-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/FAQ.html
Remove some ambiguities in the SD2 FAQ answer.
2004-11-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* Win32/sndfile.h Win32/config.h MacOS9/sndfile.h MacOS9/config.h
Updates from autoconfig versions.
2004-11-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c
Fix parsing of COMT chunks. Store SF_STR_COMMENT data in ANNO chunks
instead of COMT chunk.
2004-11-07 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c src/common.h
Change the ptr argument to psf_write() from "void*" to a "const void*".
Thanks to Tobias Gehrig for suggesting this.
2004-10-31 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c src/common.h
Add functions psf_close_rsrc() and read length of resourse fork into
rsrclength field of SF_PRIVATE.
* src/sd2.c
Make sure resource fork gets closed.
* tests/util.tpl
Add functions to check for file descriptor leakage.
* src/write_read_test.tpl
Use the file descriptor leak checks.
* src/sndfile.h.in
Add SFC_GET_LOOP_INFO and SF_LOOP_INFO struct.
* src/common.h
Add SF_LOOP_INFO pointer to SF_PRIVATE.
* src/wav.c src/aiff.c
Improve and add parsing of 'ACID' and 'basc' chunks, filling in
SF_LOOP_INFO data in SF_PRIVATE.
2004-10-30 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sd2.c
Further cleanup: remove printfs, change snprintf to LSF_SNPRINTF.
* Win32/config.h Win32/sndfile.h
Updates.
* tests/util.tpl
Add win32 macro for snprintf.
2004-10-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sfendian.h
Add macros : H2BE_SHORT, H2BE_INT, H2LE_SHORT and H2LE_INT.
* src/sd2.c
Use macros to make sure writing SD2 files on little endian machines works
correctly.
* tests/util.tpl
Add a delete_file() function which also deletes the resource fork of SD2
files.
* tests/write_read_test.tpl
Use delete_file() so that "make distcheck" works.
2004-10-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c src/file_io.c
Move resource filename construction and testing to psf_open_rsrc().
* src/common.h src/sndfile.c
Add error SFE_SD2_FD_DISALLOWED.
* tests/util.tpl tests/*.(c|tpl)
Add and allow_fd parameter to test_open_file_or_die() so that use of
sf_open_fd() can be avoided when opening SD2 files.
2004-10-27 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Update ACID chunk parsing.
* src/sd2.c
More fixes for files with large resource forks.
2004-10-23 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h src/sndfile.c
Add error numbers and messages for sd2 files.
* src/sd2.c
Reading of sd2 (resource fork version) now seems to be working.
2004-10-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.h
Update file_io.c to include win32 psf_rsrc_open().
* tests/floating_point_test.tpl
Remove use of __func__ in test programs (MSVC++ doesn't grok this).
* Win32/(config|sndfile).h MacOS9/(config|sndfile).h
Updates.
2004-10-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sfendian.h
Fix endswap_int64_t_(array|copy).
* src/test_endswap.(tpl|def)
Add tests for above and inprove all tests.
2004-10-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sfendian.h
Improve type safety, add endswap_double_array().
* src/double64.c
Use endswap_double_array() instead of endswap_long_array().
* src/test_endswap.(tpl|def) src/Makefile.am
Add preliminary endswap tests and hook into build system.
2004-10-06 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/configure.ac src/makefile.am
Finally fix the bulding of DLLs on Win32/MinGW.
* tests/makefile.am
Fix running of tests on Win32/MinGW.
2004-10-01 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h.in src/sndfile.c tests/floating_point_test.tpl
Rename SFC_SET_FLOAT_INT_MULTIPLIER to SFC_SET_SCALE_FLOAT_INT_READ.
* doc/command.html
Document SFC_SET_SCALE_FLOAT_INT_READ.
2004-09-30 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/floating_point_test.(tpl|def)
Derived from floating_point_test.c.
Add (float|double)_(short|int)_test functions.
* tests/util.(tpl|def)
Make separate float and double versions of gen_windowed_sine().
* tests/write_read_test.tpl
Fix after changes to gen_windowed_sine().
* src/(float32|double64).c
Implement SFC_SET_FLOAT_INT_MULTIPPLIER.
2004-09-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* acinclude.m4
Fix warnings from automake 1.8 and later.
* examples/sndfile-info.c
Add a "fflush (stdout)" after printing Win32 message.
2004-09-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* Win32/Makefile.mingw.in
Add a "make install" target.
2004-09-24 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h.in src/common.h src/sndfile.c src/command.c
Start work on adding command SFC_SET_FLOAT_INT_MULTIPLIER.
2004-09-22 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-convert.c
Fix a bug converting stereo integer PCM files to float.
2004-09-22 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-play.c
Appy patch from Conrad Parker to make Mac OSX error messages more
consistent and informative.
* doc/api.html
Fix a HTML HREF which was wrong.
* doc/win32.html
Add information about when nmake fails.
2004-09-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-play.c
Another patch from Denis Cote to prevent race conditions.
2004-09-02 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h src/ms_adpcm.c src/ima_adpcm.c
Fix alternative to ISO standard flexible struct array feature for broken
compilers.
2004-08-31 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h src/string.c src/sndfile.c
Make sf_set_string() return an error if trying to set a string when in
read mode.
2004-08-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h
Change the unnamed union into a named union so gcc-2.95 will compile it.
* src/*.c
Fixes to allow for the above change.
2004-08-20 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-play.c
Fixes for Win32. Thanks to Denis Cote.
* Win32/Win32/Makefile.(msvc|mingw.in)
Fix build system after removal of sfendian.h.
Build sndfile-convert.
* src/Makefile.am
Remove sfendian.c from dependancies.
2004-08-10 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h.in
Fix typo in comments (thanks Tommi Sakari Uimonen).
2004-07-31 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/(a|u)law_test.c
Minor cleanup.
2004-07-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/(pcm|float|double64|ulaw|alaw|xi).c
Optimise read/write loops by removing a redundant variable.
2004-07-24 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
Remove call to fsync() in psf_close().
2004-07-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/pcm.c
Inline x2y_array() functions where possible.
* configure.ac
Detect presence of type int64_t.
* src/sfendian.c src/sfendian.h
Move functions in the first file to the sfendian.h as static inline
functions.
Improve endswap_long_*() where possible.
2004-07-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/pcm.c
When converting from unsigned char to float or double, subtract 128 before
converting to float/double rather than after to save a floating point
operation as suggested by Stefan Briesenick.
* src/(pcm|sfendian|alaw|ulaw|double64|float32).c
Optimize inner loops by changing the loop counting slightly as suggested
by Stefan Briesenick.
* configure.ac
Detect presence of <byteswap.h>.
* src/sfendian.h
Use <byteswap.h> if present as suggested by Stefan Briesenick.
* src/pcm.c
Update bytewapping.
2004-07-02 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h src/*.c
Change the psf->buffer field of SF_PRIVATE into a more type safe union with
double, float, int etc elements.
2004-06-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-play.c
Merge slightly modifed patch from Stanko Juzbasic which allows playback of
mono files on MacOSX.
2004-06-25 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-convert.c
Move copy_metadata() after the second sf_open().
2004-06-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-convert.c
Fix a bug which caused the program to go into an infinite loop if the source
file has no meta-data. Thanks to Ron Parker for reporting this.
* src/sndfile.h.in
Add SF_STR_FIRST and SF_STR_LAST to allow enumeration of string types.
* Win32/sndfile.h MacOS9/sndfile.h
Update these as per the above file.
2004-06-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac src/common.h src/ogg.c src/sndfile.c src/sndfile.h.in
src/Makefile.am
Apply large patch from Conrad Parker implementing Ogg Vorbis, Ogg Speex and
Annodex support via liboggz and libfishsound. Thanks Conrad.
2004-06-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/avr.c src/ircam.c src/nist.c src/paf.c src/xi.c
Add cast to size_t for some parameters passed to psf_binheader_writef. This
is Debian bug number 253490. Thanks to Anand Kumria and Andreas Jochens.
* src/w64.c
Found and fixed a bug resulting from use of size_t when writing W64 'fmt '
chunk.
2004-06-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac
Bump version to 1.0.10 ready for release.
* Makefile.am
Remove redundant files (check_libsndfile.py libsndfile_version_convert.py)
from distribution tarball.
* tests/header_test.tpl
Fix uninitialised variable.
* src/GSM610/short_term.c
Fix compiler warning on MSVC++.
2004-05-23 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Improve record keeping of chunks seen and return an error if a file with
unusual chunks is opened in mode SFM_RDWR.
* src/mmreg.h
This file not needed so remove it.
2004-05-22 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/header_test.tpl
Add extra_header_test().
* src/common.h src/sndfile.c
Add SFE_RDWR_BAD_HEADER error number and string.
2004-05-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/utils.tpl tests/*.c tests/*.tpl
Add a line number argument to check_log_buffer_or_die() and update all
files that use that function.
* tests/header_test.tpl
Modify/update tests for files opened SFM_RDWR and SFC_UPDATE_HEADER_AUTO.
* src/aiff.c src/wav.c
Fix another bug in AIFF and WAV files opened in SFM_RDWR and using
SFC_UPDATE_HEADER_AUTO.
* src/test_file_io.c
Add a test for psf_ftruncate() function.
2004-05-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Fix another weird corner case bug found by Martin Rumori. Thanks.
* tests/header_test.(tpl|def)
Two new files to test for the absence of the above bug and include tests
moved from tests/misc_test.c.
* tests/Makefile.am
Hook new tests into build/test system.
* tests/misc_test.c
Remove update_header_test() which has been moved to the new files above.
2004-05-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c
Fixed a bug reported by Martin Rumori on the LAD list. If a file created
with a format of SF_FORMAT_FLOAT and then closed before any data is written
to it, the header can get screwed up (PEAK chunk gets overwritten).
* tests/write_read_test.tpl
Add a test (empty_file_test) for the above bug.
2004-05-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* Win32/Makefile.mingw.in
Added a Makefile for MinGW (needs to be processed by configure).
* src/mmsystem.h src/mmreg.h
Add files from the Wine project (under the LGPL) to allow build of
sndfile-play.exe under MinGW.
2004-05-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/GSM610/gsm610_priv.h
Replace ugly macros with inline functions.
* src/GSM610/*.c
Remove temporary variables used by macros and other minor fixes required by
above change.
2004-05-10 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/pipe_test.tpl tests/stdio_test.c Win32/Makefile.msvc
Make sure these programs compile (even though they do nothing) on Win32
and add them to the "make check" target.
* src/sfendian.h
Fix warning on Sparc CPU and code cleanup.
2004-05-09 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
Fix warning messages when compiling under MinGW.
2004-05-01 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac
Set HAVE_FLEXIBLE_ARRAY in src/config.h depending on whether the compiler
accepts the flexible array struct member as per 1999 ISO C standard.
* src/common.h src/ima_adpcm.c src/paf.c src/ms_adpcm.c
Added ugly #if HAVE_FLEXIBLE_ARRAY and provided a non-standards compliant
hack for non 1999 ISO C compliant compilers.
2004-04-26 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/strings.c
If adding an SF_STR_SOFTWARE string, only append libsndfile-X.Y.Z if the
string does not already have libsndfile in the string. Thanks to Conrad
Parker.
* tests/string_test.c
Add test to verify the above.
* examples/sndfile-convert.c
Add ability to transcode meta data as well (Conrad Parker).
2004-04-25 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/command.html
Fix minor error. Thanks to Simon Burton.
* doc/win32.html
Started adding instructions for compiling libsndfile under MinGW.
* configure.ac
Add --enable-bow-docs to enable black text on a white background HTML docs.
* doc/libsndfile.css.in
This is now a template file for configure which sets the foreground and
background colours.
2004-04-20 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac
Do some MinGW fixes.
* configure.ac doc/Makefile.am
Install HTML docs when doing make install.
2004-04-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-info.c
Print out the dB level with the signal max.
2004-04-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
Define S_ISSOCK in src/file_io.c if required.
2004-04-03 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac
Improve printout configuration summary (as suggested by Axel Rbel).
* doc/index.html
Add link to pre-release location.
* src/sndfile.h.in
Remove comma after last element of enum.
* src/float32.c src/double64.c
Fix read/write of float/double encoded raw files to/from pipes.
* tests/pipe_test.c tests/pipe_test.tpl tests/pipe_test.def
Turn pipe_test.c into an autogenerated file and add tests for reading/
writing floats and doubles.
* tests/Makefile.am
Hook tests/pipe_test.* into build system.
2004-04-02 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac acinclude.m4
Rename AC_C_STRUCT_HACK macro to AC_C99_FLEXIBLE_ARRAY.
2004-03-31 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/misc_test.c
Perform update_header_test in RDWR mode as well.
* src/aiff.c
Fix problems when updating header in RDWR mode.
2004-03-30 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c src/w64.c src/wav_w64.c
Integrate code supplied by David Viens for supporting microsoft's
WAVEFORMATEXTENSIBLE stuff. Thanks David for supplying this.
* configure.ac doc/*.html
Bump version to 1.0.9.
2004-03-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/command.c src/sndfile.c src/sndfile.h.in src/wav.c
Started work on supporting microsoft's WAVEFORMATEXTENSIBLE gunk.
2004-03-26 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/avr.c
New file to handle Audio Visual Resaerch files.
* src/sndfile.h.in src/common.h src/sndfile.c src/command.c
Hook AVR into everything else.
* tests/Makefile.am tests/write_read_test.tpl tests/misc_test.c
Add testing for AVR files.
2004-03-22 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
Fix psf_set_file() for win32. Thanks to Vincent Trussart (Plogue Art et
Technologie) for coming up with the solution.
2004-03-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/write_read_test.tpl
Fixed a bug that was causing valgrind to report a memory leak. The bug was
in the test code itself, not the library.
2004-03-20 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/generate.cs
An example showing how to use libsndfile from C#. Thanks to James Robson
for providing this.
2004-03-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.c
Fix problems with WAV files containing large chunks after the 'data'
chunk. Thanks to Koen Tanghe for providing a sample file.
2004-03-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac
Detect presense of ALSA (Advanced Linux Sound Architecture).
* examples/sndfile-play.c
Add ALSA output support.
* examples/Makefile.am
Add ALSA_LIBS to link line of sndfile-play.c.
2004-03-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* acinclude.m4
Add new macro (AC_C_STRUCT_HACK) to detect whether the C compiler allows
the use of the what is known as the struct hack introduced by the 1999 ISO
C Standard.
* configure.ac
The last release would not compile with gcc-2.95 due to the use of features
(ie struct hack) introduced by the 1999 ISO C Standard.
Add check to make sure compiler handles this and bomb out if it doesn't.
2004-03-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/write_read_test.tpl
Fix compiler warning on Win32.
* src/file_io.c
Fix use of an un-initialised variable in Win32 stuff.
* Win32/config.h examples/sndfile-play.c
Win32 fixes.
2004-03-10 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac
Fix bug which occurres when configuring for MinGW.
If compiler is gcc and cross compiling use -nostdinc.
2004-03-09 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h src/aiff.c src/wav.c src/float32.c src/double64.c
src/sndfile.c
Fix a bug with PEAK chunk handling for files with more than 16 channels.
Thanks to Remy Bruno for finding this.
2004-03-08 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.c
Fix a bug which was preventing WAV files being openned correctly if the
file had a very large header. Thanks to Eldad Zack for finding this.
2004-03-04 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac src/file_io.c
Fix cross-compiling from Linux to Win32 using the MinGW tools.
2004-03-01 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/create_symbols_file.sh
Christian Weisgerber pointed out that the shell script did not run on a
real Bourne shell although it did run under Bash in Bourne shell mode.
* src/create_symbols_file.py
Rewrite of above in Python. Also add support for writing Win32 .def files.
The Python script generates Symbols.linux, Symbols.darwin and
libsndfile.def (Win32 version). These files get shipped with the tarball
so there should not be necessary to run the Python script when building
the code from the tarball.
* configure.ac src/Makefile.am Win32/Makefile.am
Hook new Python script into the build system.
2004-02-25 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/configure.ac
Add --enable-gcc-werror option and move GCC specific stuff down.
2004-02-24 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* acinclude.m4 configure.ac
Fix clip mode detection (tested in one of HP's testdrive Itanium II boxes).
* src/file_io.c
Added check for sizeof (off_t) != sizeof (sf_count_t) to prevent recurrence
of missing large file support on Linux and Solaris.
2004-02-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-play.c
Fix a MacOSX specific bug which was caused by a space being inserted in
the middle of a file name.
* configure.ac src/Makefile.am examples/Makefile.am
Fix a couple of MacOSX build issues.
2004-02-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/command.html
Document SFC_SET_CLIPPING and SFC_GET_CLIPPING.
2004-02-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/*.html
Applied patch from Frank Neumann (author of lakai) which fixes many minor
typos in documentation. Thanks Frank.
2004-02-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* ChangeLog
Changed my email address throughout source and docs.
2004-02-08 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
Make sure config.h is included before stdio.h to make sure large file
support is enabled on Linux (and Solaris).
* tests/misc_test.c
Disable update_header test on Win32. This should work but doesn't and
I'm not sure why.
* Make.bat Win32/Makefile.msvc
Updates.
2004-01-07 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h
Changed logindex, headindex and headend files of SF_PRIVATE from unsigned
int to int to prevent weird arithmetic bugs.
* src/common.c src/aiff.c src/wav.c src/w64.c
Fixed compiler warnings resulting from above change.
2004-01-06 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.c
Fixed a bug in header reader for some files with data after the sample data.
2003-12-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/lossy_comp_test.c tests/Makefile.am
Add tests for AIFF/IMA files.
2003-12-26 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/macbinary3.c src/macos.c
Two new files required for handling SD2 files.
* src/common.h
Add prototypes for functions in above two files.
* src/Makefile.am
Hook new files into build system.
2003-12-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac
Add checks for mmap() and getpagesize() which might be used at some time
for faster file reads.
Add detection of MacOSX.
2003-12-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/FAQ.html
Minor mods to pkg-config section.
2003-12-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/create_symbols_file.sh
Andre Pang (also known as Ozone) pointed out that on MacOSX, all non
static symbols are exported causing troubles when trying to link
libsndfile with another library which has any of the same symbols.
He fixed this by supplying the MacOSX linker with a file containing
all the public symbols so that only they would be exported and then
supplied a patch for libsndfile.
This wasn't quite ideal, because I would have to maintain two (3 if
you include Win32) separate files containing the exported symbols.
A better solution was to create this script which can generate a
Symbols file for Linux, MacoSX and any other OS that supports
minimising the number of exported symbols.
* configure.ac src/Makefile.am
Hook the new script into the build process.
2003-12-10 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/index.html
Added comments about Steve Dekorte's SoundConverter scam.
2003-12-07 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
Axel Roebel pointed out that on Mac OSX a pipe is not considered a fifo
(S_ISFIFO (st.st_mode) is false) but a socket (S_ISSOCK (st.st_mode) is
true). The test has therefore been changed to is S_ISREG and anything
which which does not return true for S_ISREG is considered a pipe.
2003-11-25 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/misc_test.c
Fix update_header_test to pass SDS.
* src/sds.c
More minor fixes.
* tests/floating_point_test.c
Add test for SDS files.
* src/command.c
Add SDS to major_formats array.
2003-11-24 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/write_read_test.tpl tests/misc_test.c
Add tests for SDS files.
* src/sds.c
Fix a bug in header update code.
2003-11-23 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sds.c
Get file write working.
* src/paf.c
Fix a potential bug in paf24_seek().
2003-11-04 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/FAQ.html
Add Q/A about u-law encoded WAV files.
* Win32/*.h
Updated so it compiles on Win32.
2003-11-03 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-convert.c
Add -alaw and -ulaw command line arguments.
* configure.ac
Add library versioning comments.
Add arguments to AC_INIT.
2003-10-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
Ross Bencina has contributed code to replace all of the (mostly broken)
Win32 POSIX emulation calls with calls the native Win32 file I/O API.
This code still needs testing but is likely to be a huge improvemnt
of support for Win32. Thanks Ross.
2003-10-27 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/dwvw.c
Removed filedes field from the DWVW_PRIVATE struct.
* src/file_io.c
Change psf_fopen() so it returns psf->error instead of the file descriptor.
Add new functions psf_set_stdio() and psf_set_file().
* src/sndfile.c
Change these to work with changed psf_fopen() return value.
Remove all uses of psf->filedes from sndfile, making it easier to slot native
Win32 API file handling functions.
* src/test_file_io.c
Minor changes to make it compile with new file_io.c stuff.
2003-10-26 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/gsm610.h
Rename a variable from true to true_flag. As Ross Bencina points out,
true is defined in the C99 header <stdbool.h>.
* src/file_io.c
If fstat() fails, return SF_TRUE instead of -1 (Ross Bencina).
2003-10-09 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h
Increase the size of SF_BUFFER_LEN and SF_HEADER_LEN.
* src/sndfile.c
Fix sf_read/write_raw which were dividing by psf->bytwidth and
psf->blockwidth which can both be zero.
* examples/sndfile-info.c
Increase size of BUFFER_LEN.
2003-09-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac
Add checks for <sys/wait.h> and ssize_t.
Other Win32/MinGW checks.
* src/aiff.c src/au_g72x.c src/file_io.c src/gsm610.c src/interleave.c
src/paf.c src/sds.c src/svx.c src/voc.c src/w64.c src/wav.c src/xi.c
Fix compiler warnings.
2003-09-20 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/scale_clip_test.tpl
Add definition of M_PI if needed.
2003-09-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac
Detect if S_IRGRP is declared in <unistd.h>.
* src/file_io.c tests/*.tpl tests/*.c
More fixes for Win32/MSVC++ and MinGW. MinGW does have <unistd.h> but that
file doesn't declare S_IRGRP.
2003-10-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/config.h.in
Add comment stating that the sf_count_t typedef is determined when
libsndfile is being compiled.
* tests/utils.tpl
Modified so that utils.c gets one copy of the GPL and not two.
2003-09-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* Win32/unistd.h src/sf_unistd.h
Move first file to the second. This will help for Win32/MSVC++ and MinGW.
* Win32/Makefile.am src/Makefile.am
Changed in line with above.
* Win32/Makefile.msvc
Removed "/I Win32" which is no longer required.
* src/file_io.c src/test_file_io.c tests/*.tpl tests/*.c
If HAVE_UNISTD_H include <unistd.h> else include <sf_unistd.h>. This should
work for Win32, MinGW and other fakes Unix-like OSes.
* src/*.c
Removed #include <unistd.h> from files which didn't need it.
2003-09-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* libsndfile.spec.in
Apply fix from Andrew Schultz.
2003-09-07 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/vox_adpcm.c
Only set psf->sf.samplerate if the existing value is invalid.
2003-09-06 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-play.c
Started adding support for ALSA output.
2003-09-04 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h.in
Removed <stdlib.h> from sndfile.h.
* src/*.c examples/*.c tests/*.c tests/*.tpl
Added <stdlib.h> where needed.
2003-09-02 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h
Added ARRAY_LEN, SF_MAX and SF_MIN macros.
2003-08-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/index.html
Remove statements about alternative licensing arrangements.
2003-08-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* MacOS MacOS9 Makefile.am configure.ac
Change directory name from MacOS to MacOS9
* MacOS9/MacOS9-readme.txt
Change name to make it really obvious, add text to top of file to make it
still more obvious again.
2003-08-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/test_log_printf.c
Add tests for %u conversions.
* src/common.c
Fix psf_log_printf() %u conversions.
2003-08-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c
Fixed a bug where opening a file with a non-trival header in SFM_RDWR mode
would over-write part of the header. Thanks to Axel Roebel for pointing
this out. Axel also provided a patch to fix this but I came up with a
neater and more general solution.
Return error when openning an AIFF file with data after the SSND chunk
(Thanks Axel Roebel).
* tests/aiff_rw_test.c
Improvements to test program which will later allow it to be generalised to
test WAV, SVX and others as required.
2003-08-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/pipe_test.c
Add useek_pipe_rw_test() submitted by Russell Francis.
* src/sndfile.c
In sf_open_fd(), check if input file descriptor is a pipe.
* src/sndfile.[ch]
Fix typo in variable name do_not_close_descriptor.
2003-08-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/test_log_printf.c
Improve the tests for %d and %s conversions.
* src/common.c
Fixed a few problems in psf_log_printf() found using new tests.
2003-08-06 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac
Add -Wwrite-strings warning to CFLAGS if the compiler is GCC. Thanks to
Peter Miller (Aegis author) for suggesting this and supplying a patch.
* src/*.c examples/*.c tests/*.c
Fix all compiler warnings arising from the above.
2003-08-02
* tests/aiff_rw_test.c tests/Makefile.am
New test program to check for errors re-writing the headers of AIFC files
opened in mode SFM_RDWR.
2003-07-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-play.c
Applied a patch from Tero Pelander to allow this program to run on systems
using devfs which used /dev/sound/dsp instead of /dev/dsp.
2003-07-11 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/new_file_type.HOWTO
Updated document. Still incomplete.
2003-06-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Fix VALIDATE_SNDFILE_AND_ASSIGN_PSF which was returning an error rather
than saving it and returning zero.
2003-06-25 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
Two fixes for Mac OS9.
Fix all casts from sf_count_t to ssize_t (not size_t).
2003-06-22 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Fix for reading files with RIFF length of 8 and data length of 0.
2003-06-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/*.c tests/*.c tests/*.tpl
Added comments to mark code for removal when make Lite version of
libsndfile.
2003-06-09 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-convert.c
Add extra error checking for unrecognised arguments.
2003-06-08 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/ima_adpcm.c
Started adding code to write IMA ADPCM encoded AIFF files.
* src/test_log_printf.c src/Makefile.am
New file to test psf_log_printf() function and add hooks into build system.
* src/common.c
Move psf_log_printf() function to top of the file and only compile the rest
of the file if if PSF_LOG_PRINTF_ONLY is not defined.
2003-06-03 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* Win32/config.h Win32/sndfile.h
Updated with new config variables.
* Win32/unistd.h src/file_io.c
Added implementation of S_ISFIFO macro which Win32 seems to lack and is
used in src/file_io.c.
* tests/utils.tpl
Added #include <unitstd.h> to pull in Win32/unistd.h so it compiles for
Win32.
* src/Makefile.msvc
Added src\test_file_io.exe build target and run this as the very first
test.
* tests/win32_test.c
Add support for testing Cygwin32.
* configure.ac
Detect POSIX fsync() and fdatasync() functions.
* src/file_io.c
If compiling for Cygwin, call fsync() before calling fstat() to retrieve
file length.
* tests/pcm_test.tpl
Add a test for lrintf() function. This was required to detect a really
broken lrint() and lrintf() on Cygwin.
* tests/misc_test.c
Don't run permission test when compiling under Cygwin.
* src/float_cast.h
Fix fallback macro for lrint() and lrintf() to cast to long instead of int
to match official function prototypes.
2003-06-02 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-convert.c
Modifications to improve accuracy of conversions; use double data for
floating point and int for everything else.
* src/ima_apdcm.c
Completed work on decoding IMA ADPCM encoded AIFF files. Still need to
get encoding working.
2003-05-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c src/ima_adpcm.c
Start working on getting IMA ADPCM encoded AIFF files working.
2003-05-27 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac
Fixed the touch command for when the autogen program is not found (Matt
Flax).
* src/ulaw.c src/alaw.c
Made these pipe-able.
2003-05-24 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/paf.c src/ircam.c
Fixed writing to pipe.
* src/wav.c src/aiff.c src/nist.c src/mat*.c src/svx.c src/w64.c
Return SFE_NO_PIPE_WRITE if an attempt is made to write to a pipe.
2003-05-23 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-info.c
Modified to detect unknown file lengths.
* src/mat4.c
Fix reading from a pipe.
2003-05-22 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/pipe_test.c
Add more file types to tests.
* src/mat4.c
Removed explicit setting of psf->sf.seekable to SF_TRUE.
* tests/utils.tpl
Add macro for generating and check data in the stdio and pipe tests.
* tests/stdout_test.c tests/stdin_test.c
Use the above macro to generate known data on output and check data on
input.
* src/voc.c src/htk.c common.h sndfile.c
Disallow reading/writing VOC and HTK files from/to pipes be returning new
error values.
* src/w64.c
Fixes to allow reading from a pipe.
2003-05-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac src/sndfile.h.in
When the configure script determines the sizeof (sf_count_t), also set the
value of SF_COUNT_MAX in sndfile.h.
* configure.ac
Remove -pedantic flag from default GCC compiler flags.
* tests/pipe_test.c
Add a pipe_read_test() before doing pipe_write_test().
* tests/scale_clip_test.c
Add test to make sure non-normalized values also clip in the right way.
2003-05-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac
Add test to detect processor clipping capabilities.
* tests/stdin_test.c tests/stdout_test.c
Fix a pair of compiler warnings.
* src/common.h
Add new pipeoffset field to SF_PRIVATE. This will contain the current file
offset when operating on a pipe.
* src/common.c
Removed direct calls to psf_fread()/psf_fseek()/psf_fgets() etc from
psf_binheader_readf and redirect them to new buffered versions
header_read(), header_seek() and header_gets().
Add "G" format specifier to emulate fgets() functionality with buffering.
This will allow reading some file types from pipes.
* src/file_io.c
When the file descriptor is a pipe, manintain psf->pipeoffset.
* src/pvf.c
Change use of psf_fgets() to psf_binheader_readf() as required but changes to header re
* src/au.c
Fix reading from a pipe.
2003-05-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/pcm.c
Add clipping versions of the f2XXX_array() functions to allow option of
clipping data that would otherwise overflow.
* tests/scale_clip_test.tpl tests/scale_clip_test.def
New files test that clipping option does actually work.
2003-05-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/index.html
Fixed a typo ("OS(" instead of "OS9").
2003-05-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/open_fail_test.c
Include <string.h> to prevent warning message of missing declaration of
memset().
2003-05-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h
Add new "add_clipping" field to SF_PRIVATE.
* src/sndfile.h.in src/sndfile.c
Add command SFC_SET_CLIPPING which sets/resets add_clipping field.
2003-05-11 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/api.html
Add docs for sf_set_string() and sf_get_string().
* src/common.h src/sndfile.c
Add new SFE_STR_BAD_STRING error.
* tests/stdin_test.c tests/stdout_test.c
Removed all non-error print statements.
* tests/stdio_test.c tests/pipe_test.c tests/Makefile.am
Add print statements removed from two files above.
2003-05-10 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* libsndfile.spec.in
Fixed a coulpe of minor errors discovered by someone calling themselves
Agent Smith.
* src/common.c src/common.h src/file_io.h
Added is_pipe field to SF_PRIVATE and declaration of psf_is_pipe()
function. (Axel Roebel)
* src/sndfile.c
Fixed determination of whether the file is a pipe. (Axel Roebel)
* src/paf.c
Force paf24 to start with undefined mode. (Axel Roebel)
* tests/pipe_test.c
Mods to make this test work and actually do the test on RAW files. (Axel
Roebel).
2003-05-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Fixed a potential bug where psf->sf.seekable was being set to FALSE when
operating on stdin or stdout but then the default initialiser was reseting
it to TRUE. Thanks to Axel Roebel.
* src/aiff.c
Fixed a bug in the header parser where it was not handling an odd length
COMM chunk correctly. Thanks to Axel Roebel.
* src/test_file_io.c
Add more tests.
* tests/win32_test.c
New file for showing the bugs in the Win32 implementation of the POSIX API.
It also runs on Linux for sanity checking.
* tests/Makefile.am Win32/Makefile.msvc
Hook the new test program into the build system.
2003-05-04 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/test_file_io.c
New test program to test operation of functions defined in file_io.c. This
should make supporting win32 significantly easier.
* src/Makefile.am
Hook new test program into the build system.
* src/file_io.c
Add compile/run time check that sizeof statbuf.st_size and sf_count_t are
the same.
* src/common.h src/sndfile.c
Added new error code and error message for new check.
* tests/benchmark.tpl
Fix to use frames instead of samples in SF_INFO.
2003-05-03 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
More stuffing about working around PLAIN OLD-FASHIONED **BUGS** in Win32.
* examples/sndfile-info.c
Applied patch from Conrad Parker to add "--help" and "-h" options as
well as an improved usage message.
2003-05-02 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/au.c
Added embedded file support.
* tests/multi_file_test.c
Added tests for embedded AU files.
Added verbose testing mode.
* src/common.h src/sndfile.c
Added an embedded AU specific error code and message.
* src/wav.c
Added patch from Conrad Parker which filled in a little more information
about ACIDized WAV files.
2003-04-30 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
Fixed Win32 version of psf_fseek() which was calling psf_get_filelen()
which was in turn calling psf_fseek() which in the end blew the stack.
Now of course this would have been easy to find on Linux, but this blow
up was happening in kernel32.dll and the fscking MSVC++ debugger couldn't
figure out what call caused this (it couldn't even tell me the stack had
overflowed) and was absolutley useless for this debugging exercise.
On top of that, the reason I got into this mess was that windoze doesn't
have a working fstat() function which can return file lengths > 2 Gig. It
HAS a fscking _fstati64() but the file length value is only updated AFTER
the bloody file is closed. That makes it completely useless.
How the hell do people stand working on this crap excuse of an OS?
2003-04-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* Win32/unistd.h src/file_io.c
Moved definitions of S_IGRP etc from file_io.c to unistd.h so that these
can be used in the test programs.
* Win32/libsndfile.def
Added sf_open_fd.
* Win32/sndfile.h
Updated to match src/sndfile.h.in.
* Win32/Makefile.msvc
Added dither.c and htk.c to libsndfile.dll target.
2003-04-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
First attempt at getting the Win32 versions of the these functions working.
They still need to be tested.
2003-04-27 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/strings.c
Found and fixed a bug which was causing psf_store_string() to fail on
Motorola 68k processors. Many thanks fo Joshua Haberman (Debian maintainer
of libsndfile) for compiling and running debug code to help me debug the
problem.
2003-04-26 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c src/file_io.c src/wav.c src/aiff.c
Much hacking to get reading and writing of embedded files working (ie sound
files at a non-zero files offset).
* doc/embedded_files.html
First pass atempt at documenting reading/writing embedded files.
2003-04-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/FAQ.html
Updated answer to "Why doesn't libsndfile do interleaving/de-interleaving?"
2003-04-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c src/aiff.c
Fix retrieving and storing of string data from files. Need to be careful
about using psf->buffer for strings.
2003-04-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
Fix psf_fseek() for seeks withing embedded files.
2003-04-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h.in
Changed the definition of SNDFILE slightly to produce warnings when it isn't
used correctly. This should have zero affect in code which uses the SNDFILE
type correctly.
* src/sndfile.c
Fixed a few compiler warnings cause by the changes to the SNDFILE type.
2003-04-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/FAQ.html
Added question and answer to the question "How about adding the ability
to write/read sound files to/from memory buffers?".
2003-04-08 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/write_read_test.tpl
Removed un-needed enums declaring TRUE and FALSE and replaced usage of
these with SF_TRUE and SF_FALSE.
* tests/multi_file_test.c
New test program to test sf_open_fd() on files containing data other than
a single sound file.
2003-04-06 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
When creating files, set the readable by others flag. This still allows
further restrictions to be enforced by use of the user's umask. Fix
suggested by Eric Lyon.
2003-04-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h.in src/sndfile.c
Changed sf_open_fd(). Dropped offset parameter and added a close_desc
parameter. If close desc is TRUE, the file descritpor passed into the
library will be closed when sf_close() is called.
* tests/utils.tpl
Modified call to sf_open_fd() to set close_desc parameter to SF_TRUE.
2003-04-04 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/write_read_test.tpl
Add a string (using sf_set_string() function) before and after data section
of all files. This will make sure that if string data can be added, it
doesn't overwrite real audio data.
2003-04-02 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Started work on supporting a non-zero offset parameter for sf_open_fd ().
* src/<file header parsers>.c
Removed many uses of psf_fseek (SEEK_END) which to allow for future use of
sf_open_fd() with non-zero offset.
Associated refactoring.
* src/aiff.c
Implemented functionality required to get sf_get_string() and
sf_set_string() working for AIFF files.
2003-04-01 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/utils.tpl
Modified test_open_file_or_die() to alternately use sf_open() and
sf_open_fd().
* src/svx.c
Fixed a bug which occurred when openning an existing file for read/write
using sf_open_fd(). In this case, the existing NAME chunk needs to be
read into psf->filename.
Fixed printing of sf_count_t types to logbuffer.
2003-03-31 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h.in
Added prototype for new function sf_open_fd().
* src/sndfile.c
Moved most of the code in sf_open() to a new function psf_open_file().
Created new function sf_open_fd() which also uses psf_open_file() but
does not currently support the offset parameter.
* doc/api.html
Document sf_open_fd().
2003-03-09 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Fixed a memory leak reported by Evgeny Karpov. Memory leak only occurred
when an attempt was made to read and the open() call fails.
2003-03-08 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/open_fail_test.c
New test program to check for memory leaks when sf_open fails on a valid
file. Currently this must be run manually under valgrid.
* tests/Makefile.am
Hook new test program into build.
2003-03-03 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* Octave/sndfile_save.m Octave/sndfile_play.m
Added a -mat-binary option to the octave save command to force the output
to binary mode even if the user has set ascii data as the default. Found
by Christopher Moore.
2003-02-27 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/dither.html
New file which will document the interface which allows the addition of
audio dither when sample word sizes are being reduced.
* src/dither.c
More work.
2003-02-26 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/misc_test.c
In update_header_test(), make HTK files a special case.
* doc/index.html
Added HTK to the feature matrix.
2003-02-25 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/htk.c
New file for reading/writing HMM Tool Kit files.
* src/sndfile.h.in src/sndfile.c src/command.c src/Makefile.am
Hook in htk.c
* tests/write_read_test.tpl tests/misc_test.c tests/Makefile.am
Add tests for HTK files.
2003-02-22 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Fixed a bug where the LIST chunk length was being written incorrectly.
* tests/string_test.c
Added call to check_log_buffer().
Minor cleanups.
2003-02-10 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav_w64.h
Applied patch from Antoine Mathys to add extra WAV format definitions and
a G72x_ADPCM_WAV_FMT struct definition.
* src/wav_w64.c
Applied patch from Antoine Mathys which converts wav_w64_format_str() from
one huge inefficient switch statement to a binary search.
* tests/string_test.c
Dump log buffer if tests fail.
2003-02-07 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/string_test.c
David Viens supplied some modifications to this file which showed up a bug
when using sf_set_string() and the sf_writef_float() functions.
* src/sndfile.c
Fixed the above bug.
2003-02-06 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/FAQ.html
Added Q and A on how to detect libsndfile in configure.in (at the suggestion
of Davy Durham).
2003-02-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h.in
Add enums and typedefs for dither.
Deprecate SFC_SET_ADD_DITHER_ON_WRITE and SFC_SET_ADD_DITHER_ON_READ, to be
replaced with SFC_SET_DITHER_ON_WRITE and SFC_SET_DITHER_ON_READ which will
allow different dither algorithms to be enabled.
Added SFC_GET_DITHER_INFO_COUNT and SFC_GET_DITHER_INFO.
* src/sndfile.h.in src/Version_script.in Win32/libsndfile.def.
Added public sf_dither_*() functions.
* src/sndfile.c
Implement commands above.
* src/dither.c
More work. Framework and external hooks into dither algorithms complete.
2003-02-03 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/version-1.html libsndfile_version_convert.py
Remove redundant files.
* doc/index.html doc/api.html
Remove links to version-1.html.
* src/dither.c
New file to allow the addition of audio dither on input and output.
* src/common.h
Add prototype for dither_init() function.
* Makefile.am doc/Makefile.am
Changes for added and removed files.
2003-02-02 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* Win32/Makefile.msvc
Changes to force example binaries to be placed in the top level directory
instead of the examples/ directory.
Add src/strings.c and src/xi.c to the build.
Add string_test to build and to tests on WAV files.
* doc/index.html
Added XI to support matrix.
2003-01-27 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h.in
Added prototypes for sf_get_string() and sf_set_string() and SF_STR_*
enum values.
* src/sndfile.c
Added public interface to sf_get_string() and sf_set_string().
* src/wav.c
Added code for setting and getting strings in WAV files.
* tests/string_test.c
New test program for sf_get_string() and sf_set_string() functionality.
* tests/Makefile.am
Hook new test program into build and test framework.
2003-01-26 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h
Added fields to SF_PRIVATE for string data needed to implement
sf_get_string() and sf_set_string().
* src/strings.c
New file for storing and retrieving strings to/from files.
* src/Makefile.am
Added strings.c to build.
2003-01-25 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/xi.c
Read seems to be working so looking at write.
* src/sndfile.h.in
Added SF_FORMAT_XI, SF_FORMAT_DPCM_8 and SF_FORMAT_DPCM_16 enum values.
* tests/floating_point_test.c tests/lossy_comp_test.c tests/Makefile.am
Added test for 8 and 16 bit XI format files.
2003-01-24 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/index.html
Added a non-lawyer readable summary of the licensing provisions as
suggested by Steve Dekorte.
2003-01-23 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Fixed a compiler warning found by Alexander Lerch.
2003-01-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac
Fixed the multiple linking of libm.
2003-01-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* Win32/Makefile.mcvs
Added comments on the correct way to set up the MSVCDir environment
variable.
* doc/win32.html
Add on how to set up the MSVCDir environment variable.
2003-01-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-play.c examples/sndfile-info.c
When run on Win32 without any command line parameters print a message and
then sleep for 5 seconds. This means the when somebody double clicks on
these programs in explorer the user will actually see the message.
2003-01-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/misc_test.c
Bypass permission test if running as root because root is allowed to open
a readonly file for write.
2003-01-08 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* Win32/Makefile.msvc
Added pvf.c and xi.c source files to project.
* src/sndfile.h
Updated for PVF files.
2003-01-07 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Modified validate_sfinfo() to force samplerate, channels and sections
to be >= 1.
In format_from_extension() replaced calls to does_extension_match()
with strcmp().
* src/xi.c
More work.
2003-01-06 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/Makefile.am
Added octave.html which had been left out. Found by Jan Weil.
2003-01-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/pvf.c src/common.h src/sndfile.c
Fixed error handling for PVF files.
* src/xi.c
New file for handling Fasttracker 2 Extended Instrument files. Not working
yet and included when configured with --enable-experimental.
* src/sndfile.c src/common.h
Hooked in new file xi.c.
2002-12-30 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/rx2.c
Added a patch from Marek Peteraj which sheds a little more light on the
slices within an RX2 file. Still need to find out data encoding.
2002-12-20 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Started work on decoding 'acid' and 'strc' chunks.
2002-12-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/peak_check_test.c
Minor cleanup.
2002-12-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/write_read_test.tpl
Added check to make sure no error was generated when an attempt was made to
read past the end of the file.
2002-12-11 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/lists.html
Added "mailto" links for all three lists.
* src/pvf.c
New file for Portable Voice Format files.
* src/sndfile.h.in src/sndfile.c src/common.h src/command.c src/Makefile.am
Added hooks for SF_FORMAT_PVF format files.
* tests/write_read_test.tpl tests/std*.c
Add tests for SF_FORMAT_PVF.
* doc/index.html
Add PVF to the compatibility matrix.
* src/pcm.c src/alaw.c src/ulaw.c src/float32.c src/double64.c
Previously, attempts to read beyond the end of a file would set psf->error
to SFE_SHORT_ERROR. This behaviour diverged from the behaviour of the POSIX
read() call but has now been fixed.
Attempts to read beyond the end of the file will return a short read count
but will not longer set any error.
2002-12-09 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Add more sanity checking when opening a RAW file for read. When format is
not RAW, zero out all members of the SF_INFO struct.
* tests/raw_test.c
Add bad_raw_test() to check for above problem.
* tests/stdin_test.c examples/sndfile-info.c
Set the format field of the SF_INFO struct to zero before calling
sf_open().
* doc/api.html
Add information about the need to set the format field of the SF_INFO struct
to zero when opening non-RAW files for read.
* configure.ac
Removed use of conversion script on Solaris. Not all Solaris versions
support it.
* doc/lists.html
New file containg details of the mailing lists.
* doc/index.html
Add a link to the above new file.
2002-12-04 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/dft_cmp.c
Fixed a SIGFPE on Alpha caused by a log10 (0.0). Thanks to Joshua Haberman
for providing the gdb traceback.
2002-11-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Added more capabilities to 'smpl' chunk parser.
* src/sndfile.c
Fixed some (not all) possible problems found with Flawfinder.
2002-11-24 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Fixed a bug in sf_seek(). This bug could only occur when an attempt was
made to read beyond the end and then sf_seek() was called with a whence
parameter of SEEK_CUR.
* src/file_io.c
Win32's _fstati64() does not work, it returns BS. Re-implemented
psf_get_filelen() in terms of psf_fseek().
* tests/write_read_test.tpl
Add a test to detect above bug.
* src/float_cast.h
Modification to prevent compiler warnings on Mac OS X.
* src/file_io.c
Fixes for windows (what a f**ked OS).
2002-11-08 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac
Disable use of native lrint()/lrintf() on Mac OSX. These functions exist on
Mac OSX 10.2 but not on 10.1. Forcing the use of the versions in
src/float_cast.h means that a library compiled on 10.2 will still work on
10.1.
2002-11-06 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.in configure.ac
Renamed configure.in to configure.ac as expected by later versions of
autoconf.
Slight hacking of configure.ac to work with version 2.54 of autoconf.
Changed to using -dumpversion instead of --version for determining GCC
version numer as suggested by Anand Kumria.
* src/G72x/Makefile.am
Slight hacking required for operation with automake 1.6.3.
2002-11-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.c
In psf_binheader_readf() changed type parameter type "b" type from size_t
to int to prevent errors on IA64 CPU where sizeof (size_t) != sizeof (int).
Thanks to Enrique Robledo Arnuncio for debugging this.
2002-11-04 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* test/command_test.tpl
Changed test value so test would pass on Solaris.
* src/Version_script.in
Modified version numbering so that later versions of 1.0.X can replace
earlier versions without recompilation.
* src/vox_adpcm.c
Fixed bug causing short reads.
2002-11-03 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* test/floating_point_test.c
Code cleanup using functions from util.c.
Add test for IEEE replacement floats and doubles.
2002-11-01 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Fixed a possible divide by zero error when read the 'smpl' chunk. Thanks to
Serg Repalov for the example file.
* tests/pcm_test.tpl
Used sf_command (SFC_TEST_IEEE_FLOAT_REPLACE) to test IEEE replacement code.
Clean up pcm_double_test().
* src/float32.c src/double64.c
Force use of IEEE replacement code using psf->ieee_replace is TRUE,
Print message to log_buffer as well.
Rename all broken_read_* and broken_write* functions to replace_read_* and
replace_write_*.
* tests/util.tpl
Added string_in_log_buffer().
* tests/pcm_test.tpl
Use string_in_log_buffer() to ensure that IEEE replacement code has been
used.
* configure.in
Removed --enable-force-broken-float option. IEEE replacement code is now
always tested.
2002-10-31 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/double64.c
Implement code for read/writing IEEE doubles on platforms where the native
double format is not IEEE.
* src/float32.c src/common.h
Remove float32_read() and float32_write(). Replace with float32_le_read(),
float32_be_read(), float32_le_write() and float32_be_write() to match stuff
in src/double64.c.
* src/common.c
Fix all usage of float32_write().
* src/sndfile.h.in
Added SFC_TEST_IEEE_FLOAT_REPLACE command (testing only).
* src/common.h
Added SF_PRIVATE field ieee_replace.
* src/sndfile.c
In sf_command() set/reset psf->ieee_replace.
2002-10-26 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/pcm_test.tpl
Fixed a problem when testing with --enable-force-broken-float. The test was
generating a value of negative zero and the broken float code is not able
to write negative zero. Removing the negative zero fixed the test.
2002-10-25 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
Added fix for Cygwin (suggested by Maros Michalik).
2002-10-23 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
Improved error detection and handling.
* src/file_io.c src/common.h
Removed functions psf_ferror() and psf_clearerr() which were redundant
after above improvements.
* src/aiff.c src/svx.c src/w64.c src/wav.c
Removed all use of psf_ferror() and psf_clearerr().
* src/sndfile.c
Removed #include of <stdio.h>, <unistd.h>, <fcntl.h> and <math.h> which
are no longer needed.
* tests/misc_test.c
Added test to make sure the correct error message is returned with an
existing read-only file is openned for write.
2002-10-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/index.html doc/api.html
Updated for OKI Dialogic ADPCM files.
* src/command.c
Added VOX ADPCM to sub_fomats.
2002-10-20 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/vox_adpcm.c src/Makefile.am
New file for handling OKI Dialogic ADPCM files.
* src/sndfile.h
Add new subtype SF_FORMAT_VOX_ADPCM.
* src/sndfile.c
Renamed function is_au_snd_file () to format_from_extenstion () and expanded
its functionality to detect headerless VOX files.
* src/raw.c
Added hooks for SF_FORMAT_VOX_ADPCM.
* examples/sndfile-info.c
Print out file duration (suggested by Conrad Parker).
* libsndfile.spec.in
Force installation of sndfile.pc file (found by John Thompson).
* tests/Makefile.am tests/lossy_comp_test.c tests/floating_point_test.c
Add tests for SF_FORMAT_VOX_ADPCM.
2002-10-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/misc_test.c
Add test which attempts to write to /dev/full (on Linux anyway) to check
for correct handling of writing to a full filesystem.
* src/sndfile.c
Return correct error message if the header cannot be written because the
filesystem is full.
* tests/util.tpl
Corrected printing of file mode in error reporting.
* src/mat5.c
Fixed a bug where a MAT5 file written by libsndfile could not be opened by
Octave 2.1.36.
2002-10-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h src/file_io.c
All low level file I/O have been modified to be better able to report
system errors resulting from calling system level open/read/write etc.
* src/*.c
Updated for compatibility with above changes.
* examples/cooledit-fixer.c
New example program which fixes badly broken file created by Syntrillium's
Cooledit which are marked as containing PCM samples but actually contain
floating point data.
* examples/Makefile.am
Hooked cooledit-fixer into the build system.
2002-10-10 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/command.html
Document SFC_GET_FORMAT_INFO.
2002-10-09 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/wav32_aiff24.c examples/sndfile2oct.c examples/sfhexdump.c
examples/sfdump.c
Removed these files because they weren't interesting.
* examples/sfconvert.c examples/sndfile-convert.c
Renamed the first to the latter.
* examples/Makefile.am
Added sndfile-convert to the bin_PROGRAMS, so it is installed when the lib
is installed.
Removed old programs wav32_aiff24 and sndfile2oct.
* man/sndfile-convert.1
New man page.
* examples/sndfile-convert.c
Added some gloss now that sndfile-convert.c is an installed program.
* src/sndfile.h.in src/sndfile.c src/common.h src/command.h
Added command SFC_GET_FORMAT_INFO.
* tests/command_test.c
Added tests form SFC_GET_FORMAT_INFO.
2002-10-08 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
In sf_format_check() return error if samplerate < 0.
2002-10-07 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c
Fixed bug in handling of COMM chunks with a 4 byte encoding byte but no
encoding string.
2002-10-06 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Fixed repeated word in an error message.
2002-10-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/index.html
Improved advertising in Features section.
2002-10-04 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Added decoding of 'labl' chunks within 'LIST' chunks.
* src/common.h
Added (experimental only) SF_FORMAT_OGG and SF_FORMAT_VORBIS and definition
of ogg_open(). This is nowhere near working yet.
* src/sndfile.c
Added detection of 'OggS' file marker and added call to ogg_open() to
switch statement.
* src/ogg.c
New file. Very early start of Ogg Vorbis support.
* src/wav.c
Added handling of brain-damaged and broken Cooledit "32 bit 24.0 float
type 1" files. These files are marked as being 24 bit WAVE_FORMAT_PCM with
a block alignment of 4 times the numbers of channels but are in fact 32 bit
floating point.
2002-10-02 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.in
Modified option --enable-experimental to set ENABLE_EXPERIMENTAL_CODE in
config.h to either 0 or 1.
* src/sndfile.c
Modify sf_command (SFC_GET_LIB_VERSION) to append "-exp" to the version
string if experimental code has been enabled.
2002-10-01 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/Makefile.am
Added -lm to libsndfile_la_LIBADD. This means that -lm is not longer needed
in the link line when linking something to libsndfile.
* tests/Makefile.am examples/Makefile.am
Removed -lm from all link lines.
* sndfile.pc.in
Removed -lm from Libs line.
2002-09-24 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
Removed all perror() calls.
* src/nist.c
Removed calls to exit() function.
Added check to detect NIST files dammaged from Unix CR -> Win32 CRLF
conversion process.
2002-09-24 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h.in src/sndfile.c
New function sf_strerror() which will eventually replace functions
sf_perror() and sf_error_str().
Function sf_error_number() has also been changed, but this was documented
as being for testing only.
* doc/api.html
Documented above changes.
* tests/*.c examples/*.c
Changed to new error functions.
2002-09-22 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.in
Detect GCC version, and print a warning message about writeable strings
it GCC major version number is less than 3.
2002-09-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h.in doc/api.html
Documentation fixes.
2002-09-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/Version_script.in src/Makefile.am configure.in
Use the version script to prevent the exporting of all non public symbols.
This currently only works with Linux. Will test on Solaris as well.
* src/float_cast.h
Added #ifndef to prevent the #warning directives killing the SGI MIPSpro
compiler.
* src/au_g72x.c src/double64.c src/float32.c src/gsm610.c src/ima_adpcm.c
src/ms_adpcm.c
Fix benign compiler warnings arising from previously added compiler
flags.
2002-09-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Fixed a bug in sf_error_str() where errnum was used as the index instead
of k. Found by Tim Hockin.
* examples/sndfile-play.c
Fixed a compiler warning resulting from a variable shadowing a previously
defined local.
2002-09-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h.in src/sndfile.c
Added command SFC_SET_RAW_START_OFFSET.
* doc/command.html
Document SFC_SET_RAW_START_OFFSET.
* tests/raw_test.c tests/Makefile.am
Add new file for for testing SF_FORMAT_RAW specific functionality.
* tests/dwvw_test.c
Updates.
2002-09-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Modified reading of 'smpl' chunk to take account of the sampler data field.
* tests/utils.tpl tests/utils.h
Added function print_test_name().
* tests/misc_test.c tests/write_read_test.tpl tests/lossy_comp_test.c
tests/pcm_test.tpl tests/command_test.tpl tests/floating_point_test.c
Convert to use function print_test_name().
2002-09-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/octave.html
Added a link to some other Octave scripts for reading and writing sound
files.
* src/paf.c
Change type of dummy data field to int. This should fix a benign compiler
warning on some CPUs.
Removed superfluous casts resulting from the above change.
* src/rx2.c
More hacking.
2002-09-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/mat5.c src/common.c
Changed usage of snprintf() to LSF_SNPRINTF().
* Win32/Makefile.msvc
Updated to include new files and add new tests.
* Win32/config.h Win32/sndfile.h
Updated.
* doc/api.html
Added note about the possibility of "missing" features actually being
implemented as an sf_command().
2002-09-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/misc_test.c
Added previously missing update_header_test and zero_data_tests for PAF,
MAT4 and MAT5 formats.
* src/paf.c src/mat4.c src/mat5.c
Fixed bugs uncovered by new tests above.
* src/mat5.c
Generalised parsing of name fields of MAT5 files.
* src/mat5.c src/sndfile.c
Added support for unsigned 8 bit PCM MAT5 files.
* tests/write_read_test.tpl
Added test for unsigned 8 bit PCM MAT5 files.
* doc/index.html
Added unsigned 8 bit PCM MAT5 to capabilities matrix.
2002-09-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* test/update_header_test.c tests/misc_test.c
Renamed update_header_test.c to misc_test.c.
Added zero_data_test() to check for case where file is opened for write and
closed immediately. The resulting file can be left in a state where
libsndfile cannot open it. Problem reported by Werner Schweer, the author
of Muse.
* src/aiff.c
Removed superfluous cast.
* src/wav.c src/svx.c
Fixed case of file generated with no data.
Removed superfluous cast.
* src/sndfile.c
Fixed error on IA64 platform caused by incorrect termination of
SndfileErrors struct array. This problem was found in the Debian buildd
logs (http://buildd.debian.org/).
* configure.in
Added Octave directory.
* Octave/Makefile.ma
New Makfile.am for Octave directory.
* Octave/sndfile_load.m Octave/sndfile_save.m Octave/sndfile_play.m
New files for working with Octave.
* doc/octave.html
Document explaining the use of the above three Octave scripts.
2002-09-10 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Fixed bug in RDWR mode.
2002-09-09 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.c
Fixed psf_get_date_str() for systems which don't have gmtime_r() or
gmtime().
* src/file_io.c
Added #include <io.h> for Win32. Reported by Koen Tanghe.
2002-09-08 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.c
Added 'S' format specifier for psf_binheader_writef() which writes a C
string, including single null terminator to the header.
Added 'j' format specifier to allow jumping forwards or backwards in the
header.
Added function psf_get_date_str().
* src/mat5.c
Complete read and write support.
* doc/index.html
Added entries for MAT4 and MAT5 in capabilities matrix.
2002-09-06 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/mat4.c
Completed read and write support.
* src/common.h src/sndfile.c
Added MAT4 and MAT5 specific error messages.
* tests/write_read_test.tpl tests/Makefile.am
Added tests for MAT4 and MAT5 files.
* tests/stdio_test.c tests/stdout_test.c tests/stdin_test.c
Added tests for MAT4 and MAT5 files.
2002-09-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/command.c
Added elements for SF_FORMAT_MAT4 and SF_FORMAT_MAT5 to major_formats
array.
* examples/sfconvert.c
Added mat4 and mat5 output targets.
2002-09-04 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Added check to prevent errors openning read only formats for read/write.
* src/interleave.c
New file for interleaving non-interleaved data. Non-interleaved data is
only supported on read.
* src/Makefile.am
Added src/interleave.c to build.
2002-09-03 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/double64.c src/common.h
Added double64_be_read(), double64_le_read(), double64_be_write() and
double64_le_write() which replace double64_read() and double64_write().
* src/common.c
Cleanup of psf_binheader_readf() and add ability to read big and little
endian doubles (required by mat4.c and mat5.c).
Add ability for psf_binheader_writef() to write doubles to sound file
headers.
2002-09-01 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/mat5.c
New file for reading Matlab (tm) version 5 data files. This is also the
native binary file format for version 2.1.X of GNU Octave which will be
used for testing.
Not complete yet.
* src/mat4.c
New file for reading Matlab (tm) version 4.2 data files. This is also the
native binary file format for version 2.0.X of GNU Octave which will be
used for testing.
Not complete yet.
* src/sndfile.h.in src/sndfile.c src/common.h src/command.c src/Makefile.am
Mods to add Matlab files.
* src/common.[ch]
Added readf_endian field to SF_PRIVATE struct allowing endianness to
remembered across calls to sf_binheader_readf().
Fixed bug in width_specifier behaviour for printing hex values.
2002-08-31 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
Check return value of close() call in psf_fclose().
2002-08-24 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/ms_adpcm.c
Commented out some code where 0x10000 was being subtracted from a short
and the result assigned to a short again. Andrew Zaja found this.
2002-08-23 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/command.html
Fixed typo found by Tommi Ilmonen.
* src/ima_adpcm.c
Changed type of diff from short to int to prevent errors which can occur
during very rare circumstances. Thanks to FUWAFUWA.
2002-08-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/floating_point_test.c
Disable testing on machines without lrintf().
* Win32/Makefile.msvc
Added dwd.c and wve.c to build.
* configure.in
Bumped version to 1.0.0.
2002-08-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
Add a #include for Mac OS 9. Thanks to Stephane Letz.
* src/wav.c
Changed an snprintf to LSF_SNPRINTF.
* doc/Makefile.am
Added version-1.html.
2002-08-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.in
Bumped version to 1.0.rc6.
* src/*.c
Modified scaling of normalised floats and doubles to integers. Until now
this has been done by multiplying by 0x8000 for short output, 0x80000000
for 32 bit ints and so on. Unfortunately this can cause an overflow and
wrap around in the target value. All thes values have therefore been
reduced to 0x7FFF, 0x7FFFFFFF and so on. The conversion from ints to
normalised floats and doubles remains unchanged. This does mean that for
repeated conversions normalised float -> pcm16 -> normalised float would
result in a decrease in amplitude of 0x7FFF/0x8000 on every round trip.
This is undesirable but less undesireable than the wrap around I am trying
to avoid.
* tests/floating_point_test.c
Removed file hash checking because new float scaling procedure introduced
above prevented the ability to crate a has on both x86 and PowerPC systems.
2002-08-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/txw.c
Completed reading of TXW files. Seek doesn't work yet.
* src/file_io.c
Added a MacOS 9 replacement for ftruncate().
* MacOS/sndfile.h
Added MacOS 9 header file. This should be copied into src/ to compile
libsndfile for MacOS9.
2002-08-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Fixed commands SF_SET_NORM_DOUBLE and SFC_SET_NORM_FLOAT to return their
values after being set. Reported by Jussi Laako.
* configure.in
If autogen is not found, touch all .c and .h files in tests/.
* src/common.c
Added format width specifier to psf_log_printf() for %u, %d, %D and %X.
* src/dwd.c
Completed implementation of read only access to these files.
* src/common.h src/*.c src/pcm.c
Removed redundant field chars from SF_PRIVATE struct and modified
pcm_init() to do without it.
2002-08-11 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wve.c
New file implementing read of Psion Alaw files. This will be a read only
format. Implementation complete.
* src/dwd/c
Started implementation of DiamondWare Digitized files. Also read only, not
complete.
* src/wav.c
Add parsing of 'smpl' chunk.
* src/paf.c
Fixed reading on un-normalized doubles and floats from 24 bit PAF files.
This brings it into line with the reading of 8 bit files into
un-normalized doubles which returns values in the range [-128, 127].
* src/common.c
Modified psf_log_printf() to accept the %% conversion specifier to allow
printing of a single '%'.
* src/sds.c
Read only of 16 bit samples is working. Need to build a test harness for
this and other read only formats.
2002-08-10 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.in
Added --enable-experimental configure option.
Removed pkg-config message at the end of the configure process.
* src/sds.c src/txw.c src/rx2.c src/sd2.c
Moved all the code in these files inside #if ENABLE_EXPERIMENTAL_CODE
blocks and added new *_open() function for the case where experimental is
not enabled. These new functions just return SFE_UNIMPLMENTED.
* Win32/sndfile.h src/sndfile.h.in src/common.h
Removed un-necessary #pragma pack commands.
* src/file_io.c
Implemented psf_ftruncate() and much other hacking for Win32.
* Win32/Makefile.msvc
Updated.
* doc/win32.html
Updated to include the copying of the sndfile.h file from the Win32/
directory to the src/ directory.
* Make.bat
Batch file to make compiling on Wi32 a little easier. Implements "make" and
"make check".
2002-08-09 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
Add place holder for ftruncate() on Win32 which doesn't have ftruncate().
This will need to be fixed later.
* src/sndfile.h.in
New file (copy of sndfile.h) with sets up @TYPEOF_SF_COUNT_T@ which will be
replaced by the correct type during configure.
* configure.in
Modified to find a good type for TYPEOF_SF_COUNT_T.
* src/aiff.c
Fixed a bug when reading malformed headers.
* src/common.c
Set read values to zero before performing read.
2002-08-08 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/command.html
Fixed some HTML tags which were not allowing jumps to links within the
page.
* src/sds.c
Massive hacking on this.
* src/wav.c
Added recognition of 'clm ' tag.
2002-08-07 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/index.html
Added beginning of a capabilities list beyond simple file formats which
can be read/written.
* src/aiff.c
Added parsing of INST and MARK chunks of AIFF files. At the moment this
data is simply recorded in the log buffer. Later it will be possible to
read this data from an application using sf_command().
* src/wav.c
Added parsing of 'cue ' chunk which contains loop information in WAV files.
* exampes/sndfile-info.c
Changed reporting of Samples to Frames.
* src/wav.c src/w64.c src/aiff.c src/wav_w64.h
Moved from a samples to a frames nomenclature to avoid confusion.
* doc/FAQ.html
What's the best format for storing temporary files?
* src/sds.c
New file for reading/writing Midi Sample Dump Standard files.
* src/Makefile.am src/sndfile.c src/common.[ch]
Added hooks for sds.c.
* examples/sndfile-info.c
Changed from using sf_perror() to using sf_error_str().
2002-08-06 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/api.html
Added explanation of mode parameter for sf_open().
Added explanation of usage of SFM_* values in sf_seek().
* src/sndfile.[ch] src/command.c src/file_io.c src/common.h
Implemented SFC_FILE_TRUNCATE to allow a file to be truncated. File
truncation was suggested by James McCartney.
* src/command.html
Documented SFC_FILE_TRUNCATE.
* tests/command_test.c
Add tests for SFC_FILE_TRUNCATE.
* src/sndfile.c
Added a thrid parameter to the VALIDATE_SNDFILE_AND_ASSIGN_PSF macro to
make resetting the error number optional. All uses of the macro other than
in error reporting functions were changed to reset the error number.
* src/pcm.c
Fixed a bug were sf_read_* was logging an SFE_SHORT_READ even when no error
occurred.
* tests/write_read_test.tpl
Added tests of internal error state.
2002-08-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/GSM610/private.h src/GSM610/*.c src/GSM610/Makefile.am
Renamed private.h to gsm610_priv.h to prevent clash with other headers
named private.h in other directories. (Probably only a problem on MacOS 9).
* src/G72x/private.h src/G72x/*.c src/G72x/Makefile.am
Renamed private.h to g72x_priv.h to prevent clash with other headers
named private.h in other directories. (Probably only a problem on MacOS 9).
* MacOS/config.h
Changed values of HAVE_LRINT and HAVE_LRINTF to force use of code in
float_cash.h.
* src/sndfile.h
Changes the name of samples field of the SF_INFO to frames. The old name
had caused too much confusion and it simply had to be changed. There will
be at least one more pre-release.
2002-08-04 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/index.html
Updated formats matrix to include RAW (header-less) GSM 6.10.
Fix specificaltion of table and spelling mistakes.
* src/sndfile.c src/command.c
Fixed bug in SFC_CALC_MAX_SIGNAL family and psf_calc_signal_max ().
* tests/command.c
Removed cruft.
Added test for SFC_CALC_MAX_SIGNAL and SFC_CALC_NORM_MAX_SIGNAL.
* configure.in
Update version to 1.0.0rc5.
* sfendian.h
Removed inclusion of un-necessary header.
2002-08-03 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c
Minor fixes of info written to log buffer.
* src/float_cast.h
Add definition of HAVE_LRINT_REPLACEMENT.
* tests/floating_point_test.c
Fix file hash check on systems without lrint/lrintf.
* tests/dft_cmp.c
Limit SNR to less than -500.0dB.
* examples/sndfile2oct.c
Fixed compiler warnings.
* doc/api.html
Fixed error where last parameter of sf_error_str() was sf_count_t instead
of size_t.
2002-08-02 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/FAQ.html
Why doesn't libsndfile do interleaving/de-interleaving.
* tests/pcm_test.tpl
On Win32 do not perform hash check on files containing doubles.
2002-08-01 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h
Defined SF_COUNT_MAX_POSITIVE() macro, a portable way of setting variables
of type sf_count_t to their maximum positive value.
* src/dwvw.c src/w64.c
Used SF_COUNT_MAX_POSITIVE().
2002-07-31 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/paf.c
Fixed bug in reading/writing of 24 bit PCM PAF files on big endian systems.
* tests/floating_point_tests.c
Fixed hash values for 24 bit PCM PAF files.
Disabled file has check if lrintf() function is not available and added
warning.
Decreased level of signal from a peak of 1.0 to a value of 0.95 to prevent
problems on platforms without lrintf() ie Solaris.
2002-07-30 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Fixed a problem with two different kinds of mal-formed WAV file header. The
first had the 'fact' chunk before the 'fmt ' chunk, the other had an
incomplete 'INFO' chunk at the end of the file.
* src/w64.c
Added fix to allow differentiation between W64 files and ACID files.
* src/au_g72x.c src/common.h src/sndfile.c
Added error for G72x encoded files with more than one channel.
* tests/pcm_test.tpl tests/utils.tpl
Moved function check_file_hash_or_die() to utils.tpl. Function was then
modified to calculate the has of the whole file.
* src/wav.c
Fixed problem writing the 'fact' chunk on big endian systems.
* tests/sfconvert.c
Fixed bug where .paf files were being written as Sphere NIST.
2002-07-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/voc.c
Fix for reading headers generated using SFC_UPDATE_HEADER_NOW.
* doc/command.html
Add docs for SFC_UPDATE_HEADER_NOW and SFC_SET_UPDATE_HEADER_AUTO.
2002-07-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* man/sndfile-info.1 man/sndfile-play.1
Added manpages supplied by Joshua Haberman the Debian maintainer for
libsndfile. Additional tweaks by me.
* configure.in man/Makefile.am
Hooked manpages into autoconf/automake system.
* src/sndfile.c
Added hooks for SFC_SET_UPDATE_HEADER_AUTO.
* tests/update_header_test.c
Improved rigor of testing.
* src/*.c
Fixed problem with *_write_header() functions.
2002-07-27 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/*.html
Updates to documentation to fix problems found by wdg-html-validator.
* src/common.h src/command.c
Added normalize parameter to calls to psf_calc_signal_max() and
psf_calc_max_all_channels().
* src/sndfile.c
Added handling for commands SFC_CALC_NORM_SIGNAL_MAX and
SFC_CALC_NORM_MAX_ALL_CHANNELS.
* doc/command.html
Added entry for SFC_CALC_NORM_SIGNAL_MAX and SFC_CALC_NORM_MAX_ALL_CHANNELS.
2002-07-26 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-play.c Win32/Makefile.msvc
Get sndfile-play program working on Win32. The Win32 PCM sample I/O API
sucks. The sndfile-play program now works on Linux, MacOSX, Solaris and
Win32.
2002-07-25 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/FAQ.html
New file for frequently asked questsions.
2002-07-22 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/api.html
Documentation fixes.
* src/au.[ch] src/au_g72x.c src/G72x/g72x.h
Add support of 40kbps G723 ADPCM encoding.
* tests/lossy_comp_test.c tests/floating_point_test.c
Add tests for 40kbps G723 ADPCM encoding.
* doc/index.html
Update support matrix.
2002-07-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/command.html
Documented SFC_GET_SIMPLE_FORMAT_COUNT, SFC_GET_SIMPLE_FORMAT,
SFC_GET_FORMAT_* and SFC_SET_ADD_PEAK_CHUNK.
* src/sndfile.c src/pcm.c
Add ability to turn on and off the addition of a PEAK chunk for floating
point WAV and AIFF files.
* src/sndfile.[ch] src/common.h src/command.c
Added sf_command SFC_CALC_MAX_ALL_CHANNELS. Implemented by Maurizio Umberto
Puxeddu.
* doc/command.html
Docs for SFC_CALC_MAX_ALL_CHANNELS (assisted by Maurizio Umberto Puxeddu).
2002-07-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c src/gsm610.c
Finalised support for GSM 6.10 AIFF files and added support for GSM 6.10
encoded RAW (header-less) files.
* src/wav.c
Add support for IBM_FORMAT_MULAW and IBM_FORMAT_ALAW encodings.
* src/api.html
Fixed more documentation bugs.
2002-07-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h src/common.h
Moved some yet-to-be-implelmented values for SF_FORMAT_* from the public
header file sndfile.h to the private header file common.h to avoid
confusion about the actual capabilities of libsndfile.
2002-07-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c src/wav.c
Fixed file parsing for WAV and AIFF files containing non-audio data after
the data chunk.
* src/aiff.c src/sndfile.c
Add support for GSM 6.10 encoded AIFF files.
* tests/lossy_comp_test.c tests/Makefile.am
Add tests for GSM 6.10 encoded AIFF files.
* src/*.c
Fix compiler warnings.
2002-07-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/command_test.c
For SFC_SET_NORM_* tests, change the file format from SF_FORMAT_WAV to
SF_FORMAT_RAW.
* src/sndfile.c
Added sf_command(SFC_TEST_ADD_TRAILING_DATA) to allow testing of reading
from AIFF and WAV files with non-audio data after the audio chunk.
* src/common.h
Add test commands SFC_TEST_WAV_ADD_INFO_CHUNK and
SFC_TEST_AIFF_ADD_INST_CHUNK. When these commands are working, they will be
moved to src/sndfile.h
* src/aiff.c src/wav.c
Begin implementation of XXXX_command() hook for sf_command().
* tests/write_read_test.tpl
Added sf_command (SFC_TEST_ADD_TRAILING_DATA) to ensure above new code was
working.
2002-07-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/update_header_test.c
Allow read sample count == write sample count - 1 to fix problems with VOC
files.
* tests/write_read_test.tpl tests/pcm_test.tpl
Fixed some problems in the test suite discovered by using Valgrind.
2002-07-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/utils.[ch] tests/*.c
Renamed check_log_buffer() to check_log_buffer_or_die().
* src/sndfile.c
SFC_UPDATE_HEADER_NOW and SFC_SETUPDATE_HEADER_AUTO almost finished. Works
for all file formats other than VOC.
2002-07-11 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.[ch] src/common.h
Started adding functionality to allow the file header to be updated before
the file is closed on files open for SFM_WRITE. This was requested by
Maurizio Umberto Puxeddu who is using libsndfile for file I/O in iCSound.
* tests/update_header_test.c
New test program to test that the above functionality is working correctly.
* tests/peak_chunk_test.c tests/floating_point_test.c
Cleanups.
2002-07-10 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sfendian.[ch]
Changed length count parameters for all endswap_XXX() functions from
sf_count_t (which can be 64 bit even on 32 bit architectures) to int. These
functions are only called frin inside the library, are always called with
integer parameters and doing the actual calculation on 64 bit values is
slow in comparision to doing it on ints.
* examples/sndfile-play.c
More playback hacking for Win32.
2002-07-09 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.c
In psf_log_printf(), changed %D format conversion specifier to %M (marker) and
added %D specifier for printing the sf_count_t type.
* src/*.c
Changed all usage of psf_log_printf() with %D format conversion specifiers
to use %M conversion instead.
* tests/pcm_test.tpl tests/pcm_test.def
New files to autogen pcm_test.c.
* src/pcm.c
Fixed bug in scaling floats and doubles to 24 bit PCM and vice versa.
2002-07-08 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.in
Fix setup of $ac_cv_sys_largefile_CFLAGS so that sndfile.pc gets valid
values for CFLAGS.
* examples/sndfile-play.c
Start adding playback support for Win32.
2002-07-07 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/*.c
Worked to removed compiler warnings.
Extensive refactoring.
* src/common.[ch]
Added function psf_memset() which works like the standard C function memset
but takes and sf_count_t as the length parameter.
* src/sndfile.c
Replaced calls to memset(0 with calls to psf_memset() as required.
2002-07-06 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Added "libsndfile : " to the start of all error messages. This was suggested
by Conrad Parker author of Sweep ( http://sweep.sourceforge.net/ ).
* src/sfendian.[ch]
Added endswap_XXXX_copy() functions.
* src/pcm.c src/float32.c src/double64.c
Use endswap_XXXX_copy() functions and removed dead code.
Cleanups and optimisations.
2002-07-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c src/sndfile.h
Gave values to all the SFC_* enum values to allow better control of the
interface as commands are added and removed.
Added new command SFC_SET_ADD_PEAK_CHUNK.
* src/wav.c src/aiff.c
Modified wav_write_header and aiff_write_header to make addition of a PEAK
chunk optional, even on floating point files.
* tests/benchmark.tpl
Added call to sf_command(SFC_SET_ADD_PEAK_CHUNK) to turn off addition of a
PEAK chunk for the benchmark where we are trying to miximize speed.
* src.pcm.c
Changed tribyte typedef to something more sensible.
Further conversion speed ups.
2002-07-03 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/command.c
In major_formats rename "Sphere NIST" to "NIST Sphere".
* src/common.c src/sfendian.c
Moved all endswap_XXX_array() functions to sfendian.c. These functions will
be tweaked to provide maximum performance. Since maximum performance on one
platform does not guarantee maximum performance on another, a small set of
functions will be written and the optimal one chosen at compile time.
* src/common.h src/sfendian.h
Declarations of all endswap_XXX_array() functions moved to sfendian.h.
* src/Makefile.am
Add sfendian.c to build targets.
2002-07-01 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/pcm.c src/sfendian.h
Re-coded PCM encoders and decoders to match or better the speed of
libsndfile version 0.0.28.
2002-06-30 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Add checking for WAVPACK data in standard PCM WAV file. Return error if
found. This WAVPACK is *WAY* broken. It uses the same PCM WAV file header
and then stores non-PCM data.
* tests/benchmark.tpl
Added more tests.
2002-06-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/benchmark.tpl
Added conditional definition of M_PI.
For Win32, set WRITE_PERMS to 0777.
* Win32/Makefile.msvc
Added target to make generate program on Win32.
* src/samplitude.c
Removed handler for Samplitude RAP file format. This file type seems rarer
than hens teeth and is completely undocumented.
* src/common.h src/sndfile.c src/Makefile.am Win32/Makefile.msvc
Removed references to sampltiude RAP format.
* tests/benchmark.tpl
Benchmark program now prints the libsndfile version number when run. This
program was also backported to version 0 to compare results. Version
1.0.0rc2 is faster than version 0.0.28 on most conversions but slower on
some. The slow ones need to be fixed before final release.
2002-06-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/benchmark.def tests/benchmark.tpl
New files which generate tests/benchmark.c using Autogen. Added int ->
SF_FORMAT_PCM_24 test.
* tests/benchmark.c
Now and Autogen output file.
* tests/Makefile.am
Updated for above changes.
2002-06-27 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/benchmark.c
Basic benchmark program complete. Need to convert it to Autogen.
* Win32/Makefile.msvc
Added benchmark.exe target.
2002-06-26 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/generate.c
New program to generate a number of different output file formats from a
single input file. This allows testing of the created files.
* tests/benchmark.c
New test program to benchmark libsndfile. Nowhere near complete yet.
* examples/Makefile.am tests/Makefile.am
New make rules for the two new programs.
2002-06-25 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* Win32/libsndfile.def
Removed definition for sf_signal_max().
* src/sndfile.c
Removed cruft.
* doc/index.html
A number of documentation bugs were fixed. Thanks to Anand Kumria.
* doc/version-1.html
Minor doc updates.
* configure.in
Bumped version to 1.0.0rc2.
* src/sf_command.h src/Makefile.am
Removed the header file as it was no longer being used. Thanks to Anand
Kunria for spotting this.
* doc/index.html
A number of documentation bugs were fixed. Thanks to Anand Kumria.
2002-06-24 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h
Test for Win32 before testing SIZEOF_OFF_T so that it works correctly
on Win32..
* src/file_io.c
Win32 fixes to ensure O_BINARY is used for file open.
* doc/win32.html
New file documenting the building libsndfile on Win32.
* doc/*.html
Updating of documentation.
2002-06-23 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/pcm_test.c
Minor changes to allow easier determination of test file name.
* src/sndfile.[ch]
Removed function sf_signal_max().
* examples/sndfile-play.c
Changed call to sf_signal_max() to a call to sf_command().
2002-06-22 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/format.c src/command.c
Renamed format.c to command.c which will now include code for sf_command()
calls to perform operations other than format commands.
* src/sndfile.c src/sndfile.h
Removed function sf_get_signal_max() which is replaced by commands passed
to sf_command().
* src/command.c
Implement commands SFC_CALC_SIGNAL_MAX.
* doc/command.html
Documented SFC_CALC_SIGNAL_MAX.
2002-06-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-play.c
Mods to make sndfile-play work on Solaris. The program sndfile-play now
runs on Linux, MaxOSX and Solaris. Win32 to come.
* src/format.c
Added SF_FORMAT_DWVW_* to subtype_formats array.
* src/nist.c
Added support for 8 bit NIST Sphere files. Example file supplied by Anand
Kumria.
2002-06-20 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sndfile-info.c
Tidy up of output format.
* examnples/sndfile-play.c
Mods to make sndfile-play work on MacOSX using Apple's CoreAudio API.
* configure.in
Add new variables OS_SPECIFIC_INCLUDES and OS_SPECIFIC_LINKS which were
required to supply extra include paths and link parameters to get
sndfile-play working on MacOSX.
* examples/Makefile.am
Use OS_SPOECIFIC_INCLUDES and OS_SPECIFIC_LINKS to build commands for
sndfile-play.
2002-06-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/nist.c
Added ability to read/write new NIST Sphere file types (A-law, u-law).
Header parser was re-written from scratch. Example files supplied by Anand
Kumria.
* src/sndfile.c
Support for A-law and u-law NIST files.
* tests/Makefile.am tests/lossy_comp_test.c
Tests for A-law and u-law NIST files.
2002-06-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/utils.c
Fixed an error in error string.
2002-06-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* acinclude.m4
Removed exit command to allow cross-compiling.
* Win32/unistd.h src/file_io.c
Moved contents of first file into the second file (enclosed in #ifdef).
Win32/unistd.h is now an empty file but still must be there for libsndfile
to compile on Win32.
* src/sd2.c, src/sndfile.c:
Fixes for Sound Designer II files on big endian systems.
2002-06-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.in
Modified to work around problems with crappy MacOSX version of sed.
Added sanity check for proper values for CFLAGS.
2002-06-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Code clean up in sf_open ().
* Win32/Makefile.msvc
Michael Fink's contributed MSVC++ makefile was hacked to bits and put back
together in a new improved form.
* src/file_io.c
Fixes for Win32; _lseeki64() returns an invalid argument for calls like
_lseeki64(fd, 0, SEEK_CUR) so need to use _telli64 (fd) instead.
* src/common.h src/sndfile.c src/wav.c src/aiff.c
Added SFE_LOG_OVERRUN error.
Added termination for potential infinite loop when parsing file headers.
* src/wav.c src/w64.c
Fixed bug casuing incorrect header generation when opening file read/write.
2002-06-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/api.html
Improved the documentation to make it clearer that the file read method
and the underlying file format are completely disconnected. Suggested
by Josh Green.
* doc/command.html
Started correcting docs to take into account changes made to the
operations of the sf_command () function. Not complete yet.
* src/sndfile.c
Reverted some changes which had broken the partially working SDII header
parsing. Now have access to an iBook with OS X so reading and writing SDII
files on all platforms should be a reality in the near future. On Mac this
will involve reading the resource fork via the standard MacOS API. To move
a file from Mac to another OS, the resource and data forks will need to be
combined before transfer. The combined file will be read on both Mac and
other OSes like any other file.
2002-06-08 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* ltmain.sh
Applied a patch from http://fink.sourceforge.net/doc/porting/libtool.php
which allows libsndfile to compile on MacOSX 10.1. This patch should not
interfere with compiling on other OSes.
* src/GSM610/private.h
Changes to fix compile problems on MacOSX (see src/GSM610/ChangeLog).
* src/float_cast.h
Added MacOSX replacements for lrint() and lrintf().
2002-06-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Replaced the code to print the filename to the log buffer when a file is
opened. This code seems to have been left out during the merge of
sf_open_read() and sf_open_write() to make a single functions sf_open().
2002-06-01 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Fixed a bug where the WAV header parser was going into an infinite loop
on a badly formed LIST chunk. File supplied by David Viens.
2002-05-25 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.in
Added a message at the end of the configuration process to warn about the
need for the use of pkg-config when linking programs against version 1 of
libsndfile.
* doc/pkg-config.html
New documentation file containing details of how to use pkg-config to
retrieve settings for CFLAGS and library locations for linking files
against version 1 of libsndfile.
2002-05-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Fixed minor bug in handling of so-called ACIDized WAV files.
2002-05-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* Win32/libsndfile.def Win32/Makefile.msvc
Two new files contributed by Michael Fink (from the winLAME project)
which allows libsndfile to be built on windows in a MSDOS box by doing
"nmake -f Makefile.msvc". Way cool!
2002-05-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.in
MacOSX is SSSOOOOOOO screwed up!!! I can't believe how hard it is to
generate a tarball which will configure and compile on that platform.
Joined the libtool mailing list to try and get some answers.
2002-05-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.in
Changed to autoconf version 2.50. MacOSX uses autoconf version 2.53 which
is incompatible with with version 2.13 which had been using until now.
The AC_SYS_LARGE_FILE macro distributed withe autoconf 2.50 is missing a
few features so AC_SYS_EXTRA_LARGE file was defined to replace it.
* configure.in
Changed to automake version 1.5 to try and make a tarball which will
work on MacOSX.
2002-05-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav_gsm610.c
Changed name to gsm610.c. Added reading/writing of headerless files.
* src/sndfile.c src/raw.c
Added ability to read/write headerless (SF_FORMAT_RAW) GSM 6.10 files.
2002-05-11 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/lossy_comp_test.c
Clean up in preparation for Autogen-ing this file.
* src/GSM610/*.[ch]
Code cleanup and prepartion forgetting file seek working. Details in
src/GSM610/ChangeLog.
* sndfile.pc.in
Testing complete. Is sndfile.m4 still needed?
2002-05-09 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/write_read_test.tpl tests/rdwr_test.tpl
Merged tests from these two programs into write_read_test.tpl and deleted
rdwr_test.tpl.
2002-05-08 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/w64.c src/svx.c src/paf.c
Fixed bugs in read/write mode.
2002-05-07 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/Makefile.am
Renamed sfplay.c to sndfile-play.c and sndfile_info.c to sndfile-info.c for
consistency when these programs become part of the Debian package
sndfile-programs.
* sndfile.pc.in
New file to replace sndfile-config.in. Libsndfile now uses the pkg-config
model for providing installation parameters to dependant programs.
* src/sndfile.c
Cleanup of code in sf_open().
2002-05-06 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/utils.tpl tests/write_read_test.tpl
More conversion to Autogen fixes and enchancements.
* src/*.c
Read/write mode is now working for 16, 24 and 32 bit PCM as well as 32
bit float and 64 bit double data. More tests still required.
* src/Makefile.am
Added DISTCLEANFILES target to remove config.status and config.last.
* Win32/Makefile.am MacOS/Makefile.am
Added DISTCLEANFILES target to remove Makefile.
2002-05-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/*.[ch] tests/rdwr_test.c
More verifying workings of read/write mode. Fixing bugs found.
* tests/utils.[ch]
Made these files Autogen generated files.
* tests/util.tpl tests/util.def
New Autogen files to generate utils.[ch]. Moved some generic test functions
into this file. Autogen is such a great tool!
2002-05-03 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/pcm.c src/float_cast.h Win32/config.h
Fixed a couple of Win32 specific bugs pointed out by Michael Fink
(maintainer of WinLAME) and David Viens.
* tests/check_log_buffer.[ch] tests/utils.[ch]
Moved check_log_buffer() to utils.[ch] and deleted old file.
2002-05-02 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.[ch] src/sndfile.c
New function psf_default_seek() which will be the default seek function
for things like PCM and floating point data. This default is set for
both read and write in sf_open() but can be over-ridden by any codec
during it's initialisation.
2002-05-01 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/au.c
AU files use a data size value of -1 to mean unknown. Fixed au_open_read()
to allow opening files like this.
* tests/rdwr_test .c
Added more tests.
* src/sndfile.c
Fixed bugs in read/write mode found due to improvements in the test
program.
2002-04-30 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/rdwr_test .c
New file for testing read/write mode.
2002-04-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* m4/*
Removed all m4 macros from this directory as they get concatenated to form
the file aclocal.m4 anyway.
* sndfile.m4
Moved this from the m4 directory to the root directory asn this is part of
the distribution and is installed during "make install".
2002-04-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/float32.c
Removed logging of peaks for all file formats other than AIFF and WAV.
* tests/write_read_test.tpl tests/write_read_test.def
New files which autogen uses to generate write_read_test.c. Doing it this
way makes write_read_test.c far easier to maintain. Other test programs
will be converted to autogen in the near future.
* src/*.c
Fixed a few bugs found when testing on Sparc (bug endian) Solaris.
2002-04-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* doc/*.html
Fixed documention versioning.
* configure.in
Fixed a bug in the routines which search for Large File Support on systems
which have large file support by defualt.
2002-04-27 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/*.[ch]
Found and fixed an issue which can cause a bug in other software (I was
porting Conrad Parker's Sweep program from version 0 of the library to
version 1). When opening a file for write, the libsndfile code would
set the sfinfo.samples field to a maximum value.
* tests/write_read_test.c
Added tests to detect the above problem.
2002-04-25 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/*.[ch]
Finished base implementation of read/write mode. Much more testing still
needed.
* m4/largefile.m4
Macro for detecting Large File Standard capabilities. This macro was ripped
out of the aclocal.m4 file of GNU tar-1.13.
* configure.in
Added detection of large file support. Files larger than 2 Gigabytes should
now be supported on 64 bit platforms and many 32 bit platforms including
Linux (2.4 kernel, glibc-2.2), *BSD, MacOS, Win32.
* libsndfile_convert_version.py
A Python script which attempts to autoconvert code written to use version 0
to version 1.
2002-04-24 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/*.[ch]
Finished base implementation of read/write mode. Much more testing still
needed.
* tests/write_read_test.c
Preliminary tests for read/write mode added. More needed.
2002-04-20 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.[ch]
Removed sf_open_read() and sf_open_write() functions,replacting them with
sf_open() which takes an extra mode parameter (SF_OPEN_READ, SF_OPEN_WRITE,
or SF_OPEN_RDWR). This new function sf_open can now be modified to allow
opening a file formodification (RDWR).
2002-04-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/*.c
Completed merging of separate xxx_open_read() and xxx_open_write()
functions. All tests pass.
2002-04-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/au.c
Massive refactoring required to merge au_open_read() with au_open_write()
to create au_open().
2002-04-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/*.c
Started changes required to allow a sound file to be opened in read/write
mode, with separate file pointers for read and write. This involves merging
of encoder/decoder functions like pcm_read_init() and pcm_write_init()
int a new function pcm_init() as well as doing something similar for all
the file type specific functions ie aiff_open_read() and aiff_open_write()
were merged to make the function aiff_open().
2002-04-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/file_io.c
New file containing psf_fopen(), psf_fread(), psf_fwrite(), psf_fseek() and
psf_ftell() functions. These function will replace use of fopen/fread/fwrite
etc and allow access to files larger than 2 gigabytes on a number of 32 bit
OSes (Linux on x86, 32 bit Solaris user space apps, Win32 and MacOS).
* src/*.c
Replaced all instances of fopen with psf_open, fread with psd_read, fwrite
with psf_write and so on.
2002-03-11 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/dwvw.c
Finally fixed all known problems with 12, 16 and 24 bit DWVW encoding.
* tests/floating_point_test.c
Added tests for 12, 16 and 24 bit DWVW encoding.
2002-03-03 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* m4/endian.m4
Defines a new m4 macro AC_C_FIND_ENDIAN, for determining the endian-ness of
the target CPU. It first checks for the definition of BYTE_ORDER in
<endian.h>, then in <sys/types.h> and <sys/param.h>. If none of these work
and the C compiler is not a cross compiler it compiles and runs a program
to test for endian-ness. If the compiler is a cross compiler it makes a
guess based on $target_cpu.
* configure.in
Modified to use AC_C_FIND_ENDIAN.
* src/sfendian.h
Simplified.
2002-02-23 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/floating_point_test.c
Tests completely rewritten using the dft_cmp function. Now able to
calculate a quick guesstimate of the Signal to Noise Ratio of the encoder.
2002-02-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/dft_cmp.[ch]
New files containing functions for comparing pre and post lossily
compressed data using a quickly hacked DFT.
* tests/utils.[ch]
New files containing functions for saving pre and post encoded data in a
file readable by the GNU Octave package.
2002-02-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* m4/lrint.m4 m4/lrintf.m4
Fixed m4 macros to define HAVE_LRINT and HAVE_LRINTF even when the test
is cached.
2002-02-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/floating_point_test.c
Fixed improper use of strncat ().
2002-02-11 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/headerless_test.c
New test program to test the ability to open and read a known file type as a
RAW header-less file.
2002-02-07 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/losy_comp_test.c
Added a test to ensure that the data read from a file is not all zeros.
* examples/sfconvert.c
Added "-gsm610" encoding types.
2002-01-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sfconvert.c
Added "-dwvw12", "-dwvw16" and "-dwvw24" encoding types.
* tests/dwvw_test.c
New file for testing DWVW encoder/decoder.
2002-01-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/dwvw.c
Implemented writing of DWVW. 12 bit seems to work, 16 and 24 bit still broken.
* src/aiff.c
Improved reporting of encoding types.
* src/voc.c
Clean up.
2002-01-27 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/dwvw.c
New file implementing lossless Delta Word Variable Width (DWVW) encoding.
Reading 12 bit DWVW is now working.
* src/aiff.c common.h sndfile.c
Added hooks for DWVW encoded AIFF and RAW files.
2002-01-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/w64.c
Robustify header parsing.
* src/wav_w64.h
Header file wav.h was renamed to wav_w64.h to signify sharing of
definitions across the two file types.
* src/wav.c src/w64.c src/wav_w64.c
Refactoring.
Modified and moved functions with a high degree of similarity between
wav.c and w64.c to wav_w64.c.
2002-01-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/w64.c
Completed work on getting read and write working.
* examples/sfplay.c
Added code to scale floating point data so it plays at a reasonable volume.
* tests/Makefile.am tests/write_read_test.c
Added tests for W64 files.
2002-01-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/*.c
Modded all code in file header writing routines to use
psf_new_binheader_writef().
Removed psf_binheader_writef() from src/common.c.
Globally replaced psf_new_binheader_writef with psf_binheader_writef.
2002-01-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/*.c
Modded all code in file parsing routines to use psf_new_binheader_readf().
Removed psf_binheader_readf() from src/common.c.
Globally replaced psf_new_binheader_readf with psf_binheader_readf.
* src/common.[ch]
Added new function psf_new_binheader_writef () which will soon replace
psf_binheader_writef (). The new function has basically the same function
as the original but has a more flexible and capable interface. It also
allows the writing of 64 bit integer values for files contains 64 bit file
offsets.
2002-01-11 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/formats.c src/sndfile.c src/sndfile.h
Added code allowing full enumeration of supported file formats via the
sf_command () interface.
This feature will allow applications to avoid needing recompilation when
support for new file formats are added to libsndfile.
* tests/command_test.c
Added test code for the above feature.
* examples/list_formats.c
New file. An example of the use of the supported file enumeration
interface. This program lists all the major formats and for each major
format the supported subformats.
2002-01-10 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/*.[ch] tests/*.c
Changed command parameter of sf_command () function from a test string to
an int. The valid values for the command parameter begin with SFC_ and are
listed in src/sndfile.h.
2001-12-20 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/formats.c src/sndfile.c
Added an way of enumerating a set of common file formats using the
sf_command () interface. This interface was suggested by Dominic Mazzoni,
one of the main authors of Audacity (http://audacity.sourceforge.net/).
2001-12-26 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Added checking of filename parameter in sf_open_read (). Previousy, if a
NULL pointer was passed the library would segfault.
2001-12-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.c src/common.h
Changed the len parameter of the endswap_*_array () functions from type
int to type long.
* src/pcm.c
Fixed a problem which
2001-12-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Added conditional #include <sys/types.h> for EMX/gcc on OS/2. Thanks to
Paul Hartman for pointing this out.
* tests/lossy_comp_test.c tests/floating_point_test.c
Added definitions for M_PI for when it isn't defined in <math.h>.
2001-11-30 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/ircam.c
Re-implemented the header reader. Old version was making incorrect
assumptions about the endian-ness of the file from the magic number at the
start of the file. The new code looks at the integer which holds the
number of channels and determines the endian-ness from that.
2001-11-30 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c
Added support for other AIFC types ('raw ', 'in32', '23ni').
Further work on IMA ADPCM encoding.
2001-11-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/ima_adpcm.c
Renamed from wav_ima_adpcm.c. This file will soon handle IMA ADPCM
encodings for both WAV and AIFF files.
* src/aiff.c
Started adding IMA ADPCM support.
2001-11-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/double.c
New file for handling double precision floating point (SF_FORMAT_DOUBLE)
data.
* src/wav.c src/aiff.c src/au.c src/raw.c
Added support for SF_FORMAT_DOUBLE data.
* src/common.[ch]
Addition of endswap_long_array () for endian swapping 64 bit integers. This
function will work correctly on processors with 32 bit and 64 bit longs.
Optimised endswap_short_array () and endswap_int_array ().
* tests/pcm_test.c
Added and extra check. After the first file of each type is written to disk
a checksum is performed of the first 64 bytes and checked against a pre-
calculated value. This will work whatever the endian-ness of the host
machine.
2001-11-27 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c
Added handling of u-law, A-law encoded AIFF files. Thanks to Tom Erbe for
supplying example files.
* tests/lossy_comp_test.c
Added tests for above.
* src/common.h src/*.c
Removed function typedefs from common.h and function pointer casting in all
the other files. This allows the compiler to perform proper type checking.
Hopefully this will prevernt problems like the sf_seek bug for OpenBSD,
BeOS etc.
* src/common.[ch]
Added new function psf_new_binheader_readf () which will eventually replace
psf_binheader_readf (). The new function has basically the same function as
the original but has a more flexible and capable interface. It also allows
the reading of 64 bit integer values for files contains 64 bit file
offsets.
2001-11-26 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/voc.c
Completed implementation of VOC file handling. Can now handle 8 and 16 bit
PCM, u-law and A-law files with one or two channels.
* src/write_read_test.c tests/lossy_comp_test.c
Added tests for VOC files.
2001-11-22 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/float_cast.h
Added inline asm version of lrint/lrintf for MacOS. Solution provided by
Stephane Letz.
* src/voc.c
More work on this braindamaged format. The VOC files produced by SoX also
have a number of inconsistencies.
2001-11-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/paf.c
Added support for 8 bit PCM PAF files.
* tests/write_read_test.c
Added tests for 8 bit PAF files.
2001-11-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/pcm_test.c
New test program to test for correct scaling of integer values between
different sized integer containers (ie short -> int).
The new specs for libsndfile state that when the source and destination
containers are of a different size, the most significant bit of the source
value becomes the most significant bit of the destination container.
* src/pcm.c src/paf.c
Modified to pass the above test program.
* tests/write_read_test.c tests/lossy_comp_test.c
Modified to work with the new scaling rules.
2001-11-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/raw.c tests/write_read_test.c tests/write_read_test.c
Added ability to do raw reads/writes of float, u-law and A-law files.
* src/*.[ch] examples/*.[ch] tests/*.[ch]
Removed dependance on pcmbitwidth field of SF_INFO struct and moved to new
SF_FORMAT_* types and use of SF_ENDIAN_BIG/LITTLE/CPU.
2001-11-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/*.[ch]
Started implmentation of major changes documented in doc/version1.html.
Removed all usage of off_t which is not part of the ISO C standard. All
places which were using it are now using type long which is the type of
the offset parameter for the fseek function.
This should fix problems on BeOS, MacOS and *BSD like systems which were
failing "make check" because sizeof (long) != sizeof (off_t).
--------------------------------------------------------------------------------
This is the boundary between version 1 of the library above and version 0 below.
--------------------------------------------------------------------------------
2001-11-11 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sfplay_beos.cpp
Added BeOS version of sfplay.c. This needs to be compiled using a C++
compiler so is therefore not built by default. Thanks to Marcus Overhagen
for providing this.
2001-11-10 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sfplay.c
New example file showing how libsndfile can be used to read and play a
sound file.
At the moment on Linux is supported. Others will follow in the near future.
2001-11-09 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/pcm.c
Fixed problem with normalisation code where a value of 1.0 could map to
a value greater than MAX_SHORT or MAX_INT. Thanks to Roger Dannenberg for
pointing this out.
2001-11-08 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/pcm.c
Fixed scaling issue when reading/writing 8 bit files using
sf_read/sf_write_short ().
On read, values are scaled so that the most significant bit in the char
ends up in the most significant bit of the short. On write, values are
scaled so that most significant bit in the short ends up as the most
significant bit in the char.
2001-11-07 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/au.c src/sndfile.c
Added support for 32 bit float data in big and little endian AU files.
* tests/write_read_test.c
Added tests for 32 bit float data in AU files.
2001-11-06 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/lossy_comp_test.c
Finalised testing of stereo files where possible.
2001-11-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav_ms_adpcm.c
Fixed bug in writing stereo MS ADPCM WAV files. Thanks to Xu Xin for
pointing out this problem.
2001-10-24 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav_ms_adpcm.c
Modified function srate2blocksize () to handle 44k1Hz stereo files.
2001-10-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/w64.c
Added support for Sonic Foundry 64 bit WAV format. As Linux (my main
development platform) does not yet support 64 bit file offsets by default,
current handling of this file format treats everything as 32 bit and fails
openning the file, if it finds anything that goes beyond 32 bit values.
* src/sndfile.[hc] src/common.h src/Makefile.am
Added hooks for W64 support.
2001-10-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.in
Added more warnings options to CFLAGS when the gcc compiler is detected.
* src/*.[ch] tests/*.c examples/*.c
Started fixing the warning messages due to the new CFLASG.
* src/voc.c
More work on VOC file read/writing.
* src/paf.c
Found that PAF files were not checking the normalisation flag when reading
or writing floats and doubles. Fixed it.
* tests/floating_point_test.c
Added specific test for the above problem.
* src/float_cast.h src/pcm.c
Added a section for Win32 to define lrint () and lrintf () in the header
and implement it in the pcm.c
2001-10-20 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* sndfile-config.in m4/sndfile.m4
These files were donated by Conrad Parker who also provided instructions
on how to install them using autoconf/automake.
* src/float_cast.h
Fiddled around with this file some more. On Linux and other gcc supported
OSes use the C99 functions lrintf() and lrint() for casting from floating
point to int without incurring the huge perfromance penalty (particularly
on the i386 family) caused by the regular C cast from float to int.
These new C99 functions replace the FLOAT_TO_* and DOUBLE_TO_* macros which
I had been playing with.
* configure.in m4/lrint.m4 m4/lrintf.m4
Add detection of these functions.
2001-10-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/voc.c
Completed code for reading VOC files containing a single audio data
segment.
Started implementing code to handle files with multiple VOC_SOUND_DATA
segments but couldn't be bothered finishing it. Multiple segment files can
have different sample rates for different sections and other nasties like
silence and repeat segments.
2001-10-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h src/*.c
Removed SF_PRIVATE struct field fdata and replaced it with extra_data.
* src/voc.c
Further development of the read part of this woefult file format.
2001-10-04 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/float_cast.h
Implemented gcc and i386 floating point to int cast macros. Standard cast
will be used when not on gcc for i385.
* src/pcm.c
Modified all uses of FLOAT/DOUBLE_TO_INT and FLOAT/DOUBLE_TO_SHORT casts to
comply with macros in float_cast.h.
2001-10-04 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/voc.c
Changed the TYPE_xxx enum names to VOC_TYPE_xxx to prevent name clashes
on MacOS with CodeWarrior 6.0.
* MacOS/MacOS-readme.txt
Updated the compile instructions. Probably still need work as I don't have
access to a Mac.
2001-10-01 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c src/aiff.c common.c
Changed all references to snprintf to LSF_SNPRINTF and all vsnprintf to
LSF_VSNPRINTF. LSF_VSNPRINTF and LSF_VSNPRINTF are defined in common.h.
* src/common.h
Added checking of HAVE_SNPRINTF and HAVE_VSNPRINTF and defining
LSF_VSNPRINTF and LSF_VSNPRINTF to appropriate values.
* src/missing.c
New file containing a minimal implementation of snprintf and vsnprintf
functions named missing_snprintf and missing_vsnprintf respectively. These
are only compliled into the binary if snprintf and/or vsnprintf are not
available.
2001-09-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/ircam.c
New file to handle Berkeley/IRCAM/CARL files.
* src/sndfile.c src/common.h
Modified for IRCAM handling.
* tests/*.c
Added tests for IRCAM files.
2001-09-27 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Apparently microsoft windows (tm) doesn't like ulaw and Alaw WAV files with
20 byte format chunks (contrary to ms's own documentation). Fixed the WAV
header writing code to generate smaller ms compliant ulaw and Alaw WAV
files.
2001-09-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/stdio_test.sh tests/stdio_test.c
Shell script was rewritten as a C program due to incompatibilities of the
sh shell on Linux and Solaris.
2001-09-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/stdio_test.sh tests/stdout_test.c tests/stdin_test.c
New test programs to verify the correct operation of reading from stdin and
writing to stdout.
* src/sndfile.c wav.c au.c nist.c paf.c
Fixed a bugs uncovered by the new test programs above.
2001-09-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c wav.c
Fixed a bug preventing reading a file from stdin. Found by T. Narita.
2001-09-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h
Fixed a problem on OpenBSD 2.9 which was causing sf_seek() to fail on IMA
WAV files. Root cause was the declaration of the func_seek typedef not
matching the functions it was actually being used to point to. In OpenBSD
sizeof (off_t) != sizeof (int). Thanks to Heikki Korpela for allowing me
to log into his OpenBSD machine to debug this problem.
2001-09-03 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Implemented sf_command ("norm float").
* src/*.c
Implemented handling of sf_command ("set-norm-float"). Float normalization
can now be turned on and off.
* tests/double_test.c
Renamed to floating_point_test.c. Modified to include tests for all scaled
reads and writes of floats and doubles.
* src/au_g72x.c
Fixed bug in normalization code found with improved floating_point_test
program.
* src/wav.c
Added code for parsing 'INFO' and 'LIST' chunks. Will be used for extract
text annotations from WAV files.
* src/aiff.c
Added code for parsing '(c) ' and 'ANNO' chunks. Will be used for extract
text annotations from WAV files.
2001-09-02 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sf_info.c example/Makefile.am
Renamed to sndfile_info.c. The program sndfile_info will now be installed
when the library is installed.
* src/float_cast.h
New file defining floating point to short and int casts. These casts will
eventually replace all flot and double casts to short and int. See comments
at the top of the file for the reasoning.
* src/*.c
Changed all default float and double casts to short or int with macros
defined in floatcast.h. At the moment these casts do nothing. They will be
replaced with faster float to int cast operations in the near future.
2001-08-31 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/command_test.c
New file for testing sf_command () functionality.
* src/sndfile.c
Revisiting of error return values of some functions.
Started implementing sf_command () a new function will allow on-the-fly
modification of library behaviour, or instance, sample value scaling.
* src/common.h
Added hook for format specific sf_command () calls to SNDFILE struct.
* doc/api.html
Updated and errors corrected.
* doc/command.html
New documentation file explaining new sf_command () function.
2001-08-11 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Fixed error return values from sf_read*() and sf_write*(). There were
numerous instances of -1 being returned through size_t. These now all set
error int the SF_PRIVATE struct and return 0. Thanks to David Viens for
spotting this.
2001-08-01 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.c
Fixed use of va_arg() calls that were causing warning messages with the
latest version of gcc (thanks Maurizio Umberto Puxeddu).
2001-07-25 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/*.c src/sfendian.h
Moved definition of MAKE_MARKER macro to sfendian.h
2001-07-23 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Modified sf_get_lib_version () so that version string will be visible using
the Unix strings command.
* examples/Makefile.am examples/sfinfo.c
Renamed sfinfo program and source code to sf_info. This prevents a name
clash with the program included with libaudiofile.
2001-07-22 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/read_seek_test.c tests/lossy_comp_test.c
Added tests for sf_read_float () and sf_readf_float ().
* src/voc.c
New files for handling Creative Voice files (not complete).
* src/samplitude.c
New files for handling Samplitude files (not complete).
2001-07-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c src/au.c src/paf.c src/svx.c src/wav.c
Converted these files to using psf_binheader_readf() function. Will soon be
ready to attempt to make reading writing from pipes work reliably.
* src/*.[ch]
Added code for sf_read_float () and sf_readf_float () methods of accessing
file data.
2001-07-20 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/paf.c src/wav_gsm610.c
Removed two printf()s which had escaped notice for some time (thanks
Sigbjrn Skjret).
2001-07-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav_gsm610.c
Fixed a bug which prevented GSM 6.10 encoded WAV files generated by
libsndfile from being played in Windoze (thanks klay).
2001-07-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.[ch]
Implemented psf_binheader_readf() which will do for file header reading what
psf_binheader_writef() did for writing headers. Will eventually allow
libsndfile to read and write from pipes, including named pipes.
2001-07-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* MacOS/config.h Win32/config.h
Attempted to bring these two files uptodate with src/config.h. As I don't
have access to either of these systems support for them may be completely
broken.
2001-06-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/float32.c
Fixed bug for big endian processors that can't read 32 bit IEEE floats. Now
tested on Intel x86 and UltraSparc processors.
2001-06-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c
Modified to allow REX files (from Propellorhead's Recycle and Reason
programs) to be read.
REX files are basically an AIFF file with slightly unusual sequence of
chunks (AIFF files are supposed to allow any sequence) and some extra
application specific information.
Not yet able to write a REX file as the details of the application specific
data is unknown.
2001-06-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Fixed endian bug when reading PEAK chunk on big endian machines.
* src/common.c
Fixed endian bug when reading PEAK chunk on big endian machines with
--enable-force-broken-float configure option.
Fix psf_binheader_writef for (FORCE_BROKEN_FLOAT ||______)
2001-06-07 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.in src/config.h.in
Removed old CAN_READ_WRITE_x86_IEEE configure variable now that float
capabilities are detected at run time.
Added FORCE_BROKEN_FLOAT to allow testing of broken float code on machines
where the processor can in fact handle floats correctly.
* src/float32.c
Rejigged code reading and writing of floats on broken processors.
* m4/
Removed this directory and all its files as they are no longer needed.
2001-06-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/peak_chunk_test.c
New test to validate reading and writing of peak chunk.
* examples/sfconvert
Added -float32 option.
* src/*.c
Changed all error return values to negative values (ie the negative of what
they were).
* src/sndfile.c tests/error_test.c
Modified to take account of the previous change.
2001-06-04 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/float32.c
File renamed from wav_float.c and renamed function to something more
general.
Added runtime detection of floating point capabilities.
Added recording of peaks during write for generation of PEAK chunk.
* src/wav.c src/aiff.c
Added handing for PEAK chunk for floating point files. PEAK is read when the
file headers are read and generated when the file is closed. Logic is in
place for adding PEAK chunk to end of file when writing to a pipe (reading
and writing from/to pipe to be implemented soon).
* src/sndfile.c
Modified sf_signal_max () to use PEAK values if present.
2001-06-03 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/*.c
Added pcm_read_init () and pcm_write_init () to src/pcm.c and removed all
other calls to functions in this file from the filetype specific files.
* src/*.c
Added alaw_read_init (), alaw_write_int (), ulaw_read_init () and
ulaw_write_init () and removed all other calls to functions in alaw.c and
ulaw.c from the filetype specific files.
* tests/write_read_test.c
Added tests to validate sf_seek () on all file types.
* src/raw.c
Implemented raw_seek () function to fix a bug where
sf_seek (file, 0, SEEK_SET) on a RAW file failed.
* src/paf.c
Fixed a bug in paf24_seek () found due to added seeks tests in
tests/write_read_test.c
2001-06-01 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/read_seek_test.c
Fixed a couple of broken binary files.
* src/aiff.c src/wav.c
Added handling of PEAK chunks on file read.
2001-05-31 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* check_libsndfile.py
New file for the regression testing of libsndfile.
check_libsndfile.py is a Python script which reads in a file containing
filenames of audio files. Each file is checked by running the examples/sfinfo
program on them and checking for error or warning messages in the libsndfile
log buffer.
* check_libsndfile.list
This is an example list of audio files for use with check_libsndfile.py
* tests/lossy_comp_test.c
Changed the defined value of M_PI for math header files which don't have it.
This fixed validation test failures on MetroWerks compilers. Thanks to Lord
Praetor Satanus of Acheron for bringing this to my attention.
2001-05-30 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.[ch]
Removed psf_header_setf () which was no longer required after refactoring
and simplification of header writing.
Added 'z' format specifier to psf_binheader_writef () for zero filling header
with N bytes. Used by paf.c and nist.c
* tests/check_log_buffer.c
New file implementing check_log_buffer () which reads the log buffer of a
SNDFILE* object and searches for error and warning messages. Calls exit ()
if any are found.
* tests/*.c
Added calls to check_log_buffer () after each call to sf_open_XXX ().
2001-05-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c src/wav_ms_adpcm.c src/wav_gsm610.c
Major rehack of header writing using psf_binheader_writef ().
2001-05-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c src/wav_ima_adpcm.c
Major rehack of header writing using psf_binheader_writef ().
2001-05-27 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Changed return type of get_encoding_str () to prevent compiler warnings on
Mac OSX.
* src/aiff.c src/au.c
Major rehack of header writing using psf_binheader_writef ().
2001-05-25 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h src/common.c
Added comments.
Name of log buffer changed from strbuffer to logbuffer.
Name of log buffer index variable changed from strindex to logindex.
* src/*.[ch]
Changed name of internal logging function from psf_sprintf () to
psf_log_printf ().
Changed name of internal header generation functions from
psf_[ab]h_printf () to psf_asciiheader_printf () and
psf_binheader_writef ().
Changed name of internal header manipulation function psf_hsetf () to
psf_header_setf ().
2001-05-24 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/nist.c
Fixed reading and writing of sample_byte_format header. "01" means little
endian and "10" means big endian regardless of bit width.
* configure.in
Detect Mac OSX and disable -Wall and -pedantic gcc options. Mac OSX is
way screwed up and spews out buckets of warning messages from the system
headers.
Added --disable-gcc-opt configure option (sets gcc optimisation to -O0 ) for
easier debugging.
Made decision to harmonise source code version number and .so library
version number. Future releases will stick to this rule.
* doc/new_file_type.HOWTO
New file to document the addition of new file types to libsndfile.
2001-05-23 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/nist.c
New file for reading/writing Sphere NIST audio file format.
Originally requested by Elis Pomales in 1999.
Retrieved from unstable (and untouched for 18 months) branch of libsndfile.
Some vital information gleaned from the source code to Bill Schottstaedt's
sndlib library : ftp://ccrma-ftp.stanford.edu/pub/Lisp/sndlib.tar.gz
Currently reading and writing 16, 24 and 32 bit, big-endian and little
endian, stereo and mono files.
* src/common.h src/common.c
Added psf_ah_printf () function to help construction of ASCII headers (ie NIST).
* configure.in
Added test for vsnprintf () required by psf_ah_printf ().
* tests/write_read_test.c
Added tests for supported NIST files.
2001-05-22 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/write_read_test.c
Added tests for little endian AIFC files.
* src/aiff.c
Minor re-working of aiff_open_write ().
Added write support for little endian PCM encoded AIFC files.
2001-05-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c
Minor re-working of aiff_open_read ().
Added read support for little endian PCM encoded AIFC files from the Mac
OSX CD ripper program. Guillaume Lessard provided a couple of sample files
and a working patch.
The patch was not used as is but gave a good guide as to what to do.
2001-05-11 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h
Fixed comments about endian-ness of WAV and AIFF files. Guillaume Lessard
pointed out the error.
2001-04-23 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/make_sine.c
Re-write of this example using sample rate and required frequency in Hz.
2001-02-11 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Fixed bug that prevented known file types from being read as RAW PCM data.
2000-12-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c
Added handing of COMT chunk.
2000-11-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sfconvert.c
Fixed bug in normalisatio code. Pointed out by Johnny Wu.
2000-11-08 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* Win32/config.h
Fixed the incorrect setting of HAVE_ENDIAN_H parameter. Win32 only issue.
2000-10-27 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/Makefile.am
Added -lm for write_read_test_LDADD.
2000-10-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c src/au.c
Fixed bug which prevented writing of G723 24kbps AU files.
* tests/lossy_comp_test.c
Corrrection to options for G723 tests.
* configure.in
Added --disable-gcc-pipe option for DJGPP compiler (gcc on MS-DOS) which
doesn't allow gcc -pipe option.
2000-09-03 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/ulaw.c src/alaw.c src/wav_imaadpcm.c src/msadpcm.c src/wav_gsm610.c
Fixed normailsation bugs shown up by new double_test program.
2000-08-31 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/pcm.c
Fixed bug in normalisation code (spotted by Steve Lhomme).
* tests/double_test.c
New file to test scaled and unscaled sf_read_double() and sf_write_double()
functions.
2000-08-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* COPYING
Changed to the LGPL COPYING file (spotted by H. S. Teoh).
2000-08-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h
Removed prototype of unimplemented function sf_get_info(). Added prototype
for sf_error_number() Thanks to Sigbjrn Skjret for spotting these.
2000-08-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/newpcm.h
New file to contain a complete rewrite of the PCM data handling.
2000-08-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Fixed a leak of FILE* pointers in sf_open_write(). Thanks to Sigbjrn
Skjret for spotting this one.
2000-08-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/au_g72x.c src/G72x/g72x.c
Added G723 encoded AU file support.
* tests/lossy_comp_test.c
Added tests for G721 and G723 encoded AU files.
2000-08-06 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* all files
Changed the license to LGPL. Albert Faber who had copyright on
Win32/unistd.h gave his permission to change the license on that file. All
other files were either copyright erikd AT mega-nerd DOT com or copyright
under a GPL/LGPL compatible license.
2000-08-06 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/lossy_comp_test.c
Fixed incorrect error message.
* src/au_g72x.c src/G72x/*
G721 encoded AU files now working.
* Win32/README-Win32.txt
Replaced this file with a new one which gives a full explanation
of how to build libsndfile under Win32. Thanks to Mike Ricos.
2000-08-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/*.[ch]
Removed double leading underscores from the start of all variable and
function names. Identifiers with a leading underscores are reserved
for use by the compiler.
* src/au_g72x.c src/G72x/*
Continued work on G721 encoded AU files.
2000-07-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/G72x/*
New files for reading/writing G721 and G723 ADPCM audio. These files
are from a Sun Microsystems reference implementation released under a
free software licence.
Extensive changes to this code to make it fit in with libsndfile.
See the ChangeLog in this directory for details.
* src/au_g72x.c
New file for G721 encoded AU files.
2000-07-08 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* libsndfile.spec.in
Added a spec file for making RPMs. Thanks to Josh Green for supplying this.
2000-06-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c src/sndfile.h
Add checking for and handling of header-less u-law encoded AU/SND files.
Any file with a ".au" or ".snd" file extension and without the normal
AU file header is treated as an 8kHz, u-law encoded file.
* src/au.h
New function for opening a headerless u-law encoded file for read.
2000-06-04 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/paf.c
Add checking for files shorter than minimal PAF file header length.
2000-06-02 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/write_read_test.c
Added extra sf_perror() calls when sf_write_XXXX fails.
2000-05-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.c
Modified usage of va_arg() macro to work correctly on PowerPC
Linux. Thanks to Kyle Wheeler for giving me ssh access to his
machine while I was trying to track this down.
* configure.in src/*.[ch]
Sorted out some endian-ness issues brought up by PowerPC Linux.
* tests/read_seek_test.c
Added extra debugging for when tests fail.
2000-05-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Fixed bug in GSM 6.10 handling for big-endian machines. Thanks
to Sigbjrn Skjret for reporting this.
2000-04-25 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c src/wav.c src/wav_gsm610.c
Finallised writing of GSM 6.10 WAV files.
* tests/lossy_comp_test.c
Wrote new test code for GSM 6.10 files.
* examples/sfinfo.c
Fixed incorrect format in printf() statement.
2000-04-06 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h.in
Fixed comments about sf_perror () and sf_error_str ().
2000-03-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.in
Fixed --enable-justsrc option.
2000-03-07 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* wav.c
Fixed checking of bytespersec field of header. Still some weirdness
with some files.
2000-03-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/lossy_comp_test.c
Added option to test PCM WAV files (sanity check).
Fixed bug in sf_seek() tests.
2000-02-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c src/wav.c
Minor changes to allow writing of GSM 6.10 WAV files.
2000-02-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.in Makefile.am src/Makefile.am
Finally got around to figuring out how to build a single library from
multiple source directories.
Reading GSM 6.10 files now seems to work.
2000-01-03 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Added more error reporting in read_fmt_chunk().
1999-12-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sfinfo.c
Modified program to accept multiple filenames from the command line.
1999-11-27 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav_ima_adpcm.c
Moved code around in preparation to adding ability to read/write IMA ADPCM
encoded AIFF files.
1999-11-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.c
Fixed put_int() and put_short() macros used by _psf_hprintf() which were
causing seg. faults on Sparc Solaris.
1999-11-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.c
Added string.h to includes. Thanks to Sigbjxrn Skjfret.
* src/svx.c
Fixed __svx_close() function to ensure FORM and BODY chunks are correctly
set.
1999-10-01 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/au.c
Fixed handling of incorrect size field in AU header on read. Thanks to
Christoph Lauer for finding this problem.
1999-09-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c
Fixed a bug with incorrect SSND chunk length being written. This also lead
to finding an minor error in AIFF header parsing. Thanks to Dan Timis for
pointing this out.
1999-09-24 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/paf.c
Fixed a bug with reading and writing 24 bit stereo PAF files. This problem
came to light when implementing tests for the new functions which operate
in terms of frames rather than items.
1999-09-23 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Modified file type detection to use first 12 bytes of file rather than
file name extension. Required this because NIST files use the same
filename extension as Microsoft WAV files.
* src/sndfile.c src/sndfile.h
Added short, int and double read/write functions which work in frames
rather than items. This was originally suggested by Maurizio Umberto
Puxeddu.
1999-09-22 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/svx.c
Finished off implementation of write using __psf_hprintf().
1999-09-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h
Added a buffer to SF_PRIVATE for writing the header. This is required
to make generating headers for IFF/SVX files easier as well as making
it easier to do re-write the headers which will be required when
sf_rewrite_header() is implemented.
* src/common.c
Implemented __psf_hprintf() function. This is an internal function
which is documented briefly just above the code.
1999-09-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Fixed a bug in sf_write_raw() where it was returning incorrect values
(thanks to Richard Dobson for finding this one). Must put in a test
routine for sf_read_raw and sf_write_raw.
* src/aiff.c
Fixed default FORMsize in __aiff_open_write ().
* src/sndfile.c
Added copy of filename to internal data structure. IFF/SVX files
contain a NAME header chunk. Both sf_open_read() and sf_open_write()
copy the file name (less the leading path information) to the
filename field.
* src/svx.c
Started implementing writing of files.
1999-08-04 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/svx.c
New file for reading/writing 8SVX and 16SVX files.
* src/sndfile.[ch] src/common.h
Changes for SVX files.
* src/aiff.c
Fixed header parsing when unknown chunk is found.
1999-08-01 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/paf.c
New file for reading/writing Ensoniq PARIS audio file format.
* src/sndfile.[ch] src/common.h
Changes for PAF files.
* src/sndfile.[ch]
Added stuff for sf_get_lib_version() function.
1999-07-31 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h MacOS/config.h
Fixed minor MacOS configuration issues.
1999-07-30 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* MacOS/
Added a new directory for the MacOS config.h file and the
readme file.
* src/aiff.c
Fixed calculation of datalength when reading SSND chunk. Thanks to
Sigbjrn Skjret for pointing out this error.
1999-07-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c src/sndfile.h src/raw.c
Further fixing of #includes for MacOS.
1999-07-25 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c src/aiff.c
Added call to ferror () in main header parsing loop of __XXX_open_read
functions. This should fix problems on platforms (MacOS, AmigaOS) where
fseek()ing or fread()ing beyond the end of the file puts the FILE*
stream in an error state until clearerr() is called.
* tests/write_read_test.c
Added tests for RAW header-less PCM files.
* src/common.h
Moved definition of struct tribyte to pcm.c which is the only place
which needs it.
* src/pcm.c
Modified all code which assumed sizeof (struct tribyte) == 3. This code
did not work on MacOS. Thanks to Ben "Jacobs" for pointing this out.
* src/au.c
Removed <sys/stat.h> from list of #includes (not being used).
* src/sndfile.c
Added MacOS specific #ifdef to replace <sys/stat.h>.
* src/sndfile.h
Added MacOS specific #ifdef to replace <sys/stat.h>.
* src/sndfile.h
Added MacOS specific typedef for off_t.
* MacOS-readme.txt
New file with instructions for building libsndfile under MacOS. Thanks
to Ben "Jacobs" for supplying these instructions.
1999-07-24 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.in
Removed sndfile.h from generated file list as there were no longer
any autoconf substitutions being made.
* src/raw.c
New file for handling raw header-less PCM files. In order to open these
for read, the user must specify format, pcmbitwidth and channels in the
SF_INFO struct when calling sf_open_read ().
* src/sndfile.c
Added support for raw header-less PCM files.
1999-07-22 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* examples/sfinfo.c
Removed options so the sfinfo program always prints out all the information.
1999-07-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/alaw.c
New file for A-law encoding (similar to u-law).
* tests/alaw_test.c
New test program to test the A-law encode/decode lookup tables.
* tests/lossy_comp_test.c
Added tests for a-law encoded WAV, AU and AULE files.
1999-07-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c src/au.c
Removed second "#include <unistd.h>". Thanks to Ben "Jacobs" for pointing
this out.
1999-07-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/ulaw_test.c
New test program to test the u-law encode/decode lookup tables.
1999-07-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.h
Made corrections to comments on the return values from sf_seek ().
* src/sndfile.c
Fixed boundary condition checking bug and accounting bug in sf_read_raw ().
1999-07-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/au.c src/ulaw.c
Finished implementation of u-law encoded AU files.
* src/wav.c
Implemented reading and writing of u-law encoded WAV files.
* tests/
Changed name of adpcm_test.c to lossy_comp_test.c. This test program
will now be used to test Ulaw and Alaw encoding as well as APDCM.
Added tests for Ulaw encoded WAV files.
1999-07-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/adpcm_test.c
Initialised amp variable in gen_signal() to remove compiler warning.
1999-07-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c
In __aiff_open_read () prevented fseek()ing beyond end of file which
was causing trouble on MacOS with the MetroWerks compiler. Thanks to
Ben "Jacobs" for pointing this out.
*src/wav.c
Fixed as above in __wav_open_read ().
1999-07-01 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav_ms_adpcm.c
Implemented MS ADPCM encoding. Code cleanup of decoder.
* tests/adpcm_test.c
Added tests for MS ADPCM WAV files.
* src/wav_ima_adpcm.c
Fixed incorrect parameter in call to srate2blocksize () from
__ima_writer_init ().
1999-06-23 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/read_seek_test.c
Added test for 8 bit AIFF files.
1999-06-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/write_read_test.c
Removed test for IMA ADPCM WAV files which is now done in adpcm_test.c
* configure.in
Added -Wconversion to CFLAGS.
* src/*.c tests/*.c examples/*.c
Fixed all warnings resulting from use of -Wconversion.
1999-06-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Added fact chunk handling on read and write for all non WAVE_FORMAT_PCM
WAV files.
* src/wav_ima.c
Changed block alignment to be dependant on sample rate. This should make
WAV files created with libsndfile compatible with the MS Windows media
players.
* tests/adpcm_test.c
Reimplemented adpcm_test_short and implemented adpcm_test_int and
adpcm_test_double.
Now have full testing of IMA ADPCM WAV file read, write and seek.
1999-06-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav_float.c
Fixed function prototype for x86f2d_array () which was causing ocassional
seg. faults on Sparc Solaris machines.
1999-06-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c
Fixed bug in __aiff_close where the length fields in the header were
not being correctly calculated before writing.
* tests/write_read_test.c
Modified to detect the above bug in WAV, AIFF and AU files.
1999-06-12 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* Win32/*
Added a contribution from Albert Faber to allow libsndfile to compile
under Win32 systems. libsndfile will now be used as part of LAME the
the MPEG 1 Layer 3 encoder (http://internet.roadrunner.com/~mt/mp3/).
1999-06-11 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.in
Changed to reflect previous changes.
* src/wav_ima_adpcm.c
Fixed incorrect calculation of bytespersec header field (IMA ADPCM only).
Fixed bug when writing from int or double data to IMA ADPCM file. Will need
to write test code for this.
Fixed bug in __ima_write () whereby the length of the current block was
calculated incorrectly. Thanks to Jongcheon Park for pointing this out.
1999-03-27 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/*.c
Changed all read/write/lseek function calls to fread/fwrite/
fseek/ftell and added error checking of return values from
fread and fwrite in critical areas of the code.
* src/au.c
Fixed incorrect datasize element in AU header on write.
* tests/error_test.c
Add new test to check all error values have an associated error
string. This will avoid embarrassing real world core dumps.
1999-03-23 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c src/aiff.c
Added handling for unknown chunk markers in the file.
1999-03-22 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Filled in missing error strings in SndfileErrors array. Missing entries
can cause core dumps when calling sf_error-str (). Thanks to Sam
<mrsam at-sign geocities.com> for finding this problem.
1999-03-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav_ima_adpcm.c
Work on wav_ms_adpcm.c uncovered a bug in __ima_read () when reading
stereo files. Caused by not adjusting offset into buffer of decoded
samples for 2 channels. A similar bug existed in __ima_write ().
Need a test for stereo ADPCM files.
* src/wav_ms_adpcm.c
Decoder working correctly.
1999-03-18 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.in Makefile.am
Added --enable-justsrc configuration variable sent by Sam
<mrsam at-sign geocities.com>.
* src/wav_ima_adpcm.c
Fixed bug when reading beyond end of data section due to not
checking pima->blockcount.
This uncovered __ima_seek () bug due to pima->blockcount being set
before calling __ima_init_block ().
1999-03-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Started implementing MS ADPCM decoder.
If file is WAVE_FORMAT_ADPCM and length of data chunk is odd, this
encoder seems to add an extra byte. Why not just give an even data
length?
1999-03-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Split code out of wav.c to create wav_float.c and wav_ima_adpcm.c.
This will make it easier to add and debug other kinds of WAV files
in future.
1999-03-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/
Added adpcm_test.c which implements test functions for
IMA ADPCM reading/writing/seeking etc.
* src/wav.c
Fixed many bugs in IMA ADPCM encoder and decoder.
1999-03-11 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Finished implementing IMA ADPCM encoder and decoder (what a bitch!).
1999-03-03 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/wav.c
Started implementing IMA ADPCM decoder.
1999-03-02 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c
Fixed bug where the sf_read_XXX functions were returning a
incorrect read count when reading past end of file.
Fixed bug in sf_seek () when seeking backwards from end of file.
* tests/read_seek_test.c
Added multiple read test to short_test(), int_test () and
double_test ().
Added extra chunk to all test WAV files to test that reading
stops at end of 'data' chunk.
1999-02-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/write_read_test.c
Added tests for little DEC endian AU files.
* src/au.c
Add handling for DEC format little endian AU files.
1999-02-20 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c src/au.c src/wav.c
Add __psf_sprintf calls during header parsing.
* src/sndfile.c src/common.c
Implement sf_header_info (sndfile.c) function and __psf_sprintf (common.c).
* tests/write_read_test.c
Added tests for 8 bit PCM files (WAV, AIFF and AU).
* src/au.c src/aiff.c
Add handling of 8 bit PCM data format.
* src/aiff.c
On write, set blocksize in SSND chunk to zero like everybody else.
1999-02-16 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/pcm.c:
Fixed bug in let2s_array (cptr was not being initialised).
* src/sndfile.c:
Fixed bug in sf_read_raw and sf_write_raw. sf_seek should
now work when using these functions.
1999-02-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/write_read_test.c:
Force test_buffer array to be double aligned. Sparc Solaris
requires this.
1999-02-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/pcm.c:
Fixed a bug which was causing errors in the reading
and writing of 24 bit PCM files.
* doc/api.html
Finished of preliminary documentaion.
1999-02-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/aiff.c:
Changed reading of 'COMM' chunk to avoid reading an int
which overlaps an int (4 byte) boundary.
|