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
|
2008-04-07 23:05 thor
* tags/1.4.1: taggin 1.4.1
2008-04-07 23:04 thor
* trunk/NEWS, trunk/configure.ac: Calling this 1.4.1.
2008-04-07 23:03 thor
* trunk/src/mpg123.c: Fix terminal again... there was a
term_restore() left where it should not be. This was the
quick-shot regression bug 1936548
2008-04-06 23:41 thor
* trunk/src/audio.c: Fix that info line... forgot the name!
2008-04-06 23:30 thor
* trunk/NEWS: The forgotten NEWS update for 1.4.0 .
2008-04-06 22:58 thor
* trunk/src/audio.c: More useful output module error message.
2008-04-06 22:48 thor
* trunk/src/output/alsa.c: Make ALSA silent when desired (probing).
2008-04-06 22:25 thor
* trunk/src/output/alsa.c, trunk/src/output/oss.c: Make OSS and
Alsa (partly silent) when probing. Alsa needs some change to
make the library silent...
2008-04-06 22:24 thor
* trunk/src/audio.c: clear the quietness flag after probing output
2008-04-06 22:11 thor
* trunk/src/audio.c, trunk/src/audio.h: - Fix nasty segfault when
no working module was found (ao = NULL !!!). - Introduce silent
init for probing.
2008-04-06 21:35 thor
* trunk/src/output/arts.c: Fail correctly when there is no arts.
2008-04-06 20:50 thor
* trunk/src/libmpg123/readers.c: A bit more EOF safety in
skip_bytes; clearness.
2008-04-04 11:59 thor
* trunk/src/libmpg123/readers.c: Avoid a size 0 read in ICY
parser... that triggered EOF now.
2008-04-04 10:26 thor
* trunk/src/mpg123.c: Enable interrupt within loop where the track
loading failes (which would be annoying with --loop -1, in
particular), further thoughts about cleanup of that SIGINT
business.
2008-04-04 09:46 thor
* trunk/src/libmpg123/readers.c: fixing an endless loop in ICY
reader when stream actually ends in EOF and not with an error...
duh
2008-04-01 19:55 thor
* trunk/NEWS, trunk/configure.ac, trunk/man1/mpg123.1: Update
stuff for 1.4.0 release.
2008-04-01 19:54 thor
* trunk/src/libmpg123/readers.c: Cleanup with regard to error
messages.
2008-04-01 19:51 thor
* trunk/src/libmpg123/dnoise.c: Add that f to the float
constants... makes some compilers happy.
2008-03-21 22:04 thor
* trunk/configure.ac: Now building the list of all (useful)
compiled modules into mpg123 as default list to try. That
finally does "just play" whether I got alsa or oss drivers
loaded without fuzz (apart from alsa error messages).
2008-03-21 21:46 thor
* trunk/src/audio.c: Following the idea of
http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/mpg123-no-la.patch
(bug 1910500): Implement a search for working output modules,
extending the original idea to a runtime check (opening the
device). Now you can give mpg123 a list of output modules from
which it chooses the first working one.
2008-03-21 21:44 thor
* trunk/src/module.c: Name the module in loading error message.
2008-03-21 21:34 thor
* trunk/src/playlist.c: Need time.h .
2008-03-21 21:31 thor
* trunk/src/output/oss.c: Last time: debug.h!
2008-03-21 21:29 thor
* trunk/src/output/jack.c: Here, too, include debug.h .
* trunk/src/output/aix.c, trunk/src/output/alib.c,
trunk/src/output/alsa.c, trunk/src/output/alsa05.c,
trunk/src/output/arts.c, trunk/src/output/coreaudio.c,
trunk/src/output/dummy.c, trunk/src/output/esd.c,
trunk/src/output/hp.c, trunk/src/output/libao.c,
trunk/src/output/mint.c, trunk/src/output/nas.c,
trunk/src/output/os2.c, trunk/src/output/portaudio.c,
trunk/src/output/sdl.c, trunk/src/output/sgi.c,
trunk/src/output/sun.c, trunk/src/output/win32.c: include
debug.h explicitly
2008-03-21 20:19 thor
* trunk/src/output/dummy.c: Don't warn on dummy output usage...
may be intentional.
2008-03-20 13:55 thor
* trunk/src/audio.c, trunk/src/buffer.c, trunk/src/common.c,
trunk/src/control_generic.c, trunk/src/getlopt.c,
trunk/src/httpget.c, trunk/src/id3print.c,
trunk/src/legacy_module.c, trunk/src/libmpg123/decode_ntom.c,
trunk/src/libmpg123/format.c, trunk/src/libmpg123/frame.c,
trunk/src/libmpg123/id3.c, trunk/src/libmpg123/layer3.c,
trunk/src/libmpg123/libmpg123.c,
trunk/src/libmpg123/mpg123lib_intern.h,
trunk/src/libmpg123/parse.c, trunk/src/libmpg123/readers.c,
trunk/src/libmpg123/stringbuf.c, trunk/src/libmpg123/system.c,
trunk/src/libmpg123/tabinit.c, trunk/src/module.c,
trunk/src/mpg123.c, trunk/src/mpg123app.h, trunk/src/playlist.c,
trunk/src/term.c, trunk/src/wav.c, trunk/src/xfermem.c: Update
some copyright years.
2008-03-20 13:51 thor
* trunk/src/audio.c, trunk/src/buffer.c, trunk/src/common.c,
trunk/src/control_generic.c, trunk/src/getlopt.c,
trunk/src/httpget.c, trunk/src/id3print.c,
trunk/src/legacy_module.c, trunk/src/libmpg123/decode_ntom.c,
trunk/src/libmpg123/format.c, trunk/src/libmpg123/frame.c,
trunk/src/libmpg123/id3.c, trunk/src/libmpg123/layer3.c,
trunk/src/libmpg123/libmpg123.c,
trunk/src/libmpg123/mpg123lib_intern.h,
trunk/src/libmpg123/parse.c, trunk/src/libmpg123/readers.c,
trunk/src/libmpg123/stringbuf.c, trunk/src/libmpg123/system.c,
trunk/src/libmpg123/tabinit.c, trunk/src/module.c,
trunk/src/mpg123.c, trunk/src/mpg123app.h, trunk/src/playlist.c,
trunk/src/term.c, trunk/src/wav.c, trunk/src/xfermem.c: Ensure
that debug.h is included after any system headers. There may be
funny conflicts with my generic macro names.
2008-03-19 23:52 thor
* trunk/src/libmpg123/readers.c: Be paranoid, include the headers
for select() even when not needed on my system.
2008-03-19 23:46 thor
* trunk/src/common.c, trunk/src/control_generic.c,
trunk/src/libmpg123/parse.c, trunk/src/libmpg123/readers.c,
trunk/src/mpg123.c, trunk/src/mpg123app.h, trunk/src/playlist.c,
trunk/src/term.c, trunk/src/xfermem.c: Removed some unnecessary
#includes; centralized some in mpg123app.h Still not sure about
where readers.c gets its definition for select() from.
2008-03-19 23:23 thor
* trunk/src/libmpg123/dnoise.c: Making dnoise a bit smaller by
omitting leading zeros. Still, wondering if computation at
runtime would be such a bad thing.
2008-03-11 22:26 thor
* trunk/xmms2-plugin/mpg123/mpg123.c: Style fixes in xmms2 plugin
+ removal of metadata handling.
2008-03-08 20:37 thor
* trunk/NEWS, trunk/configure.ac: We're at 1.3.1 and have some
NEWS (backmerge from the tag).
2008-03-08 20:06 thor
* trunk/src/term.c: A note about the limit of terminal controlled
pitch.
2008-03-08 19:50 thor
* trunk/src/output/alsa.c: Omit the xfer_align call only when alsa
lib is at least 1.0.16, where the function is deprecated. This
is no guarantee for --enable-nagging builds to succeed; it just
happens to work now on my laptop with alsa-lib 1.0.16. It
doesn't work on that other box with 1.0.15, where the alloca fun
triggers a warning. Anyhow, hope to fix bug 1908603 for the poor
souls with old alsa libs (old meaning: half a year old) where
the xfer_align setting may be crucial.
2008-03-08 19:40 thor
* trunk/src/libmpg123/readers.c: superfluous debugging code
2008-03-08 08:58 thor
* trunk/src/audio.c, trunk/src/audio.h, trunk/src/mpg123.c,
trunk/src/mpg123app.h, trunk/src/term.c, trunk/src/term.h:
Reacting to a wish list item... and adding a kinda cool feature
there: A --pitch parameter as well as interactive terminal
control for playback speed control via the output (hardware)
sample rate. I first considered using the software "resampling"
of libmpg123 but this way it has the best possible quality and
the least cpu impact (that is, basically none;-). It is the
mpg123 way! Plus, if your hardware doesn't support many rates or
you really, really want your CPU do the work, just use an output
module like alsa with default (plughw) device or portaudio that
will do the resampling in software. That being said... I just
found out that my laptop's sound chip can actually do a bit more
than 48000Hz;-)
2008-03-08 08:52 thor
* trunk/src/term.c: Also apply the terminal verbosity setting to
the library.
2008-03-02 22:31 thor
* trunk/Makefile.am: omit dirs from Makefile.am
2008-03-02 22:23 thor
* trunk/INSTALL, trunk/Makefile.am, trunk/NEWS, trunk/ports,
trunk/ports/MSVC++, trunk/ports/MSVC++/INCLUDE,
trunk/ports/MSVC++/INCLUDE/CORE,
trunk/ports/MSVC++/INCLUDE/CORE/CORE_FileIn.H,
trunk/ports/MSVC++/INCLUDE/CORE/SourceFilter_MP3.H,
trunk/ports/MSVC++/INCLUDE/IIEP_Def.H,
trunk/ports/MSVC++/INCLUDE/IIEP_FileIn.H,
trunk/ports/MSVC++/README, trunk/ports/MSVC++/SOURCE,
trunk/ports/MSVC++/SOURCE/CORE_FileIn.CPP,
trunk/ports/MSVC++/SOURCE/CORE_Log.CPP,
trunk/ports/MSVC++/SOURCE/CORE_Mutex.CPP,
trunk/ports/MSVC++/SOURCE/SourceFilter_MP3Stream.CPP,
trunk/ports/MSVC++/libMPG123,
trunk/ports/MSVC++/libMPG123/PLACE_LIBMPG123_SOURCES_HERE,
trunk/ports/MSVC++/libMPG123/libMPG123.vcproj,
trunk/ports/README, trunk/ports/Sony_PSP,
trunk/ports/Sony_PSP/Makefile.psp, trunk/ports/Sony_PSP/README,
trunk/ports/Sony_PSP/config.h,
trunk/ports/Sony_PSP/readers.c.patch, trunk/ports/mpg123_.pas:
Including the ports/bindings that threatened to collect dust in
my mailbox.
2008-03-02 22:22 thor
* trunk/NEWS: More news for 1.3.0.
2008-03-02 21:34 thor
* trunk/NEWS, trunk/TODO, trunk/src/libmpg123/id3.c: Fix that
memory leak.
2008-03-02 17:04 thor
* trunk/NEWS, trunk/NEWS.libmpg123: News for 1.3.0.
2008-03-02 16:56 thor
* trunk, trunk/configure.ac, trunk/src/libmpg123/mpg123.h.in,
trunk/src/libmpg123/reader.h, trunk/src/libmpg123/readers.c,
trunk/src/mpg123.c: This is my weekend again... hacking to make
http streaming work better. - Added MPG123_SEEKBUFFER flag,
triggering re-use of the feeder bufferchain code to enable some
peek-ahead on non-seekable streams. - During hacking and finally
found where the ICY code went wrong (especially seen with big
buffer): The ICY reader didn't care for read() returning some
but less than the wanted bytes. Shame on me! A test looks good
for now... going to close that memleak and make 1.3.0 tonight.
2008-03-02 14:02 thor
* trunk/xmms2-plugin/mpg123/mpg123.c: Big diff just for whitespace
in "function (parm)", xmms2 coding style.
2008-03-02 13:49 thor
* trunk/xmms2-plugin/mpg123/mpg123.c: adding xmms magic to make
streaming work
2008-03-02 13:27 thor
* trunk/src/libmpg123/parse.c: - Report zero time/frames left for
non-seekable streams (without warning). - Ensure that you at
least get MPG123_ERR_READER when read_frame goes wrong (error:
no error is too confusing;-).
2008-03-02 01:02 thor
* trunk/TODO: Added note about that memleak.
2008-03-02 00:58 thor
* trunk/src/libmpg123/libmpg123.c, trunk/src/libmpg123/parse.c,
trunk/src/libmpg123/reader.h, trunk/src/libmpg123/readers.c:
Spell out the buffer chain which was embedded in the feeder
code; going to re-use it as input buffer for supporting frame
sync check wich peek-ahead for non-seeable streams.
2008-03-02 00:55 thor
* trunk/src/output/alsa.c: There's a deprecated ALSA API
function... shrugging and removing the call. Still gives sound,
eh?
2008-03-01 14:01 thor
* trunk/src/libmpg123/id3.c, trunk/src/term.c: Code niceness fixes.
2008-03-01 13:11 thor
* trunk/TODO_1.0: That TODO is outdated.
2008-03-01 10:19 thor
* trunk/src/libmpg123/layer3.c: Make that mask shift in
III_dequantize_sample safe (from mhipp rev 43).
2008-03-01 10:14 thor
* trunk/src/libmpg123/layer3.c: The "r0c/r1c > 22 fix" from mhipp
rev 51.
2008-03-01 10:07 thor
* trunk/src/libmpg123/layer3.c: Importing the layer table change
from mhipp rev 51; that fixes the sizzling of bug 1895025.
2008-03-01 10:03 thor
* trunk/src/libmpg123/id3.c: Another safeguard against too _large_
claimed frame sizes.
2008-02-29 22:32 thor
* trunk/src/libmpg123/id3.c: Fixing a crash in the ID3v2 parser
with _really_ small (invalid) comment/text frame length values.
2008-02-26 09:02 thor
* trunk/configure.ac, trunk/man1/mpg123.1, trunk/src/mpg123.c,
trunk/src/mpg123app.h: adding --smooth, which is a new
user-visible feature, so heading for 1.3.0
2008-02-25 23:29 thor
* trunk/NEWS: update NEWS for a possible 1.2.2 release
2008-02-25 23:25 thor
* trunk/src/mpg123.c: ICY stuff: Always clear htd on open_track,
print ICY-NAME and ICY-URL after loading as mpg123-0.6x did it.
2008-02-25 23:24 thor
* trunk/src/libmpg123/parse.c: Gah, forgot a { , breaking
compilation for the last few days.
2008-02-20 10:02 thor
* trunk/configure.ac: May become version 1.2.2 (maybe will add the
smooth buffer feature for less interrupted streaming reconnects).
2008-02-20 10:00 thor
* trunk/configure.ac, trunk/src/libmpg123/parse.c: libmpg123
1.3.1: Don't try to resync on ICY streams (mpg123 --loop -1 does
a good job on unreliable connections, reconnect to server
instead of fiddling helplessly in the data.
2008-02-19 22:26 thor
* trunk/NEWS, trunk/configure.ac: Preparing for 1.2.1 release.
2008-02-19 11:48 thor
* trunk/src/mpg123.c: Fixing the loosing of freshness for a track
when we seem to jump over the start_frame for some reason. This
was the cause for no verbose info being printed for some
internet streams... stream was always treated as fresh file
(before reaching first frame to be actually played). Now isn't
there some bug behind that in libmpg123 that causes the first
frame number for mpg123 to be 2, for example, instead of 0?
2008-02-11 01:58 thor
* trunk/src/audio.c: Add an output write loop to handle
SIGSTOP/CONT operation (bug 1890563).
2008-02-08 10:07 thor
* trunk/src/libmpg123/parse.c: A hack to loosen stream check
strictness... discarding the first header on resync. That at
least enables playback of the test file of bug 1889051 ... but
may introduce other false positives again. Actually, the problem
of 1889051 is a false positive for the fist header; which
_passes_ the text for a following valid header after that frame.
What a coincidence... Should I test for the next 2 frames?
MPlayer doesn't show the short distortion that mpg123 shows in
decoding the first (invalid, but strangely decodable) frame.
Guess the best to do is to finally rewrite that frame
reading/searching function to be more consistent and tunable for
- bytes of junk to skip - resync limit (we have that already) -
number of frames/headers readahead for assuring a valid stream I
would like to have a 1.2.1 release with just the last bugfix
(endless loop in resync) and perhaps a variant of the current
hack after I spent some more thought and testing on it (does
mpg123 still pass the nasty test files that made me make the
resync that strickt?). Then, for 1.3.0, the tunable resync
should enter the scene.
2008-02-07 17:12 thor
* trunk/NEWS, trunk/configure.ac, trunk/src/libmpg123/parse.c: fix
resync with free format headers in there... header_check did not
fail for them, though we do not support free format
2008-02-03 12:57 thor
* trunk/AUTHORS: complete name of Michael in AUTHORS
2008-01-31 21:21 thor
* trunk/NEWS, trunk/src/common.c: OK, another late change for
1.2.0 ... fix mpg123 -v on Win32 (an #ifndef missing for
select() on stderr).
2008-01-30 23:52 thor
* trunk/AUTHORS, trunk/Makefile.am, trunk/NEWS,
trunk/NEWS.libmpg123, trunk/doc/THANKS, trunk/man1/mpg123.1: The
documentation stuff for 1.2.0 ... forgot it earlier.
2008-01-30 22:48 thor
* trunk/autogen.sh, trunk/configure.ac: Fixing build on Win32 with
correct buffer disabling in configure and also generating the
mpg123.spec directly in autogen.sh (prevent regeneration by
configure). This is version 1.2.0 of mpg123...
2008-01-30 22:44 thor
* trunk/src/mpg123.c: Let the library paremeter error message
indicate the parameter setting that failed by number.
2008-01-27 18:47 thor
* trunk/NEWS.libmpg123: A separate file to have overview on
libmpg123 changes.
2008-01-27 18:36 thor
* trunk/src/libmpg123/frame.h, trunk/src/libmpg123/optimize.h:
Ahem, _now_ remove the redundant optimize stuff from frame.h .
2008-01-27 18:35 thor
* trunk/src/mpg123.c: Regression fix: Ignore premature end of
audio flushing when we got SIGINT (that showed in error/quit
with OSS output on Ctrl+C instead of going to next track).
2008-01-27 13:55 thor
* trunk/Makefile.am, trunk/mpg123.spec.in: RPM stuff: - Do not
distribute the preliminary fedora spec file... it's outdated and
any additional spec file confuses rpmbuild. - Remove specific
BuildPrereq for making it "just work" on SuSE (in case the
unnamed prereq is met...). - Do not force default output to
alsa, as alsa may not be built! Automatic selection works (worst
case on linux is OSS).
2008-01-27 12:38 thor
* trunk, trunk/mpg123.spec.in: Really adding that spec file.
2008-01-27 12:33 thor
* trunk/Makefile.am, trunk/configure.ac: Add Michael's generic
mpg123.spec.in .
2008-01-27 12:32 thor
* trunk/src/audio.c: Initialize ao->is_open also for fake modules.
2008-01-27 10:16 thor
* trunk/configure.ac: Replace AC_TYPE_ macros with direct calls to
AC_CHECK_TYPE, to get some easy compatibility with older
autoconf.
2008-01-27 10:14 thor
* trunk/src/libmpg123/Makefile.am: Adding i486 files to
Makefile.am so that they are indeed in the distribution (bug
1879274).
2008-01-27 10:08 thor
* trunk/configure.ac, trunk/src/libmpg123/decode_i386.c,
trunk/src/libmpg123/frame.h, trunk/src/libmpg123/optimize.h: Fix
i486 build for not claiming i386 decoder support, removing the
redundant optimization definitions from frame.h along the way.
2008-01-26 15:33 thor
* trunk/configure.ac, trunk/doc/examples/scan.c,
trunk/src/libmpg123/Makefile.am, trunk/src/libmpg123/frame.c,
trunk/src/libmpg123/frame.h, trunk/src/libmpg123/libmpg123.c,
trunk/src/libmpg123/mpg123.h.in, trunk/src/libmpg123/parse.c,
trunk/src/mpg123.c, trunk/src/mpg123app.h: Initializing
framesize (as pointed out by "Gates Fan"). Adding resync limit
as tunable parameter, with possible setting to -1 to scan
through all available data for next valid MPEG frame.
2008-01-26 14:44 thor
* trunk/src/Makefile.am: %-style patterns rules are a GNU make
extension... so make it compatible.
2008-01-18 13:36 thor
* trunk/Makefile.am: adding autogen.sh to distribution
2008-01-16 17:31 thor
* trunk/Makefile.am: remove dead entries for rpm spec
2008-01-16 17:17 thor
* trunk/rpm/fedora4/mpg123-1.0.1.spec: another RPM spec fix
2008-01-16 17:16 thor
* trunk/rpm/fedora4/mpg123-1.0.1-3.spec,
trunk/rpm/fedora4/mpg123-1.0.1.spec: another one
2008-01-16 17:15 thor
* trunk/rpm/fedora4/mpg123-1.0.1-2.spec,
trunk/rpm/fedora4/mpg123-1.0.1.spec: Putting the versions
together.
2008-01-16 17:14 thor
* trunk/configure.ac: Accept --with-audio=foo,bar,bang just as
well as --with-audio="foo bar bang".
2008-01-16 17:13 thor
* trunk/configure.ac, trunk/src/Makefile.am: Remove the special
handling of pkglibdir in configure.ac and let the Makefile
define PKGLIBDIR instead in AM_CPPFLAGS. That is less error
prone and lets the automagic properly work out pkglibdir.
Hopefully it fixes the RPM build problems on fedora... not
entirely sure what kind of build they actually do.
2008-01-16 11:06 thor
* trunk/Makefile.am, trunk/configure.ac: The next dev vesion...
with the forgotten rpm spec files...
2008-01-15 02:19 thor
* trunk/NEWS, trunk/README, trunk/configure.ac: Prepare for 1.1.0
release.
2008-01-15 02:13 thor
* trunk/rpm, trunk/rpm/fedora4, trunk/rpm/fedora4/README,
trunk/rpm/fedora4/mpg123-1.0.1-2.spec,
trunk/rpm/fedora4/mpg123-1.0.1-3.spec,
trunk/rpm/fedora4/mpg123-1.0.1.spec: Store Michael's (not
Hipp;-) attempts at fedore RPMs.
2008-01-13 14:34 thor
* trunk/src/mpg123.c: Soften the -q option: Now you are able to
increase verbosity after -q again: mpg123 -v -v -v -q is silent,
while mpg123 -v -v -q -v still gives progress display.
2008-01-01 16:19 thor
* trunk/src/term.c, trunk/src/term.h: A tribute to the commands
that can obliterate your screen (or the idea of running mpg123
-q -C): - key for printing ID3 tag info ([t]) - key for printing
MPEG frame header info ([m])
2008-01-01 16:06 thor
* trunk/src/mpg123.c: Allow enabling of progress display in
terminal even when -q was given on command line.
2008-01-01 15:41 thor
* trunk/src/mpg123.c, trunk/src/mpg123app.h, trunk/src/playlist.c,
trunk/src/playlist.h, trunk/src/term.c, trunk/src/term.h: More
fun at the terminal: - key for going to previous track ([d],
because it's left of [f] usually... this is a place where a
config file makes sense). - key for printing current playlist -
some modifications in main player and playlist code to support
this
2007-12-30 16:31 thor
* trunk/src/libmpg123/id3.c: Really stop tag parsing when reaching
padding. Immediately.
2007-12-30 16:11 thor
* trunk/src/libmpg123/id3.c: More quietness in id3.c .
2007-12-30 15:57 thor
* trunk/src/libmpg123/id3.c, trunk/src/libmpg123/parse.c: More
robust ID3v2 support; On parse error in tag, the parsing of the
tag just stops -- not the MPEG parsing! The tag parsing function
shall now return: <0 for read errors only (possibly just need
feed) 0 for unparseable tag (no new info) >0 for at least some
successfully parsed info (even partial)
2007-12-28 19:16 thor
* trunk/NEWS, trunk/src/libmpg123/parse.c: - more on demand
verbosity in parser (lame/xing/info tag) - update NEWS for next
feature release
2007-12-28 18:18 thor
* trunk/xmms2-plugin/mpg123/mpg123.c: Cleaning up the XMMS2 plugin
a bit... preparing for submitting it to them.
2007-12-28 14:32 thor
* trunk/configure.ac: Introducing a scheme: The SVN trunk is the
development version for 1.1.0 release (1.1.0-dev).
2007-12-28 14:31 thor
* trunk/NEWS, trunk/src/audio.c, trunk/src/module.c: Merge more
module loader safety changes from 1.0.1 release: - Check for
failure of getting working dir or module dir. - Fix the module
loading error check in audio.c to catch it at the right time.
2007-12-28 13:57 thor
* trunk/src/module.c: What a bug! The increased path buffer has
not been stored in the path buffer pointer! Of course that's
causing sf.net bug 1859413. So I finally got the view on my
blatant mistake as a late christmas gift.
2007-12-23 13:58 thor
* trunk/src/output/arts.c: the missing source!
2007-12-23 13:38 thor
* trunk/AUTHORS, trunk/configure.ac, trunk/src/output/Makefile.am:
Work on the next version begins... initial aRts support now.
2007-12-23 11:32 thor
* trunk/NEWS: Late NEWS.
2007-12-23 11:31 thor
* trunk/src/Makefile.am, trunk/src/output/Makefile.am: Late fix:
Make VPATH builds find the mpg123.h in the build directory.
2007-12-23 11:03 thor
* trunk/NEWS, trunk/configure.ac: Going to be 1.0.0!
* trunk/man1/mpg123.1: Updated the man page with some command line
parameters.
2007-12-23 10:35 thor
* trunk/doc/README.remote, trunk/src/control_generic.c: Update
remote control doc and push version of interface to v3.
2007-12-23 10:08 thor
* trunk/configure.ac: Streamline the (experimental) floating point
decoder by dropping modules as no normal output modules supports
float as of now.
2007-12-23 09:52 thor
* trunk/configure.ac: Initialize pkgconfig before using in
configure, fixes some configs (unsurprisingly)...
2007-12-23 09:47 thor
* trunk/configure.ac: Fix copy'n'pase artifact in configure help
output (sse_alone).
2007-12-20 22:26 thor
* trunk/src/output/pulse.c: Ooops, in case of error, something
erroneous should be returned by pulse_write().
2007-12-20 22:20 thor
* trunk/src/output/pulse.c: Fix pulseaudio write function's return
value and, while being there also the initial open with default
audio format.
2007-12-18 10:30 thor
* trunk/NEWS, trunk/configure.ac: Going to be 1.0rc3 with updated
NEWS.
2007-12-18 10:25 thor
* trunk/src/libmpg123/parse.c, trunk/src/libmpg123/tabinit.c: Some
cleanup regarding QUIETness.
2007-12-18 10:18 thor
* trunk/src/libmpg123/getbits.c: Remove that file, it's unused and
distracts.
2007-12-18 10:14 thor
* trunk/src/libmpg123/id3.c: More verbosity on level 4: Tell about
ID3 encodings.
* trunk/AUTHORS: Added ravenexp for reworked win32 output.
2007-12-13 01:10 thor
* trunk/configure.ac: Disable buffer when compiling CoreAudio
directly into binary (not as module).
2007-12-10 00:51 thor
* trunk/configure.ac: It's rc3-dev now ... release on 3rd advent?
;-)
* trunk/TODO: Again: Try to note stuff to do _later_. 1.0 is first.
2007-12-10 00:50 thor
* trunk/src/output/jack.c: Fixing that one... The capabilities
inquiry does not work when the open function fails out on the
first one where native audio settings are required via format=-1
etc.!
2007-12-09 15:12 thor
* trunk/configure.ac: Naming it 1.0rc2.
2007-12-09 15:01 thor
* trunk/Makefile.am, trunk/NEWS, trunk/src/audio.c,
trunk/src/audio.h, trunk/src/buffer.c, trunk/src/mpg123.c,
trunk/src/xfermem.c, trunk/test/forkfaint.c: Completed the
output abstraction (also in buffer; also unified closing of
output stuff with exit_output). Made mpg123 check for errors in
output (while writing - so after _opening_ was successful) so
that it does't rage-decode in invalid files/pipes.
2007-12-09 13:01 thor
* trunk/src/mpg123.c: Those { } were imortant!
2007-12-09 12:48 thor
* trunk/src/mpg123.c: Include windows.h for Sleep().
2007-12-09 12:47 thor
* trunk/configure.ac: Disable modules per default on windows.
2007-12-09 03:12 thor
* trunk/src/audio.c: test and fix DNOXFERMEM
2007-12-09 03:07 thor
* trunk/src/audio.c, trunk/src/mpg123.c, trunk/src/mpg123app.h,
trunk/src/wav.c: Glue the wav/au/cdr and stdout writers to the
module structure; allowing integration with audio capabilities
and easier handling in mpg123 code. Plus, they now work again
after my output changes had ruled them out;-)
2007-12-08 15:10 thor
* trunk/NEWS: more news for 1.0rc2
2007-12-08 14:47 thor
* trunk/src/id3print.c: Wile being very overly careful on empty
ID3v2 data, I prevented ID3v1 from filling gaps! Now we have a
synthesis again.
2007-12-08 14:35 thor
* trunk/src/libmpg123/decode_ntom.c: Switch to SAFE_NTOM since I
really have seen the bad things that happen with 32bits integer
multiplication in the short formula. I had the good code
there... on 64bit arch, one may switch back to the unsafe
formula, but it remains theoretically unsafe.
2007-12-08 13:31 thor
* trunk/src/audio.c, trunk/src/buffer.c: Buffer now says "Hey" now
on succesful startup and the main process checks for that. A bad
audio module setting now has the expected result... abort at the
correct place.
2007-12-08 13:19 thor
* trunk/src/control_generic.c, trunk/src/mpg123.c: cleanup
2007-12-08 13:15 thor
* trunk/src/audio.c: remove that debugging line
2007-12-08 13:14 thor
* trunk/src/audio.c: Fix forced rate audio format detection...
result up to now was _no_ support detection at all because of
comparison of size_t with -1. Why the heck doesn't -Wall point
me at this?
2007-12-08 05:01 thor
* trunk/NEWS: More changes noted... hope to tag this 1.0rc2
tomorrow. This rc then really should only get fixes...
2007-12-08 04:58 thor
* trunk/src/control_generic.c: Added TAG command for retrieving
the whole lot of ID3v2 (and ID3v1 again) data. Updated help
text, applied the @H { ... @H } grouping like introduced for the
TAG.
2007-12-08 04:09 thor
* trunk/src/control_generic.c: Print full ID3v1.1 info and, a tad
more interesting, some ID3v2 data.
2007-12-08 04:07 thor
* trunk/src/libmpg123/libmpg123.c: The seek functions now all try
to init the track; so that for example mpg123_seek(mh, 0,
SEEK_SET) Can be used to scan to the first frame, possibly
finding ID3v2 and Lame tag info.
2007-12-08 03:24 thor
* trunk/NEWS: news for 1.0rc2
2007-12-08 03:11 thor
* trunk/src/audio.c, trunk/src/audio.h, trunk/src/mpg123.c:
complete the --delay
2007-12-08 03:00 thor
* trunk/src/term.c: some debugging removed
2007-12-08 02:51 thor
* trunk/TODO_1.0: Yes, the buffer stuff has been improved... that
leaves only the platform testing/fixing and that parallel make
thing on the list.
2007-12-08 02:50 thor
* trunk/TODO_1.1: Yeah, funny. Tried to have the discipline to
plan stuff for 1.1 before 1.0 is out. The improved buffer
interaction is there. Now.
2007-12-08 02:48 thor
* trunk/src/term.c: Remove the forced DEBUG. Done with that.
2007-12-08 02:46 thor
* trunk/src/mpg123.c, trunk/src/term.c: Fix buffer behaviour with
seeking, in the only way that seemed workable: When you press a
seek key in buffer mode, the buffer is stopped and you can seek
in peace to your position (makes most sense to have verbosity
turned on). After reaching the position, you have to press the
stop/un-stop key to restart playback. Seeking wile listening to
the bits passing by is really, really non-trivial with the
buffer because of the timing between keypress repeats and the
buffer refilling. When you want it really interactive, you don't
want to have the buffer in between... I think the current
solution is close to a local optimum for this, it's the tradeoff
you have to do. Even seeking _inside_ the buffer won't help
seeking backwards, as the refill would kick in in the same way.
2007-12-08 01:20 thor
* trunk/src/mpg123.c: Need to check command line parameters and
possibly give usage _before_ starting the output.
2007-12-08 01:16 thor
* trunk/src/audio.c, trunk/src/buffer.c, trunk/src/buffer.h,
trunk/src/control_generic.c, trunk/src/mpg123.c,
trunk/src/mpg123app.h, trunk/src/term.c, trunk/src/xfermem.c,
trunk/src/xfermem.h: More communicative buffer and normalized
usage of which. No nastly killing or SIGSTOP anymore; buffer
either plays or waits for commands, including termination. This
fixes the terminal behaviour with track skip and seek when
stopped: The buffer can be resynced while being stopped, so no
forced restart of playback on track skip anymore. The only
nagging usability issue remaining with the buffer is the
inability to seek while playing. Refilling of the buffer effects
in fast-forward only.
2007-12-08 01:11 thor
* trunk/src/libmpg123/stringbuf.c: remove a debugging line
2007-12-07 23:02 thor
* trunk/src/output/portaudio.c: A typo broke portaudio18 for me...
the undefined function was just a little compiler warning;
dynamic modules are a bit ignorant there. V18 works now (again),
v19 is bitching on my box, but I have a report that it works for
someone else.
2007-12-07 04:18 thor
* trunk/TODO_1.1: differe todo, now more on term.c with buffer
2007-12-07 03:43 thor
* trunk/src/output/portaudio.c: More compatibility hacking is
needed for portaudio19... there are some differing definitions.
The detection in configure works, the conditional compilation,
too -- but only portaudio v19 itself gives me the creeps. v18
works normally, v19 just wants to block or segfault on my box.
The segfaul is _inside_ portaudio:-/
2007-12-07 02:57 thor
* trunk/src/audio.c, trunk/src/audio.h, trunk/src/buffer.c,
trunk/src/mpg123.c, trunk/src/xfermem.h: Some audio handling
rework, mainly to clean up the mess with the buffer. The initial
reason was to install safeguards against multiple ao->close()
operations, which was done, too. Now either the buffer or the
main mpg123 process touch the audio devices; in the buffered
case the main program querying the buffer process for audio
capabilities. That and some other potential bug(s) fixed. This
is too much movement in a release candidate, but it is necessary
- we want some quality for 1.0!
2007-12-07 02:53 thor
* trunk/src/id3print.c: Do the check for NULL source string
earlier; it is not that serious since mpg123_copy_string checks
for that, though.
2007-12-07 02:48 thor
* trunk/src/libmpg123/id3.c: More safety for ID3 links: null them
on every id3_link run (do not rely on a new track being loaded).
2007-12-07 02:43 thor
* trunk/src/libmpg123/id3.c, trunk/src/libmpg123/stringbuf.c: ID3
initialization was missing comment = NULL ... that could have
nasty consequences, an invalid pointer being presented if a new
track didn't overwrite it.
2007-12-07 02:15 thor
* trunk/README: Some lines about the beginning.
2007-12-06 22:22 thor
* trunk/src/audio.c: There was an initial mpg123_replace buffer
there. Not good.
2007-12-06 22:07 thor
* trunk/TODO_1.1, trunk/configure.ac, trunk/man1/mpg123.1,
trunk/src/mpg123.c, trunk/src/mpg123app.h,
trunk/src/output/portaudio.c: accidential group commit of
half-baken stuff... - fragments of --delay - portaudio v18 and
v19 handling - thinking about safeguarding audio output close
(portaudio segfauls when close is done twice) - TODO for 1.1:
buffer+audio rework
2007-12-06 21:53 thor
* trunk/src/audio.c: remove unused defines
2007-12-05 01:27 thor
* trunk/configure.ac, trunk/src/output/Makefile.am,
trunk/src/output/esd.c, trunk/src/output/esound.c: Renamed
esound.c to esd.c again, as that's the name it is referred to in
places and also to keep the old --with-audio=esd (everyone calls
it ESD, perhaps only ESD people themselves say ESounD...). Also,
to keep all audio output code in the distribution and to ease
testing/fixing, I added 6 unsupported output module configs to
configure.ac / Makefile.am. Of course, that part of
configure/build is not tested...
2007-12-04 22:33 thor
* trunk/xmms2-plugin/mpg123/mpg123.c: Update the XMMS2 plugin for
the mpg123_rates change.
2007-12-04 22:31 thor
* trunk/INSTALL, trunk/NEWS, trunk/README: Trying to update the
docs a bit.
2007-12-04 21:37 thor
* trunk/NEWS: got old news from 0.68
* trunk/src/audio.c: stray debugging line
2007-12-04 16:01 thor
* trunk/autogen.sh, trunk/configure.ac, trunk/src/audio.c,
trunk/src/libmpg123/format.c, trunk/src/libmpg123/mpg123.h.in,
trunk/src/libmpg123/mpg123lib_intern.h, trunk/src/mpg123app.h:
Worked on the win32 crash... found out that the access to the
exported (?!) array mpg123_rates[] and/or mpg123_encodings[]
blows with the DLL. Exporting functions to access the arrays
instead seems to work; and is generally the better way, perhaps.
So there is an API change from mpg123_rates[] to
mpg123_rates(const long **, size_t *) and likewise for
mpg123_encodings. Along with the win32 hacking I actually
enabled the EXPORT define stuff, but this made no difference
anyway (I guess libtool just uses libmpg123.sym and that's it).
Another issue, interwoven but unrelated (sorry...) is the
hacking of autotool stuff to omit C++, F77 compiler tests that
libtool macros trigger. A future version of libtool shall be
fixed and won't need these hacks.
2007-12-04 10:54 thor
* trunk/src/output/win32.c: That lay around for a while: proper
returning out of win32 write function.
* trunk/src/mpg123app.h: Be more friendly to win32: unistd.h can
be there; use the check for signal.h
2007-12-04 10:53 thor
* trunk/configure.ac: prepare for rc1 ... though still win32
trouble there
* trunk/src/playlist.c: move this index variable inside the block
it is needed in (was a compile warning on win32)
2007-12-03 14:38 thor
* trunk/src/id3print.c: Oh, my. I didn't test in non-UTF shell ...
now the utf8ascii in id3print.c copies with NULL source. Perhaps
I should really just let these pointers point to an empty string
when there is no info? Even if there is an empty string, the
fill should be >0 because of the closing zero. So a string with
p[0] = 0, size=1 and fill=0 could be a safe alternative to
NULL...
2007-12-02 21:37 thor
* trunk/src/libmpg123/id3.c: Just choose the last comment if no
generic comment is there.
2007-12-02 20:24 thor
* trunk/xmms2-plugin/mpg123/mpg123.c: Fix the xmms2 plugin for
changed ID3v2 API.
2007-12-02 15:35 thor
* trunk, trunk/doc, trunk/src/libmpg123, trunk/test: more ignores
2007-12-02 15:29 thor
* trunk/doc/examples: ignore binaries
* trunk/m4: removed that empty m4/
2007-12-02 15:28 thor
* trunk/Makefile.am, trunk/autogen.sh, trunk/configure.ac,
trunk/m4/ac_c_const.m4: OK, tackled this differently. Hacking of
-Wno-error into CFLAGS doesn't really work (not properly, at
least)... and also the exiting working with CFLAGS that
influence the foolowing tests in configure was not good. Now we
are a bit more careful with the mods (also redirecting -DSTUFF
to CPPFLAGS instead of CFLAGS) and there is a blocker check at
beginning. configure will just fail when there is -Werror in the
flags, because it is really bad with several tests. Note that
this also implies that make distcheck will always fail in this
controlled way when run after a configure that generated CFLAGS
with -Werror. These generated CFLAGS are carried over to the
configure run in the distcheck dir... dunno if and how one could
change that.
2007-12-02 13:17 thor
* trunk/Makefile.am, trunk/autogen.sh, trunk/m4,
trunk/m4/ac_c_const.m4: For now including a private copy of
AC_C_CONST that works with -Wall -Werror -pedantic ... I don't
know if I break the test for some obscure compiler, but for now
it's only the jack module that really depends on this test to
work - and that won't be used on old and obscure systems.
2007-12-02 01:09 thor
* trunk/doc/Makefile.am: adding some distfiles
2007-12-02 00:52 thor
* trunk/src/libmpg123/libmpg123.c: Code conformity: There was a
declaration in code.
* trunk/configure.ac: Separate --enable-debug from the developer
CFLAGS (-Wall -Werror -pedantic). Some user should be able to
get debugging stuff without being bothered with our ISO C
conformity or whatnot. The full set of complaints and failues is
available via --enable-nagging .
2007-12-02 00:41 thor
* trunk/src/libmpg123/id3.c: remove that debugging line
2007-12-02 00:17 thor
* trunk/src/libmpg123/id3.c: Oops! Now the ID3v2.2 hack is
complete with the 3-bytes-to-long macro actually taking only 3
bytes.
2007-12-02 00:15 thor
* trunk/src/libmpg123/id3.c: Hacked ID3v2.2 support... mapping
text frames to ID3v2.3 . The old RVA frame is not supported
(it's a bit ill-defined, anyway, beginning with "What do the
values mean?"). Important: This is not tested as I am unable to
get my hands on a v2.2 tagged file atm... I have once
encountered one on someone else's Mac where iTunes created such
cruft.
2007-12-02 00:12 thor
* trunk/src/libmpg123/mpg123.h.in: Note about ID3v1.1 .
2007-12-02 00:02 thor
* trunk/doc/examples/id3dump.c: Do not leave the data fields
modified after print_lines - that screwed raw tag display.
2007-12-01 22:19 thor
* trunk/doc/examples/id3dump.c: last clean up for today.
2007-12-01 22:17 thor
* trunk/doc/examples/id3dump.c: Oh, man... surprising how many
errors you can make in such a simple program. While cleaning up,
I found the innocent lang[3] = 0 on a variable defined as char
lang[3] ... just now made the program segfault. Coders, you have
to keep your eyes open!
2007-12-01 22:02 thor
* trunk/doc/examples/id3dump.c: Baah! That loop was even with the
wrong limit! Will vanish now anyway.
* trunk/doc/examples/id3dump.c: remove leftovers
2007-12-01 22:01 thor
* trunk/doc/examples/id3dump.c: Simplify v1 printing... that
looping was too clever - and didn't save code lines!
2007-12-01 21:42 thor
* trunk/doc/examples/id3dump.c, trunk/src/id3print.c,
trunk/src/libmpg123/id3.c, trunk/src/libmpg123/id3.h,
trunk/src/libmpg123/libmpg123.c,
trunk/src/libmpg123/mpg123.h.in,
trunk/src/libmpg123/stringbuf.c: Some things relating to ID3v2
handling: - the named entries for artist, album, etc in struct
mpg123_id3v2 are now pointers... - ... into the new arrays of
ID3v2 text, comment and extra (TXXX) data - That makes a lot
more info directly accessible; which id3dump now does access -
adapted id3print.c to the pointer thing (by dropping some & ;-)
- mpg123_copy_string() now produces an empty string (_not_ "")
when copying from NULL id3.c got a bit of structure, but the
main parsing function is still to bloated. In general, I hope
this change of ID3v2 handling makes sense. You have more data
plus the possibility to easily loop through the entries...
2007-12-01 17:24 thor
* trunk/doc/examples/Makefile, trunk/doc/examples/id3dump.c,
trunk/src/id3print.c, trunk/src/libmpg123/id3.c,
trunk/src/libmpg123/mpg123.h.in,
trunk/src/libmpg123/mpg123lib_intern.h,
trunk/src/libmpg123/stringbuf.c: Made ID3 code store all
comments in a list (API change in mpg123_id3v2 struct!) and
while doing that seen what I did wrong last time: I ignored the
encoding of the description field.
2007-12-01 14:08 thor
* trunk/src/libmpg123/format.c, trunk/src/libmpg123/libmpg123.c:
mpg123_format() now also intiializes the track if necessary.
Waiting for MPG123_NEW_FORMAT to happen on read can be lame when
you really want to know it in advance.
2007-12-01 13:30 thor
* trunk/doc/examples/mpg123_to_wav.c: move that comment into
cleanup itself
2007-12-01 13:27 thor
* trunk/doc/examples/mpg123_to_wav.c: mpg123_to_wav with some more
care.
2007-11-30 23:51 thor
* trunk/doc/doxy_examples.c, trunk/doc/doxygen.conf: id3dump.c
example file was missing...
2007-11-30 23:20 thor
* trunk/doc/doxy_examples.c, trunk/doc/doxygen.conf,
trunk/doc/examples/mpglib.c: Include the examples in API doc.
2007-11-30 22:09 thor
* trunk/src/libmpg123/mpg123.h.in: a bit better english
2007-11-30 22:08 thor
* trunk/src/libmpg123/mpg123.h.in: a list for the SEEK_*
2007-11-30 22:05 thor
* trunk/configure.ac: 1.0rc0 now ... shall be 1.0rc1 soon.
2007-11-30 22:04 thor
* trunk/doc/html, trunk/doc/man: Know these dirs, ignore their
contents.
* trunk/TODO_1.0: A lot less here: - buffer crash fixed - jump bug
fixed - make distcheck worked!
2007-11-30 22:03 thor
* trunk/src/libmpg123/libmpg123.c, trunk/src/libmpg123/parse.c:
Fix the broken first jump in remote control: mpg123_timeframe()
needs to initialize the track for returning something non zero.
2007-11-30 22:00 thor
* trunk/src/libmpg123/mpg123.h.in: More functions possibly return
message codes...
2007-11-30 21:59 thor
* trunk/src/mpg123.c, trunk/src/xfermem.c, trunk/src/xfermem.h:
Fix the buffer crash: replacing the libmpg123 buffer is no good
idea when libmpg123 has no idea of it being a ring buffer! Now
we decode normally and copy the data from mpg123 to the buffer
in a more appropriate manner.
2007-11-30 08:51 thor
* trunk/src/libmpg123/mpg123.h.in: make the /todos TODOs again...
should vanish on release
2007-11-30 02:38 thor
* trunk/doc/doxygen.conf, trunk/doc/doxyhead.xhtml: Fitted the
doxygen stuff into the website; a hacked doxygen.css does the
trick.
2007-11-30 02:01 thor
* trunk/doc/doxygen.conf: we want SSI
2007-11-30 01:59 thor
* trunk/src/libmpg123/mpg123.h.in: that todo is official...
2007-11-30 01:58 thor
* trunk/doc/doxygen.conf, trunk/doc/doxyhead.xhtml: Use a header
to fit into mpg123 website.
2007-11-30 01:48 thor
* trunk/src/libmpg123/mpg123.h.in: just a dot
* trunk/src/libmpg123/mpg123.h.in: a space line less
2007-11-30 01:46 thor
* trunk/src/libmpg123/mpg123.h.in: a space line less
2007-11-30 01:44 thor
* trunk/src/libmpg123/mpg123.h.in: fix the low level group
2007-11-30 01:39 thor
* trunk/doc/doxygen.conf: Create more man ... perhaps now one can
think about installing all pages that start with mpg123_ (or
MPG123_ for the constants, even?).
2007-11-30 01:21 thor
* trunk/src/libmpg123/libmpg123.c,
trunk/src/libmpg123/mpg123.h.in: A good deal of changes of
mpg123.h documentation; functional change is integration of
status messages with error codes (also in mpg123_strerror()).
2007-11-29 09:15 thor
* trunk/Makefile.am: include makedll.sh in distribution
2007-11-28 23:39 thor
* trunk/TODO_1.0: More thought on the Solaris/buffer/? segfault.
2007-11-28 23:29 thor
* trunk/TODO_1.0: I had parallel make run fail and the following
single run being OK...
2007-11-28 23:28 thor
* trunk/src/libmpg123/libmpg123.c: mpg123_index shall return
MPG123_OK when it's OK.
2007-11-28 23:27 thor
* trunk/makedll.sh: disbale modules for dll build, as they won't
do on windows anyway.
2007-11-28 18:57 thor
* trunk/TODO_1.0: more on the segfault on solaris... more likely
buffer bug
2007-11-28 18:18 thor
* trunk/TODO_1.0: A bug noted in solaris (presumably a generic bug
in random playback), note about make distcheck.
2007-11-28 15:39 thor
* trunk/Makefile.am, trunk/configure.ac, trunk/doc/Makefile.am:
fixing make dist for doc/
2007-11-28 12:11 thor
* trunk/doc/examples/scan.c: Just swapping headers to confirm that
stdio.h is not needed for mpg123.h anymore.
2007-11-28 12:10 thor
* trunk/src/libmpg123/mpg123.h.in: We don't need stdio.h anymore
(the print function is gone).
2007-11-28 12:08 thor
* trunk/src/libmpg123/frame.c, trunk/src/libmpg123/libmpg123.c,
trunk/src/libmpg123/libmpg123.sym,
trunk/src/libmpg123/mpg123.h.in, trunk/src/term.c: Fix the index
stuff... libmpg123 API now contains mpg123_index instead of
mpg123_print_index and mpg123 does the printing itself.
2007-11-28 11:16 thor
* trunk/src/libmpg123/mpg123.h.in: We have RVA and volume
handling, remove these TODO lines, though adding a remark about
preamp (easy to do).
2007-11-28 11:14 thor
* trunk/TODO_1.0: We need to get the buffer audio handling
straight some time ... dunno if that's for 1.0 .
2007-11-28 11:12 thor
* trunk/TODO_1.0: Updated that - less TODO overall, but
control_generic.c needs a look.
2007-11-28 11:07 thor
* trunk/src/libmpg123/mpg123.h.in: comment cosmetics
2007-11-28 11:06 thor
* trunk/src/libmpg123/mpg123.h.in: MPG123_ENC_ANY doesn't need
itself for the definition.
2007-11-28 11:02 thor
* trunk/src/libmpg123/mpg123.h.in: more precise comments for
mpg123_init() and mpg123_exit()
2007-11-28 10:52 thor
* trunk/src/control_generic.c, trunk/src/mpg123.c: Make remote
control work again; there was stray audio handling code still
there.
2007-11-28 10:42 thor
* trunk/src/libmpg123/frame.h, trunk/src/libmpg123/libmpg123.c,
trunk/src/libmpg123/mpg123lib_intern.h,
trunk/src/libmpg123/parse.c: Enable the build without GAPLESS
again.
2007-11-28 10:10 thor
* trunk/man1/mpg123.1, trunk/src/libmpg123/frame.c,
trunk/src/libmpg123/libmpg123.c,
trunk/src/libmpg123/mpg123.h.in, trunk/src/mpg123.c: - enable
gapless mode per default in library - add parameter operation to
remove flags - mpg123 --no-gapless is now needed to get
non-gapless decoding (the good thing is the default now;-) -
removed references to GAPLESS macro in mpg123 application
2007-11-28 10:09 thor
* trunk/doc/examples/id3dump.c, trunk/doc/examples/mpglib.c,
trunk/doc/examples/scan.c: more usage info
2007-11-28 10:06 thor
* trunk/doc/examples/scan.c: usage for scan
2007-11-28 09:35 thor
* trunk/doc/examples/Makefile, trunk/doc/examples/id3dump.c,
trunk/doc/examples/mpglib.c, trunk/doc/examples/scan.c,
trunk/src/Makefile.am, trunk/src/id3dump.c, trunk/src/mpglib.c,
trunk/src/scan.c: Move example programs from src/ to
doc/examples/ .
* trunk/src/libmpg123/libmpg123.c,
trunk/src/libmpg123/mpg123.h.in: Fix build with latest changes
to mpg123.h.
2007-11-28 09:34 thor
* trunk/doc/examples/mpg123_to_wav.c: get a newline at the end.
2007-11-28 08:41 thor
* trunk/src/scan.c: Add a note about error checking, fix
description and include stdio.h .
2007-11-28 08:35 thor
* trunk/src/id3dump.c: The little tool to dump ID3 tag information
of files. Was used in testing, may be useful in general - at
least shall serve as example.
2007-11-28 00:06 njh
* trunk/src/libmpg123/mpg123.h.in: Seperated functions out into
different named groups/sections/modules
2007-11-28 00:05 njh
* trunk/doc/doxygen.conf: Don't include the full paths of files
2007-11-27 08:59 thor
* trunk/src/libmpg123/icy.c, trunk/src/libmpg123/icy.h,
trunk/src/libmpg123/readers.c, trunk/src/libmpg123/stringbuf.c:
Omit some redundant and unconditional header includes.
2007-11-27 08:58 thor
* trunk/src/libmpg123/mpg123lib_intern.h: Don't need to include
that header here anymore.
2007-11-27 08:57 thor
* trunk/src/libmpg123/mpg123.h.in: Some small comment changes,
notably correcting the description of the rate parameter in the
format functions.
2007-11-27 00:07 njh
* trunk/doc/examples/Makefile, trunk/doc/examples/mpg123_to_wav.c:
My very poor first attempt at a mp3 to wav converter (but it
works!). Needs a lot of error handling added.
2007-11-26 01:35 njh
* trunk/doc/doxygen.conf, trunk/doc/examples,
trunk/src/libmpg123/libmpg123.c,
trunk/src/libmpg123/mpg123.h.in: Documented lots more of the
libmpg123 API using Doxygen
2007-11-25 13:01 thor
* trunk/src/libmpg123/system.c: Add a note about the outdatedness
of system.c .
2007-11-25 00:53 njh
* trunk/configure.ac, trunk/src/libmpg123/Makefile.am,
trunk/src/libmpg123/mpg123.h, trunk/src/libmpg123/mpg123.h.in: A
custom mpg123.h is now generated by configure. It will only
#include the system headers available on the current system.
2007-11-24 03:59 thor
* trunk/src/id3print.c, trunk/src/id3print.h,
trunk/src/libmpg123/compat.c, trunk/src/libmpg123/compat.h,
trunk/src/libmpg123/dnoise.c, trunk/src/libmpg123/format.c,
trunk/src/libmpg123/frame.c, trunk/src/libmpg123/frame.h,
trunk/src/libmpg123/getcpuflags.h, trunk/src/libmpg123/icy.c,
trunk/src/libmpg123/id3.c, trunk/src/libmpg123/id3.h,
trunk/src/libmpg123/mangle.h, trunk/src/libmpg123/mpg123.h,
trunk/src/libmpg123/mpg123lib_intern.h,
trunk/src/libmpg123/parse.h, trunk/src/libmpg123/reader.h,
trunk/src/libmpg123/testcpu.c, trunk/src/libmpg123/true.h,
trunk/src/mpglib.c, trunk/src/scan.c: A bunch of cosmetics,
mostly license plate.
2007-11-24 03:58 thor
* trunk/src/Makefile.am: Another dangerous hack to pretend
revursive make handling dependencies correctly for libmpg123/ ...
2007-11-24 03:38 thor
* trunk/src/libmpg123/Makefile.am: Make testcpu compile again.
2007-11-23 21:07 thor
* trunk/Makefile.am, trunk/src/libmpg123/mpg123.h: doc/ has
nothing to build for now and some space less in mpg123.h
2007-11-23 21:06 thor
* trunk/src/output/Makefile.am: Prevent empty lib/mpg123 on
installation when modules were disabled.
2007-11-23 21:05 thor
* trunk/src/Makefile.am: Make the non-module build with shared lib
work... hacking the generation of the output object file as
recursive make call into the src/Makefile.am since the build
system would try to build the dependency on the output object
from src/, which doesn't work.
2007-11-23 21:03 thor
* trunk/configure.ac: Make it possible to --disable-modules but
still retain the shared libmpg123 (disabled modules don't imply
disabled shared lib anymore).
2007-11-23 21:02 thor
* trunk/src/libmpg123/id3.c: Fix a crash with zero-sized text
frames (duh!) after ravenexp gave the hint. Also, make reading
of a test tag from ravenexp work... the BOM of a UTF16 comment
was preceeded by a null byte (triggering the crash, actually).
2007-11-22 07:27 thor
* trunk/src/audio.c, trunk/src/libmpg123/format.c,
trunk/src/libmpg123/mpg123.h: API cleanup: format functions
always take plain rates and encodings, not mpg123 indices.
2007-11-22 00:43 thor
* trunk/src/output/win32.c: A new version of the win32 output,
this time allowing arbitrary writes. Gives sound.
2007-11-22 00:43 njh
* trunk/Makefile.am, trunk/doc/Makefile.am,
trunk/doc/doxygen.conf, trunk/doc/html,
trunk/src/libmpg123/libmpg123.c, trunk/src/libmpg123/mpg123.h:
Started working on Doxygen documentation
2007-11-21 01:20 njh
* trunk/Makefile.am, trunk/configure.ac, trunk/libmpg123.pc.in:
Added pkg-config file, to help other tools use libmpg123 easily
2007-11-21 01:00 njh
* trunk/src/libmpg123/libmpg123.c: Fix for warning on Linux
PPC/gcc 4.1.2
2007-11-21 00:11 njh
* trunk/src/libmpg123/decode_altivec.c,
trunk/src/libmpg123/optimize.h: Updated Altivec decoder to use
new style, based on decoder.c
2007-11-20 23:09 njh
* trunk/src/common.c, trunk/src/control_generic.c,
trunk/src/libmpg123/frame.c, trunk/src/libmpg123/libmpg123.c,
trunk/src/libmpg123/parse.c, trunk/src/libmpg123/readers.c,
trunk/src/mpg123.c: Added casts to various printf to make it
compile on Darwin
2007-11-20 21:56 thor
* trunk/src/output/win32.c: A semicolon was needed.
2007-11-20 20:24 thor
* trunk/scripts/debugdef.pl, trunk/src/libmpg123/debug.h: Added
ereturn macro for the frequent if(some_error_condition) {
error("blablabla"); return error; }
2007-11-20 20:23 thor
* trunk/src/output/win32.c: Bug-fixing update from ravenexp;
buffer size issues still have to be sorted out...
2007-11-19 09:04 thor
* trunk/test/rms16.c: Now computing the RMS with normalization of
the difference to the input amplitude range. The former way of
just normalizing to 32768 wasn't that bright an idea, I think.
2007-11-18 02:45 thor
* trunk/src/libmpg123/dct64_vector.c: A general idea of
vectorizing dct64... still unsure if I should convert existing
SSE to AMD64 or do it from scratch.
2007-11-18 02:44 thor
* trunk/src/libmpg123/dct64_sse64.S,
trunk/src/libmpg123/decode_sse64.S: These were added
accidentally on last commit... along with dct64_2.c, but that
one may stay for a while...
2007-11-18 02:41 thor
* trunk/autogen.sh, trunk/src/libmpg123/dct64_2.c,
trunk/src/libmpg123/dct64_sse64.S,
trunk/src/libmpg123/decode_sse64.S, trunk/src/output/oss.c:
Build tool borkage... resort to hardcoding use of automake-1.9
for LTCCASCOMPILE ... adding note about libtool-1.5.24 being bad
in a different way that I don't yet know to handle properly.
2007-11-18 02:26 thor
* trunk/configure.ac, trunk/src/module.c, trunk/src/mpg123.c,
trunk/src/mpg123app.h: Reshape the module code a bit; intention
was to support loading modules from location relative to mpg123
binary -- to make it work on Windows as it is common there. I
doesn't work on Windows, though, and I don't feel able to fix
our build system to make it work. The changes _do_ enable
relative loading on Linux, provided one hacks the .la files to
_not_ contain hardcoded absolute paths. Also, some cleanup
happened, so the changes go in, although their use is limited.
2007-11-17 20:40 thor
* trunk/src/libmpg123/frame.c: more alignment
2007-11-17 20:39 thor
* trunk/configure.ac, trunk/src/output/win32.c: Refreshed Win32
output; reworked by ravenex.
2007-11-16 07:30 thor
* trunk/src/libmpg123/Makefile.am: We really want LTCCASCOMPILE
there, LTCPPASCOMPILE being a strange ill-effect of using
automake-1.10! With automake-1.9, LTCCASCOMPILE is the thing.
2007-11-14 07:16 thor
* trunk/src/libmpg123/Makefile.am: Use $(LTCPPASCOMPILE)
$(DEFAULT_INCLUDES) for .S -> .lo ... does that help Windows
with the not found config.h?
2007-11-14 07:03 thor
* trunk/src/Makefile.am: Add OUTPUT_OBJ to mpg123_DEPENDENCIES ...
that at least triggers a relink of mpg123 when the object
changed in static linking mode.
2007-11-13 19:25 thor
* trunk/src/mpg123.c: timeout not on WIN32, forgot an #ifndef ...
2007-11-12 21:02 thor
* trunk/src/mpg123.c, trunk/src/mpg123app.h: Added --index option;
run mpg123_scan() on every track before playback; perhaps that
helps the guy with unreliable IDE to precache files as a side
effect.
2007-11-10 15:37 thor
* trunk/src/id3print.c, trunk/src/mpg123.c, trunk/src/mpg123app.h:
Re-enable the UTF-8 -> ASCII filtering, but hack a little check
in that just prints the UTF-8 strings when $LANG contains
"UTF-8". It's not proper but it works for me;-)
2007-11-09 22:51 thor
* trunk/src/Makefile.legacy: Also remove decode_mmxsse from the
makefile.
2007-11-09 22:50 thor
* trunk/src/libmpg123/decode_mmxsse.S: That one is dead.
* trunk/src/Makefile.legacy: Fix stupid syntax errors in
linux-help.
2007-11-09 13:14 thor
* trunk/scripts/exportsym.pl, trunk/src/libmpg123/libmpg123.sym:
Made a script for filtering out the EXPORTed symbols and ran
that instead of caring myself for inclusion of mpg123_fmt and
what else I forgot.
2007-11-09 00:37 thor
* trunk/src/libmpg123/libmpg123.c: Thanks again to John Stamp for
pointing me at these forgotten NULL checks.
2007-11-09 00:32 thor
* trunk/src/libmpg123/format.c, trunk/src/libmpg123/frame.c,
trunk/src/libmpg123/libmpg123.c, trunk/src/libmpg123/mpg123.h:
The handling of separate parameter objects has been completed
for output format settings (mpg123_fmt() and friends added); now
also fixing a subtle bug where the defaults for output format
would have been at random. mpg123_format_all() and then copying
the uninitialized bits from the parameter object did not have
the desired effect... better now;-) Thanks go to John Stamp to
find this out with last.fm; mpg123 itself, setting format
support _after_ handle creation, didn't see that.
2007-11-08 15:33 thor
* trunk/src/mpglib.c: update mpglib a bit...
2007-11-08 15:17 thor
* trunk/src/libmpg123/libmpg123.c: Make sure the decoded bytes
count is set to zero when mpg123_decode() returns something like
MPG123_NEW_FORMAT!
2007-11-08 03:30 thor
* trunk/src/audio.c, trunk/src/libmpg123/frame.c,
trunk/src/libmpg123/frame.h, trunk/src/mpg123.c: - Allow NULL
for "choose default decoder" in mpg123_decoder(). - Actually
disabled need for that in mpg123 through using param.cpu in
initial handle setup. The forced rate check had to go in before
that (from audio.c) to ensure we get a fallback decoder when
needed.
2007-11-08 03:08 thor
* trunk/src/libmpg123/frame.c, trunk/src/libmpg123/frame.h,
trunk/src/libmpg123/parse.c: Some feeble steps to support free
format... just broken down some barrier; not yet added the
framesize parser.
* trunk/xmms2-plugin/mpg123/mpg123.c: Also here, use the rate
instead of the index.
2007-11-08 03:06 thor
* trunk/src/audio.c, trunk/src/libmpg123/format.c,
trunk/src/libmpg123/mpg123.h: mpg123_format() now just takes the
actual _rate_ instead of the rate index. Makes more sense to
applications.
2007-11-06 14:18 thor
* trunk/configure.ac, trunk/src/playlist.c: use random() instead
of rand() when available
2007-11-06 13:55 thor
* trunk/src/playlist.c: Fix the shuffle according to bug 1777621.
2007-11-06 13:09 thor
* trunk/src/mpg123.c: Hack a call to split_dir_file() to clean up
the hep properly - valgrind now has nothing to complain about
possible memory leaks. That is, it has nothing to complain for
mpg123 -s file.mp3 > /dev/null; it has quite some issues with
ALSA:-(
2007-11-06 13:01 thor
* trunk/src/libmpg123/frame.c: Initialize the r_read and r_lseek
fields to NULL.
2007-11-06 10:46 thor
* trunk/src/libmpg123/frame.c: Clean up the frame init/reset mess
a bit, preventing frame_buffers_reset before the buffers have
been allocated (d'oh\!). That should take care of bug 1825734.
2007-11-04 21:19 thor
* trunk/src/libmpg123/Makefile.am: Does this INCLUDES help win32?
* trunk/src/libmpg123/layer3.c: More () to make pedantic gcc happy.
2007-10-29 16:35 thor
* trunk/src/output/sun.c: No LINEAR8 enconding on solaris... until
I hear it working somewhere (wasn't nice to my ears on a Ray).
Also, make that format test loop over the entries we actually
have, not just 4 always (that point got a regression during
output plugin merge, I suppose).
2007-10-29 16:32 thor
* trunk/src/Makefile.legacy: Glitch in solaris Makefile entry ...
-fast was joined to $(CFLAGS).
2007-10-29 16:31 thor
* trunk/src/Makefile.am: No depending on -lltdl ... we'd rather
need to depend on ../libltdl/libltdl.la, but not when it is
already installed...
2007-10-29 16:30 thor
* trunk/src/libmpg123/format.c: Fix the format check - not just
any bit, _every_ bit of the format must be in the support mask!
2007-10-28 22:30 thor
* trunk/src/libmpg123/layer3.c: Remove the dead code.
2007-10-28 22:08 thor
* trunk/src/libmpg123/layer3.c: Michael Hipp found the already
many year-old fix for the MPEG 2.5 issue of bug 1807964!
Actually, this comment in layer3.c seems to have been prophetic:
/* check this again for 2.5 and sfreq=8 */ Now that block works
better. It also works slower, though. Gotta see if I can
optimize this if/else tree.
2007-10-28 16:37 thor
* trunk/src/output/sun.c: Put the parameter setting in there
again... will it work now on Solaris?
2007-10-27 08:35 thor
* trunk/MakeLegacy.sh, trunk/src/Makefile.legacy,
trunk/src/config.h.legacy: Make legacy build use MAKE variable
for the make program to use (default is "make", but you may need
MAKE=gmake ./MakeLegacy.sh). Also, adding to the solaris build
entry (some defined) and HAVE_SIGNAL_H per default on in
config.h.legacy. Not sure if we should put all the system
specific defines into Makefile.legacy or in separate config.h
files .
2007-10-27 08:29 thor
* trunk/src/output/sun.c: Make sun output compile again - but it
does not work yet.
2007-10-27 08:28 thor
* trunk/src/module.c: Portability: stat() for file type instead of
using non-standard dirent field.
* trunk/src/legacy_module.c: No C++ comments.
2007-10-25 23:52 thor
* trunk/src/common.c: Remove one of these !defined(GENERIC) for a
positive header check for signal.h .
2007-10-25 23:40 thor
* trunk/src/mpg123app.h: framenum is off_t
2007-10-25 22:41 thor
* trunk/src/libmpg123/Makefile.am, trunk/src/output/esd.c,
trunk/src/output/esound.c: Yay! Even `make distcheck` succeeds
now after making path of libmpg123.sym absolute.
2007-10-25 22:33 thor
* trunk/src: ignore
2007-10-25 22:32 thor
* trunk/src/output: even more ignore
2007-10-25 22:31 thor
* trunk/src/libmpg123: more ignore
* trunk: ignore
2007-10-25 22:30 thor
* trunk/libltdl: ignore
2007-10-25 22:28 thor
* trunk/src/mpg123.c, trunk/src/playlist.c: Re-enable STDIN
playback via special filename "-" and fix a file descriptor leak
along with that.
2007-10-25 22:10 thor
* trunk/Makefile.am, trunk/configure.ac, trunk/src/Makefile.am,
trunk/src/output/Makefile.am: Serious autotool hacking. By now
you should be able to get - a standard dynamic build with shared
lib and auto-detected modules - a dynamic build with a selected
range of modules (--with-audio) - the default audio module you
want via --with-default-audio - a one-static-module build with
shared lib (--disable-modules) - a one-static-module build with
static lib (--disable-modules --disable-shared) - a fully static
build (-static in LDFLAGS when running configure) The
static-module builds skip the libltdl configure step. This just
took some days of headache and yelling at autotools/libtool...
2007-10-24 16:13 thor
* trunk/src/audio.c, trunk/src/audio.h, trunk/src/buffer.c,
trunk/src/mpg123.c, trunk/src/output/Makefile.am,
trunk/src/output/alsa.c: Fix an alsa (not just there, I guess)
crash by making sure the ao->userptr and ao->fn get cleared
after close in close_output. Also removed direct uses of
ao->close in mpg123.c and buffer.c .
2007-10-24 16:12 thor
* trunk/src/Makefile.legacy: Honor CPPFLAGS!
2007-10-24 15:33 thor
* trunk/MakeLegacy.sh: Only overwrite config.h when it changed.
Makes it possible not to always rebuild everything.
2007-10-22 23:33 thor
* trunk/Makefile.am, trunk/TODO_1.0, trunk/autogen.sh,
trunk/src/Makefile.am, trunk/src/output/Makefile.am: Ideally, we
would support modules on systems without installed libltdl via
the included copy... which needed some hacking to actually make
it into the dist tarball. this is not really resolved until I
saw a working build on some system apart from GNU/Linux (and
Nick's MacOSX), where you usually have libltdl.
2007-10-22 21:44 thor
* trunk/makedll.sh: Ease Win32 DLL creation with MinGW32 a bit.
2007-10-22 20:30 thor
* trunk/Makefile.am: distribute the rms16 program
2007-10-22 11:07 thor
* trunk/TODO_1.0: We still got something to do...
2007-10-22 10:56 thor
* trunk/doc/BUGS: Old list of bugs was outdated, BUGS now just
points to the tracker.
2007-10-22 10:54 thor
* trunk/test/rms16.c: Less verbose rms16.
2007-10-22 10:14 thor
* trunk/src/libmpg123/libmpg123.c: Make mpg123_decode work with
&done == NULL . Segfault is never good.
2007-10-22 07:46 thor
* trunk/src/libmpg123/libmpg123.c,
trunk/src/libmpg123/libmpg123.sym, trunk/src/libmpg123/mpg123.h,
trunk/src/libmpg123/reader.h, trunk/src/libmpg123/readers.c: Add
possibility to replace the read and lseek functions. That is
needed to support non-supported methods of opening a file: You
open the thing, give some integer to open_fd, your read/lseek
get called with that integer (aka. "file descriptor") to perform
their task. The downside is, now I actually added callbacks to
libmpg123... didn't plan to:-/
2007-10-20 10:07 thor
* trunk/src/libmpg123/tabinit.c,
trunk/src/libmpg123/tabinit_mmx.S: Move costab_mmxsse[] into
assembly to stop MinGW stumbling over ALIGNED(32) (must be a bug
limiting at 16). In assembler everything is fine with ALIGN32.
2007-10-18 22:22 thor
* trunk/src/Makefile.am: distributing the legacy_module.c, too
2007-10-18 20:46 thor
* trunk/src/libmpg123/frame.c, trunk/src/libmpg123/libmpg123.c,
trunk/src/libmpg123/mpg123.h: Normalize the encoding macros,
MPG123_ENC_8 now working just like MPG123_ENC_16. Normalize
return values: int mpg123_read();
2007-10-17 23:55 thor
* trunk/src/Makefile.am, trunk/src/libmpg123/frame.c,
trunk/src/libmpg123/frame.h, trunk/src/libmpg123/libmpg123.c,
trunk/src/libmpg123/libmpg123.sym, trunk/src/libmpg123/mpg123.h,
trunk/src/scan.c: Support for getting (estimated) track length
and for scanning through file to get accurate length. A proper
LAME tag contains proper info, but you never know...
2007-10-17 23:45 thor
* trunk/src/libmpg123/reader.h, trunk/src/libmpg123/readers.c: A
safety reader that just bounces back requests ... it is better
than segfaulting on call of NULL functions.
2007-10-17 23:17 thor
* trunk/src/libmpg123/Makefile.am: it depends on libmpg132.sym
2007-10-16 22:14 thor
* trunk/src/libmpg123/libmpg123.c, trunk/src/libmpg123/mpg123.h,
trunk/src/libmpg123/readers.c: Fix strerror list (a comma was
missing), add an error for file access problem.
2007-10-16 21:49 thor
* trunk/src/libmpg123/frame.c: No timeout on win32...
2007-10-16 20:49 thor
* trunk/src/mpg123.c: Hacking the frame header info not messing
with verbose terminal display anymore, via a track freshness: -
ensures that the progress line is printed _after_ play_frame()
got first real data - ensures that play_frame() does not repeat
the header info when the track is rewound
2007-10-16 20:23 thor
* trunk/src/Makefile.legacy: ensure use of CPPFLAGS
2007-10-16 20:18 thor
* trunk/src/mpg123.c, trunk/src/term.c, trunk/src/term.h: Fix
term.c to work with the opinter ao. Much better now: I can play
and seek, change tracks. Seeking indeed sounds better now,
without the distortion (the library does some extra work now to
ensure that).
2007-10-16 20:02 thor
* trunk/src/mpg123.c: Always enable the --test-cpu and --list-cpu
switches m even if there is only one decoder.
2007-10-16 19:56 thor
* trunk/src/httpget.c: Give non-http enabled builds the
debunk_mime function; that spares us cluttering playlist.c with
#ifdefs.
* trunk/src/Makefile.legacy, trunk/src/legacy_module.c: A bit of
legacy building.
2007-10-16 17:33 thor
* trunk/src/output/alib.c: Include lib headers via <>, not "";
makes the gcc dep generator work for legacy makefile.
2007-10-16 03:33 thor
* trunk/src/term.c: Wodnering about the segfault when changing to
next track on terminal... for sure something simple... a next
day.
2007-10-16 03:23 thor
* trunk/src/output/Makefile.am: Help VPATH?
2007-10-16 02:50 thor
* trunk/src/libmpg123/Makefile.am: re-include DK's VPATH fix for
the asm build rule... which still doesn't help the basic
borkedness with make distcheck. -I../../src doesn't seem to help
finding the most basic headers!
2007-10-16 02:45 thor
* trunk/src/libmpg123/format.c, trunk/src/libmpg123/frame.c,
trunk/src/mpg123.c: The frame reset was missing crucial bits.
Now mpg123 fails gracefully when wanting to play stuff when no
audio interface is avalable.
2007-10-16 02:39 thor
* trunk/src/Makefile.am, trunk/src/audio.c, trunk/src/audio.h,
trunk/src/httpget.c, trunk/src/libmpg123/Makefile.am,
trunk/src/libmpg123/compat.c, trunk/src/libmpg123/frame.c,
trunk/src/libmpg123/frame.h, trunk/src/libmpg123/libmpg123.c,
trunk/src/libmpg123/mpg123.h, trunk/src/libmpg123/reader.h,
trunk/src/libmpg123/readers.c, trunk/src/libmpg123/stringbuf.c,
trunk/src/libmpg123/tabinit.c, trunk/src/mpg123.c,
trunk/src/output/Makefile.am, trunk/src/wav.c: A state of source
that builds. I am testing...
2007-10-16 02:19 thor
* trunk/src/httpget.h: Header protection macro had a typo...
2007-10-16 02:14 thor
* trunk/src/control_generic.c: Resolving a leftover conflict.
2007-10-16 01:32 thor
* trunk/configure.ac, trunk/src/Makefile.am: First attempt to make
it build again.
2007-10-16 01:22 thor
* trunk/test: Moving the basic test stuff to the main trunk.
2007-10-16 01:21 thor
* trunk/Makefile.am: Also distribute the added doc.
2007-10-16 01:19 thor
* trunk/doc/ACCURACY, trunk/doc/libmpg123_speed.txt: Some docs I
added in the lib branch.
* trunk/xmms2-plugin: Moving the xmms2-plugin to mainline.
2007-10-16 01:11 thor
* trunk/src/libmpg123/compat.c, trunk/src/libmpg123/compat.h,
trunk/src/libmpg123/mpg123lib_intern.h: The outsourced
compatibility functions.
2007-10-16 01:10 thor
* trunk/src/mpglib.c: Adding the mpglib-style example program
again.
2007-10-16 01:08 thor
* trunk/src/audio.c, trunk/src/audio.h, trunk/src/output/aix.c,
trunk/src/output/alib.c, trunk/src/output/alsa.c,
trunk/src/output/alsa05.c, trunk/src/output/coreaudio.c,
trunk/src/output/dummy.c, trunk/src/output/esd.c,
trunk/src/output/hp.c, trunk/src/output/jack.c,
trunk/src/output/libao.c, trunk/src/output/mint.c,
trunk/src/output/nas.c, trunk/src/output/os2.c,
trunk/src/output/oss.c, trunk/src/output/portaudio.c,
trunk/src/output/pulse.c, trunk/src/output/sdl.c,
trunk/src/output/sgi.c, trunk/src/output/sun.c,
trunk/src/output/win32.c: An attempt to mass-convert the output
stuff with respect to audio encoding constants and the changed
main header.
2007-10-16 01:04 thor
* trunk/src/common.c, trunk/src/common.h: One last mentioning of
struct frame was there...
2007-10-16 00:59 thor
* trunk/src/genre.c, trunk/src/genre.h: The genres better
organized.
* trunk/src/layer3.h: *poof*
2007-10-16 00:52 thor
* trunk/src/audio.c, trunk/src/audio.h, trunk/src/buffer.c,
trunk/src/common.c, trunk/src/common.h,
trunk/src/control_generic.c, trunk/src/dct36_3dnow.S,
trunk/src/dct36_3dnowext.S, trunk/src/dct64.c,
trunk/src/dct64_3dnow.S, trunk/src/dct64_3dnowext.S,
trunk/src/dct64_altivec.c, trunk/src/dct64_i386.c,
trunk/src/dct64_i486.c, trunk/src/dct64_mmx.S,
trunk/src/dct64_sse.S, trunk/src/debug.h, trunk/src/decode.c,
trunk/src/decode.h, trunk/src/decode_2to1.c,
trunk/src/decode_3dnow.S, trunk/src/decode_4to1.c,
trunk/src/decode_altivec.c, trunk/src/decode_i386.c,
trunk/src/decode_i486.c, trunk/src/decode_i586.S,
trunk/src/decode_i586_dither.S, trunk/src/decode_mmx.S,
trunk/src/decode_mmxsse.S, trunk/src/decode_ntom.c,
trunk/src/dnoise.c, trunk/src/equalizer.c,
trunk/src/equalizer_3dnow.S, trunk/src/getbits.c,
trunk/src/getbits.h, trunk/src/getcpuflags.S,
trunk/src/getcpuflags.h, trunk/src/httpget.c,
trunk/src/httpget.h, trunk/src/huffman.h, trunk/src/icy.c,
trunk/src/icy.h, trunk/src/id3.c, trunk/src/id3.h,
trunk/src/id3print.c, trunk/src/id3print.h,
trunk/src/l2tables.h, trunk/src/layer1.c, trunk/src/layer2.c,
trunk/src/layer3.c, trunk/src/libmpg123/dct64_altivec.c,
trunk/src/libmpg123/decode_altivec.c,
trunk/src/libmpg123/layer1.c, trunk/src/libmpg123/layer2.c,
trunk/src/libmpg123/layer3.c,
trunk/src/libmpg123/mpg123lib_intern.h,
trunk/src/libmpg123/optimize.h, trunk/src/libmpg123/parse.c,
trunk/src/libmpg123/reader.h, trunk/src/libmpg123/readers.c,
trunk/src/libmpg123/tabinit.c, trunk/src/mangle.h,
trunk/src/module.c, trunk/src/mpg123.c, trunk/src/mpg123.h,
trunk/src/mpg123app.h, trunk/src/optimize.c,
trunk/src/optimize.h, trunk/src/playlist.c,
trunk/src/playlist.h, trunk/src/readers.c,
trunk/src/stringbuf.c, trunk/src/stringbuf.h,
trunk/src/system.c, trunk/src/tabinit.c,
trunk/src/tabinit_mmx.S, trunk/src/term.c, trunk/src/term.h,
trunk/src/testcpu.c, trunk/src/wav.c, trunk/src/xfermem.c,
trunk/src/xfermem.h: One big step of the messy part of libmpg123
merge. The hard code mixes should be done, easy code mixes to
follow... then the fun with the build system.
2007-10-16 00:13 thor
* trunk/src/libmpg123/system.c: Just language.
2007-10-14 22:32 thor
* trunk/src/libmpg123: Moving in the library source from the
mpg123lib branch.
2007-09-19 14:34 njh
* trunk/src/output/aix.c, trunk/src/output/alib.c,
trunk/src/output/alsa05.c, trunk/src/output/coreaudio.c,
trunk/src/output/dummy.c, trunk/src/output/hp.c,
trunk/src/output/jack.c, trunk/src/output/libao.c,
trunk/src/output/mint.c, trunk/src/output/nas.c,
trunk/src/output/os2.c, trunk/src/output/oss.c,
trunk/src/output/portaudio.c, trunk/src/output/sdl.c,
trunk/src/output/sgi.c, trunk/src/output/sun.c,
trunk/src/output/win32.c: Cleaned up output modules some more: -
All modules now contain module init code - Removed fprintf and
replaced with debug/warning/error macros - Converted spaces to
tabs
2007-09-18 13:31 njh
* trunk/src/output/portaudio.c, trunk/src/output/sdl.c: Moved
global variables to ao->userptr. Now shuts down libraries
properly when module is de-initialised.
2007-09-18 13:29 njh
* trunk/src/sfifo.c: Fix to prevent double-free.
2007-09-18 12:37 thor
* trunk/src/audio.c: -v -v now also prints the audio driver name.
2007-09-18 12:36 thor
* trunk/src/output/nas.c: Add a cast in debugging line to make
pedantic gcc happy.
2007-09-15 23:36 thor
* trunk/src/audio.c, trunk/src/audio.h, trunk/src/output/aix.c,
trunk/src/output/hp.c, trunk/src/output/sun.c: When we start
defining some module API, it is a bad idea to rely on the
mpg123-global param struct. So, I pushed the output flags back
into a proper data field in the audio output struct and give a
copy of param.output_flags to it when opening an output. In the
same place, I apply param.output_device to ao->device ... it
looks to me as it was intended that way to make -o module:device
really work.
2007-09-15 23:24 thor
* trunk/src/audio.h, trunk/src/mpg123.c, trunk/src/mpg123.h,
trunk/src/output/aix.c, trunk/src/output/hp.c,
trunk/src/output/sun.c: Integrate legacy -o h -o l -o s with
new-style -o module[:device] . When there is a one-letter
argument, the legacy flag is set - else, it is a module spec.
This implies a minimum length of a module name: 2 characters. I
think that shall be no problem for any sane module name. Along
with the option processing change, the output flag was put into
the parameter struct, as it has to be set _before_ the audio
structure is allocated.
2007-09-13 12:45 njh
* trunk/src/audio.c, trunk/src/audio.h, trunk/src/common.c,
trunk/src/control_generic.c, trunk/src/layer1.c,
trunk/src/layer2.c, trunk/src/layer3.c, trunk/src/mpg123.c,
trunk/src/mpg123.h: Now closing audio output module properly
Moved more relavent code into audio.c
2007-09-11 14:27 njh
* trunk/src/legacy_module.c: Added --list-modules message for
legacy build
2007-09-11 14:25 njh
* trunk/src/module.c, trunk/src/module.h: Changed all occurrences
of http://mpg123.de to http://mpg123.org (for consistency)
2007-09-11 14:12 njh
* trunk/src/mpg123.c: Added back command-line option to choose the
output module
2007-09-11 13:43 njh
* trunk/src/module.c: Added API version checking
* trunk/src/audio.c, trunk/src/module.c, trunk/src/output/alsa.c:
Fixes to make Linux compile
2007-09-11 13:35 njh
* trunk/src/output/pulse.c: Forgot to import this code from the
branch
2007-09-11 09:23 njh
* trunk/autogen.sh, trunk/configure.ac: Libtool is required to
build modules (and ranlib is obseleted)
2007-09-10 23:37 njh
* trunk/src/legacy_module.c, trunk/src/module.c,
trunk/src/output/sun.c: config.h gets included by mpg123.h these
days
2007-09-10 23:23 njh
* trunk/configure.ac, trunk/libltdl, trunk/src/Makefile.am,
trunk/src/Makefile.legacy, trunk/src/audio.c, trunk/src/audio.h,
trunk/src/audio_aix.c, trunk/src/audio_alib.c,
trunk/src/audio_alsa.c, trunk/src/audio_alsa05.c,
trunk/src/audio_coreaudio.c, trunk/src/audio_dummy.c,
trunk/src/audio_esd.c, trunk/src/audio_hp.c,
trunk/src/audio_jack.c, trunk/src/audio_libao.c,
trunk/src/audio_mint.c, trunk/src/audio_nas.c,
trunk/src/audio_os2.c, trunk/src/audio_oss.c,
trunk/src/audio_portaudio.c, trunk/src/audio_sdl.c,
trunk/src/audio_sgi.c, trunk/src/audio_sun.c,
trunk/src/audio_win32.c, trunk/src/buffer.c, trunk/src/common.c,
trunk/src/common.h, trunk/src/control_generic.c,
trunk/src/layer1.c, trunk/src/layer2.c, trunk/src/layer3.c,
trunk/src/layer3.h, trunk/src/legacy_module.c,
trunk/src/module.c, trunk/src/module.h, trunk/src/mpg123.c,
trunk/src/mpg123.h, trunk/src/output,
trunk/src/output/Makefile.am, trunk/src/output/aix.c,
trunk/src/output/alib.c, trunk/src/output/alsa.c,
trunk/src/output/alsa05.c, trunk/src/output/coreaudio.c,
trunk/src/output/dummy.c, trunk/src/output/esd.c,
trunk/src/output/hp.c, trunk/src/output/jack.c,
trunk/src/output/libao.c, trunk/src/output/mint.c,
trunk/src/output/nas.c, trunk/src/output/os2.c,
trunk/src/output/oss.c, trunk/src/output/portaudio.c,
trunk/src/output/sdl.c, trunk/src/output/sgi.c,
trunk/src/output/sun.c, trunk/src/output/win32.c,
trunk/src/term.c, trunk/src/term.h, trunk/src/wav.c: Finished
hacking in loadable output module support from branch
"njh-outputplugin". Legacy support allows statically compiling
in a single module. Still needs some work, but a quick test on
my MacBook worked :)
2007-08-27 21:33 thor
* trunk/src/Makefile.am, trunk/src/httpget.c, trunk/src/httpget.h,
trunk/src/mpg123.c, trunk/src/mpg123.h, trunk/src/playlist.c,
trunk/src/readers.c: A reaction to bug 1782603; centralizing the
MIME stuff in httpget.c and adding some aliases.
2007-08-06 23:23 thor
* trunk/NEWS: Little update to NEWS.
2007-08-06 23:04 thor
* trunk/README, trunk/man1/mpg123.1: - --long-help mentioned in
README - updated man page for --loop and --timeout
2007-08-06 22:52 thor
* trunk/INSTALL: INSTALL updates inspired by Winston.
2007-08-06 22:38 thor
* trunk/src/system.c: Well, this file is inactive atm., but we
still can fix some language.
2007-08-06 22:31 thor
* trunk/src/config.h.legacy: More positive suggestions for integer
types in config.h.legacy.
2007-08-06 22:19 thor
* trunk/configure.ac, trunk/src/Makefile.am: Combine MMX, SSE,
3DNowExt with fallback decoders and add the _alone cpu builds.
2007-08-06 21:12 thor
* trunk/AUTHORS, trunk/doc/THANKS: update contributors and
supporters
2007-08-06 20:45 thor
* trunk/AUTHORS: Reorder the maintainer eras in AUTHORS to go into
the past when scrolling down the file.
2007-08-03 23:06 thor
* trunk/src/common.c: little header cleanup in common.c
2007-08-03 13:09 thor
* trunk/src/mpg123.h: mpg123.h cleanup, removing old stuff that's
not needed.
2007-08-02 19:48 thor
* trunk/configure.ac, trunk/src/common.c, trunk/src/mpg123.h: Sort
out some integer type header stuff... central in mpg123.h .
2007-08-02 16:18 thor
* trunk/src/id3.c: Short is 16 bit, no need for inttypes.h in
id3.c .
2007-08-01 15:28 thor
* trunk/src/dct64_altivec.c, trunk/src/decode_altivec.c,
trunk/src/layer1.c, trunk/src/layer2.c, trunk/src/layer3.c,
trunk/src/optimize.h, trunk/src/tabinit.c: ALIGN(16) ->
ALIGNED(16), as there is already such a macro on MacOSX.
2007-08-01 15:03 thor
* trunk/src/dct64_altivec.c, trunk/src/decode_altivec.c,
trunk/src/layer1.c, trunk/src/layer2.c, trunk/src/layer3.c,
trunk/src/optimize.h, trunk/src/tabinit.c: Change alignment
macro name to ALIGN() and applying it everywhere where alignment
is needed in C code. That fixes MacOSX build (the aligned()
macro messed up left over __attribute__((aligned(16))) ...).
2007-07-28 00:58 thor
* trunk/src/control_generic.c, trunk/src/mpg123.c: Let the control
interface be at least built and in principle activated under
Win32; while it doesn't work because of select() being limited
to sockets.
2007-07-28 00:57 thor
* trunk/src/readers.c: Need sys/time.h!
2007-07-28 00:46 thor
* trunk/src/Makefile.legacy: SunOS not having strerror ...?
2007-07-28 00:15 thor
* trunk/src/mpg123.c, trunk/src/mpg123.h, trunk/src/readers.c:
Hide the timeout code (using select()) from Win32 to make that
build work again.
2007-07-27 23:35 thor
* trunk/src/Makefile.legacy: -DNO_RT for SunOS
2007-07-27 23:32 thor
* trunk/configure.ac, trunk/src/config.h.legacy,
trunk/src/mpg123.c, trunk/src/mpg123.h: Another hint from
Winston: be prepared for missing strerror.
2007-07-27 23:23 thor
* trunk/configure.ac: Going to be 0.67 .
2007-07-27 23:22 thor
* trunk/configure.ac, trunk/src/Makefile.legacy,
trunk/src/audio.c, trunk/src/audio_aix.c,
trunk/src/audio_alib.c, trunk/src/audio_alsa05.c,
trunk/src/audio_coreaudio.c, trunk/src/audio_hp.c,
trunk/src/audio_jack.c, trunk/src/audio_nas.c,
trunk/src/audio_oss.c, trunk/src/audio_portaudio.c,
trunk/src/audio_sdl.c, trunk/src/audio_sgi.c,
trunk/src/audio_sun.c, trunk/src/audio_win32.c,
trunk/src/buffer.c, trunk/src/common.c, trunk/src/common.h,
trunk/src/config.h.legacy, trunk/src/control_generic.c,
trunk/src/decode.c, trunk/src/decode_2to1.c,
trunk/src/decode_4to1.c, trunk/src/decode_altivec.c,
trunk/src/decode_i386.c, trunk/src/decode_i486.c,
trunk/src/decode_ntom.c, trunk/src/httpget.c, trunk/src/id3.c,
trunk/src/layer3.c, trunk/src/mpg123.c, trunk/src/mpg123.h,
trunk/src/playlist.c, trunk/src/readers.c,
trunk/src/stringbuf.c, trunk/src/system.c, trunk/src/tabinit.c,
trunk/src/term.c, trunk/src/wav.c, trunk/src/xfermem.c: A commit
motivated by SunOS veteran Winston. He gave SunOS 4.1.2 with gcc
2.7.0 a spin. A commit that looks bigger than it is. Most files
only got header #includes removed that are handled in mpg123.h .
Then there are the corresponding changes in mpg123.h; together
with the addition of safe_realloc for ancient systems. The ugly
need for snprintf in make_remote_header() has been avoided by
changing this one into print_remote_header(). The Question of
size_t, ssize_t and off_t is handled in configure now;
respectively in config.h.legacy .
2007-07-27 22:28 thor
* trunk/NEWS: Preparing NEWS for 0.67 .
2007-07-25 20:05 thor
* trunk/src/Makefile.am: Let 'make clean' clean *.a files, too.
2007-07-12 21:51 thor
* trunk/src/audio.c: Enable flexible rate for stdout decoding, too.
2007-07-12 21:34 thor
* trunk/src/control_generic.c: We can use the external one from
mpg123.c, should even, perhaps.
2007-07-01 08:21 thor
* trunk/src/id3.c: Hah! Now UTF8 filtering to ASCII finally works
thanks to Mika Tiainen.
2007-06-30 18:47 thor
* trunk/src/common.c: Notes in audio_flush() about it not being
relevant for buffered decoding. Strangely, there is this write
call for DECODE_BUFFER... I think that should be different... I
am not sure about how safe the buffer code is. I don't claim to
understand it, though.
2007-06-30 15:44 thor
* trunk/src/common.c: I was one frame off; -k 1 was a no-op since
the first frame number was incremented to 1 too soon. Now the
fresh frame number is -1 before read_frame and 0 for the first
frame after that. The funny part is, that the buggy variant
agrees with 0.59r and the corrected has a shift of 1 frame for
many mp3 files: 0.59r does not recognize the LAME tag and plays
a frame of silence instead. So, now it should be correct, albeit
differing from old mpg123.
2007-06-28 13:15 thor
* trunk/src/mpg123.c: a ) in help output
2007-06-28 13:07 thor
* trunk/src/mpg123.c, trunk/src/mpg123.h, trunk/src/playlist.c,
trunk/src/playlist.h: --loop: Specify loop count for tracks; <0
triggers endless loop; good for persistent internet streaming
with unreliable connection and --timeout
2007-06-28 12:07 thor
* trunk/src/mpg123.c, trunk/src/mpg123.h, trunk/src/readers.c:
--timeout <n>: Possibility to end playback on a stream that
doesn't give data for <n> seconds. I hope this helps the guy of
ROM 106.5FM with the non-static internet connection.
2007-06-12 00:28 thor
* trunk/src/Makefile.am: DK pointed this fix out to not break
compiles into separate object dirs: use more flags for cpp on .S
files.
2007-06-12 00:25 thor
* trunk/src/mpg123.c: Add a missing Y for the setpriority paranoia.
2007-06-04 23:22 thor
* trunk, trunk/src: ignore autogenerated stuff
2007-06-04 23:02 thor
* trunk/configure.ac, trunk/src/dct64_sse.S, trunk/src/layer1.c,
trunk/src/layer2.c, trunk/src/layer3.c, trunk/src/mangle.h,
trunk/src/optimize.h: If __attribute__((aligned(16))) works,
replace all left movups with movaps for dct64_sse, following a
patch by Zuxy Meng posted to MPlayer list. On my Pentium-M that
seems to gain about 1% of performance, while the other opts seem
to profit from the alignment, too.
2007-06-04 21:31 thor
* trunk/src/audio.c, trunk/src/audio_aix.c,
trunk/src/audio_alib.c, trunk/src/audio_alsa.c,
trunk/src/audio_alsa05.c, trunk/src/audio_coreaudio.c,
trunk/src/audio_dummy.c, trunk/src/audio_esd.c,
trunk/src/audio_hp.c, trunk/src/audio_jack.c,
trunk/src/audio_libao.c, trunk/src/audio_mint.c,
trunk/src/audio_nas.c, trunk/src/audio_os2.c,
trunk/src/audio_oss.c, trunk/src/audio_portaudio.c,
trunk/src/audio_sdl.c, trunk/src/audio_sgi.c,
trunk/src/audio_sun.c, trunk/src/audio_win32.c,
trunk/src/buffer.c, trunk/src/common.c,
trunk/src/control_generic.c, trunk/src/dct64.c,
trunk/src/dct64_altivec.c, trunk/src/dct64_i386.c,
trunk/src/dct64_i486.c, trunk/src/debug.h, trunk/src/decode.c,
trunk/src/decode_2to1.c, trunk/src/decode_4to1.c,
trunk/src/decode_altivec.c, trunk/src/decode_i386.c,
trunk/src/decode_i486.c, trunk/src/decode_ntom.c,
trunk/src/equalizer.c, trunk/src/getbits.c, trunk/src/httpget.c,
trunk/src/id3.c, trunk/src/layer1.c, trunk/src/layer2.c,
trunk/src/layer3.c, trunk/src/mpg123.c, trunk/src/mpg123.h,
trunk/src/optimize.c, trunk/src/playlist.c, trunk/src/readers.c,
trunk/src/system.c, trunk/src/tabinit.c, trunk/src/term.c,
trunk/src/wav.c, trunk/src/xfermem.c: Include config.h and
debug.h centrally in mpg132.h, remove redundant includes.
2007-06-04 20:10 thor
* trunk/src/optimize.c: Show decoder options in their priority
order.
2007-06-04 20:07 thor
* trunk/man1/mpg123.1: Update the man page date.
2007-06-04 19:53 thor
* trunk/scripts/benchmark-cpu.pl: Modify the script to use the
actually supported decoders.
2007-06-04 14:10 njh
* trunk/scripts/benchmark-cpu.pl: Perl script to benchmark each of
mpg123's CPU optimisations
2007-06-03 23:41 thor
* trunk/NEWS: news for 0.66
2007-06-03 23:28 thor
* trunk/src/optimize.c, trunk/src/optimize.h: complete the forced
/ flexible rate fallback for 3DNowExt->3DNow
2007-06-03 23:06 thor
* trunk/src/optimize.c: Do the pentium fallback for
forced/flexible rate also from 3DNowExt. I guess the root lies
in MMX...
2007-06-03 20:57 thor
* trunk/src/config.h.legacy: define some HAVE_*_H to make some
legacy builds build again
2007-06-03 20:11 thor
* trunk/README: little README update/fix
2007-06-01 09:54 thor
* trunk/configure.ac, trunk/doc/README.remote,
trunk/src/control_generic.c: Let the remote interface print the
greeting string _before_ waiting on the fifo. Also updated
documentation for control interface.
2007-06-01 09:34 thor
* trunk/man1/mpg123.1, trunk/src/mpg123.c: - set remote_err when
putting audio to stdout. - some documentation consistency
2007-06-01 08:07 thor
* trunk/configure.ac: OSF1 is not just a generic system - it's
UNIX!
2007-06-01 07:44 thor
* trunk/configure.ac: For now, define NOXFERMEM for -DGENERIC;
this has to be resolved with indivitual checks later.
2007-06-01 07:27 thor
* trunk/configure.ac, trunk/src/wav.c: Another GENERIC fix: check
for get/setuid.
2007-06-01 07:25 thor
* trunk/configure.ac, trunk/src/mpg123.c: One fix for generic
systems that have setpriority - check for the necessary headers
instead of system type.
2007-06-01 06:57 thor
* trunk/configure.ac: Fix configure for non-gcc
(with_optimization=0).
2007-06-01 00:32 njh
* trunk/MakeLegacy.sh, trunk/Makefile.am, trunk/autogen.sh,
trunk/configure.ac, trunk/misc/equalizer-control.pl,
trunk/src/Makefile.am, trunk/src/Makefile.legacy,
trunk/src/Makefile.win32, trunk/src/audio.c, trunk/src/audio.h,
trunk/src/audio_aix.c, trunk/src/audio_alib.c,
trunk/src/audio_alsa.c, trunk/src/audio_coreaudio.c,
trunk/src/audio_dummy.c, trunk/src/audio_esd.c,
trunk/src/audio_hp.c, trunk/src/audio_jack.c,
trunk/src/audio_libao.c, trunk/src/audio_mint.c,
trunk/src/audio_nas.c, trunk/src/audio_os2.c,
trunk/src/audio_oss.c, trunk/src/audio_portaudio.c,
trunk/src/audio_sdl.c, trunk/src/audio_sgi.c,
trunk/src/audio_sun.c, trunk/src/audio_win32.c,
trunk/src/buffer.c, trunk/src/buffer.h, trunk/src/common.c,
trunk/src/common.h, trunk/src/control_generic.c,
trunk/src/dct36_3dnow.S, trunk/src/dct64.c,
trunk/src/dct64_3dnow.S, trunk/src/dct64_altivec.c,
trunk/src/dct64_i386.c, trunk/src/dct64_i486.c,
trunk/src/dct64_mmx.S, trunk/src/decode.c, trunk/src/decode.h,
trunk/src/decode_2to1.c, trunk/src/decode_3dnow.S,
trunk/src/decode_4to1.c, trunk/src/decode_altivec.c,
trunk/src/decode_i386.c, trunk/src/decode_i486.c,
trunk/src/decode_i586.S, trunk/src/decode_mmx.S,
trunk/src/decode_ntom.c, trunk/src/equalizer.c,
trunk/src/equalizer_3dnow.S, trunk/src/genre.h,
trunk/src/getbits.c, trunk/src/getbits.h,
trunk/src/getcpuflags.S, trunk/src/getlopt.c,
trunk/src/getlopt.h, trunk/src/httpget.c, trunk/src/huffman.h,
trunk/src/icy.h, trunk/src/l2tables.h, trunk/src/layer1.c,
trunk/src/layer2.c, trunk/src/layer3.c, trunk/src/layer3.h,
trunk/src/mpg123.c, trunk/src/mpg123.h, trunk/src/optimize.c,
trunk/src/optimize.h, trunk/src/playlist.c,
trunk/src/playlist.h, trunk/src/readers.c,
trunk/src/stringbuf.c, trunk/src/stringbuf.h,
trunk/src/system.c, trunk/src/tabinit.c,
trunk/src/tabinit_mmx.S, trunk/src/term.c, trunk/src/term.h,
trunk/src/wav.c, trunk/src/xfermem.c, trunk/src/xfermem.h:
Changed all occurrences of http://mpg123.de to http://mpg123.org
(for consistency)
2007-05-31 22:43 thor
* trunk/man1/mpg123.1: Add hint for 'h' in terminal control mode.
2007-05-31 22:21 thor
* trunk/man1/mpg123.1: Add --fifo Option to man page.
2007-05-31 22:08 thor
* trunk/src/wav.c: Make this compile in normal mode with -Werror.
2007-05-31 22:06 thor
* trunk/configure.ac: re-enable -Werror for debugging build
2007-05-31 22:05 thor
* trunk/configure.ac, trunk/src/control_generic.c: Use mkfifo
instead of mknod, test for it in configure instead of guessing
based on operating system.
2007-05-31 21:45 thor
* trunk/configure.ac: x86 apple default to x86
2007-05-31 21:34 thor
* trunk/src/Makefile.am: add the x86_dither lib to EXTRA_LIBS
2007-05-31 21:31 thor
* trunk/src/Makefile.am, trunk/src/decode_i586_dither.S,
trunk/src/dnoise.c: Move the dither noise into a standalone C
file. That saves space (, instead of .float for every number)
and circumvents a workaround for the .float pseudo-op, which is
.single on MacOSX.
2007-05-31 20:09 thor
* trunk/src/optimize.c: Let --test-cpu print the actually
available decoders, not just the cpu flags.
2007-05-31 19:58 thor
* trunk/src/optimize.c: Don't claim we have anything with SSE2 or
SSE3.
2007-05-31 19:55 thor
* trunk/configure.ac, trunk/src/Makefile.am: towards a real
separation of x86 and x86_dither
2007-05-31 16:45 thor
* trunk/Makefile.am, trunk/man1, trunk/man1/mpg123.1,
trunk/mpg123.1, trunk/src/mpg123.c: Updated the manpage a bit.
2007-05-31 16:12 thor
* trunk/src/mpg123.c: fix file creation mode for -O
2007-05-31 15:55 thor
* trunk/src/Makefile.am: decode.h shall be distributed.
2007-05-31 15:54 thor
* trunk/configure.ac, trunk/src/common.c, trunk/src/common.h,
trunk/src/decode.c, trunk/src/decode.h, trunk/src/decode_2to1.c,
trunk/src/decode_4to1.c, trunk/src/decode_ntom.c,
trunk/src/getlopt.c, trunk/src/getlopt.h, trunk/src/mpg123.c,
trunk/src/mpg123.h, trunk/src/optimize.h, trunk/src/tabinit.c,
trunk/src/wav.c: I couldn't help myself... here is the option
for a build using the generic decoder that produces 32bit float
output. You select it via --with-cpu=generic_float, which
implies dummy output and also disables the buffer. The decoded
audio can be written raw or to a IEEE float wav file. This
demonstrates that it's doable and not too complicated for the
generic code. Next would be to a) make it into a runtime option
and b) adapt assembler opts to that. The latter will most likely
not happen for every opt.
2007-05-31 11:26 thor
* trunk/configure.ac: split x86 opts into x86: everything except
i486 and i586_dither (as it is large) x86_dither: everything
except i486 (x86 + 256K)
2007-05-31 11:25 thor
* trunk/src/optimize.c: list 3DNowExt
2007-05-30 17:52 thor
* trunk/configure.ac, trunk/src/dct36_3dnowext.S,
trunk/src/dct64_3dnowext.S, trunk/src/dct64_mmx.S,
trunk/src/dct64_sse.S, trunk/src/decode_3dnow.S,
trunk/src/decode_i586.S, trunk/src/decode_i586_dither.S,
trunk/src/decode_mmxsse.S, trunk/src/equalizer_3dnow.S,
trunk/src/getcpuflags.S, trunk/src/mangle.h,
trunk/src/tabinit_mmx.S: Trying to make assembler stuff work on
MacOSX: - test for behaviour of .align (exponent or direct byte
value) and macros in mangle.h - replace every align/p2align with
ALIGN4, ALIGN8, ALIGN16 or ALIGN32 - more BSS
2007-05-30 16:30 thor
* trunk/configure.ac: Add a default cpu target of x86 for i686-*
host.
2007-05-30 16:26 thor
* trunk/src/dct64_sse.S, trunk/src/decode_3dnow.S,
trunk/src/decode_i586.S, trunk/src/mangle.h: A first attempt to
silence the MacOSX assembler.
2007-05-30 16:16 thor
* trunk/src/audio.c: Some debug printf fixes (%li -> %i).
2007-05-29 13:21 thor
* trunk/src/mpg123.c, trunk/src/wav.c: Fix wav and raw output
under Win32 by explicitly setting the file mode to binary. The
distortion was caused by line end bytes being converted.
2007-05-29 13:20 thor
* trunk/configure.ac: Call FIFO suport disabled when it is after
auto detection.
2007-05-29 09:00 thor
* trunk/src/audio.c: Hopefully a last variant of the error
message. We'll clean up the capabilities code itself later with
the output plugins..
2007-05-28 19:30 thor
* trunk/src/audio.c: Yet another variant of error message, without
an appended parenthesed part.
2007-05-27 09:12 thor
* trunk/src/audio.c: More explained error message.
2007-05-27 08:56 thor
* trunk/src/audio.c: fix "you forced mono"
2007-05-25 10:06 thor
* trunk/doc/monostereo.txt, trunk/src/audio.c, trunk/src/mpg123.c,
trunk/src/mpg123.h: Fix force_mono logic and give meaningful
error messages when the audio device doesn't play.
2007-05-25 00:32 thor
* trunk/src/audio_win32.c: 1. Fix (?) the Win32 output. It used to
get a deadlock on waveOutWrite when callback wants the critical
section. Figured that we actually only need the critical section
to keep the block count straight. 2. Reformat the code. Still, I
don't like the win32 output. It cannot be efficient to
allocate/deallocate memory blocks all the time. A fixed set of
buffers makes so much sense. Just manage an array of them (do I
need so many, even?).
2007-05-24 22:56 thor
* trunk/configure.ac: Detect win32 audio by probing windows.h ...
the winmm library check just doesn't work.
2007-05-24 22:55 thor
* trunk/src/mpg123.h: no double declaration of REAL_IS_FLOAT on
Win32
2007-05-24 12:57 thor
* trunk/configure.ac, trunk/src/audio_sdl.c,
trunk/src/audio_win32.c: trying to add win32 again
2007-05-24 12:38 thor
* trunk/README: little README update regarding SSE/3DNowExt
2007-05-24 12:14 thor
* trunk/src/decode_mmxsse.S, trunk/src/mpg123.c,
trunk/src/optimize.h: fix single cpu compiles by fixing MPLAYER
-> OPT_MPLAYER
2007-05-24 02:37 thor
* trunk/src/Makefile.am, trunk/src/dct36_3dnowext.S,
trunk/src/dct64_3dnowext.S: Fix dependencies and comments for
some of the new asms. Now a x86 build "just works".
2007-05-24 02:36 thor
* trunk/src/control_generic.c: Fix a warning about comstr.
2007-05-24 02:06 thor
* trunk/src/Makefile.am, trunk/src/dct36_3dnowext.S,
trunk/src/dct36_3dnowext.c, trunk/src/dct64_3dnowext.S,
trunk/src/dct64_3dnowext.c, trunk/src/dct64_sse.S,
trunk/src/dct64_sse.c, trunk/src/decode_mmxsse.S,
trunk/src/decode_mmxsse.c: Really switch to standalone assembler
for SSE and extended 3DNow (some cleanup and mergeing still due)
now. Also use CCASFLAGS for assembler files.
2007-05-24 01:49 thor
* trunk/src/dct64_3dnowext.S, trunk/src/decode_mmxsse.S: ASM_NAME
fixes
2007-05-24 00:17 thor
* trunk/src/dct36_3dnowext.S, trunk/src/dct64_3dnowext.S,
trunk/src/dct64_sse.S, trunk/src/decode_i586.S,
trunk/src/decode_i586_dither.S, trunk/src/decode_mmxsse.S,
trunk/src/mangle.h, trunk/src/tabinit_mmx.S: Another step to
convert stuff to (kindof portable) external asm.
2007-05-23 22:36 thor
* trunk/configure.ac: How smart am I? Now again the OSS check.
2007-05-23 00:18 thor
* trunk/configure.ac: Now really...
2007-05-22 23:23 thor
* trunk/configure.ac: fix OSS detection, tell what audio systems
were detected
2007-05-22 22:55 thor
* trunk/src/decode_mmxsse.S: Turn this into standalone ASM...
gonna see what cygwin/mingw say to this.
2007-05-22 21:26 thor
* trunk/src/decode_mmxsse.c: typo in comment
2007-05-17 16:28 thor
* trunk/src/audio_alsa.c: apply fix from Clemens for bug 1691913
handling underrun now
2007-05-09 12:49 thor
* trunk/configure.ac, trunk/src/control_generic.c,
trunk/src/mpg123.c, trunk/src/mpg123.h: 1. FIFO support in
control_generic just reading from STDIN and mkfifo
/tmp/mpg123_fifo mpg123 -R < /tmp/mpg123_fifo & doesn't make
repeated `echo command > /tmp/mpg123_fifo` possible, so a bit of
extra code added mpg123 -R --fifo /tmp/mpg123_fifo And you have
your mpg123 daemon randomly controlled by the fifo. 2. Fixup
command parsing for multiple commands in one read() (which
usually never happens) ... it was just wrong before. Now it's
still not nice code, but works. Also there's no malloc needed
anymore, which is good.
2007-05-09 12:19 thor
* trunk/src/audio.c: tell the device dame in verbose mode
2007-05-02 23:02 thor
* trunk/configure.ac, trunk/src/Makefile.am: fix the rename to
coreaudio for configure/make ... cannot test here, but need make
dist to work
2007-05-02 22:52 thor
* trunk/configure.ac: fall back to dummy output properly
2007-05-02 22:48 thor
* trunk/configure.ac, trunk/src/Makefile.am,
trunk/src/audio_portaudio.c, trunk/src/buffer.c,
trunk/src/buffer.h, trunk/src/common.c,
trunk/src/control_generic.c, trunk/src/decode_3dnow.S,
trunk/src/decode_i586.S, trunk/src/decode_i586_dither.S,
trunk/src/mangle.h, trunk/src/tabinit_mmx.S, trunk/src/term.c,
trunk/src/wav.c: Hacking MinGW32 into cooperation, in dialog
with Elia Blance. This restores some work of Tony Million from
ages ago... wrapping buffer code properly into #ifndef NOXFERMEM
again (except in term.c, which is a different beast). Hack
Makefile for the preprocessed .S files (mingw doesn't run cpp by
itself). Got autoconf'ed x86 portaudio/mme build working for
*-mingw32; Elia wants SDL ...;-) Also configure now doesn't look
at OS for choosing default audio output but at the available
output systems instead. Let's keep this hardcoding at a minimum.
Sound playback works, control_generic not (no stdin in windows
terminal?). Assembler opts work nicely (including --cpu choice).
WAV writing has distortion ... twisted endianess?
2007-05-02 12:08 thor
* trunk/src/control_generic.c: wrap buffer code in #ifndef
NOXFERMEM
2007-05-01 16:16 thor
* trunk/src/optimize.c, trunk/src/optimize.h: Make MMX and SSE
fall back to i586 and friends (what's available) when
auto-choosing cpu and -r <rate> is given. That's what I can do
about bug 1545293 for now. When we have the next release with
the x86 combined build, people are able to properly do flexible
rate mode even with an MMX-enabled (or SSE) build. On the long
term we need a) separating the decoding tables (I guess the
special mmx table is interfering here) b) making the opts work
with resampling natively
2007-04-20 21:47 thor
* trunk/scripts/debugdef.pl, trunk/src/debug.h,
trunk/src/httpget.c: Fix up the debugging macros; syntactic
appearance as functions again (no closing ; in macro itself) (as
DK suggested, basically).
2007-04-11 23:43 njh
* trunk/src/audio.c: What was this old ALSA stuff still doing here
2007-04-11 22:29 njh
* trunk/src/audio_coreaudio.c, trunk/src/audio_macosx.c: Renamed
macosx to coreaudio
* trunk/src/audio_jack.c: Fixed C90 problems
2007-04-10 20:59 njh
* trunk/src/Makefile.am: Added rule to build testcpu
2007-03-11 21:54 thor
* trunk/src/optimize.c: don't pollute generic control interface
with "decoder: SSE"
2007-03-05 00:09 thor
* trunk/src/decode_mmxsse.c, trunk/src/optimize.c: fix debug
compile in optimize.c ... noted inevitable failure of debug
compile in decode_mmxsse (long long)
2007-03-05 00:06 thor
* trunk/configure.ac: make the all-in-one x86 opt the default
guess for i586+ linux/cygwin of course --with-cpu still gives
you the smaller binary optimized for one cpu only
2007-03-04 23:46 thor
* trunk/src/Makefile.am: add getcpuflags.h to the distro
2007-03-04 22:07 thor
* trunk/src/Makefile.am, trunk/src/dct36_3dnow.S,
trunk/src/dct64_3dnow.S, trunk/src/dct64_mmx.S,
trunk/src/dct64_mmx.s, trunk/src/decode_3dnow.S,
trunk/src/decode_i586.S, trunk/src/decode_i586.s,
trunk/src/decode_i586_dither.S, trunk/src/decode_i586_dither.s,
trunk/src/decode_mmx.S, trunk/src/decode_mmx.s,
trunk/src/equalizer_3dnow.S, trunk/src/getcpuflags.S,
trunk/src/tabinit_mmx.S, trunk/src/tabinit_mmx.s: convert
standalone assembler codes to C preprocessed asm, using mangle.h
and adding some quirks to make cygwin happy
2007-03-04 22:06 thor
* trunk/src/optimize.c, trunk/src/optimize.h: fix the optmize
stuff again, optmize.c only for multi, fix mmx standalone with
OPT_MMXORSSE instead of MMXORSSE
2007-03-04 22:04 thor
* trunk/src/mpg123.c: common.h is needed for print_stat
2007-03-04 11:58 thor
* trunk/src/mpg123.c, trunk/src/optimize.c: cleaning up cpuflags
stuff ... really enabling test-cpu for 3dnow
2007-03-04 03:17 thor
* trunk/configure.ac, trunk/src/Makefile.am,
trunk/src/dct36_3dnow.S, trunk/src/dct36_3dnow.s,
trunk/src/dct64_3dnow.S, trunk/src/dct64_3dnow.s,
trunk/src/decode_3dnow.S, trunk/src/decode_3dnow.s,
trunk/src/equalizer_3dnow.S, trunk/src/equalizer_3dnow.s:
cpp-ified some more asm, fix 3dnow in autoconf
2007-03-04 01:55 thor
* trunk, trunk/AUTHORS, trunk/build, trunk/src,
trunk/src/Makefile.am, trunk/src/Makefile.legacy,
trunk/src/getcpuflags.S, trunk/src/getcpuflags.s,
trunk/src/mangle.h, trunk/src/mpg123.c, trunk/src/mpg123.h,
trunk/src/optimize.c, trunk/src/optimize.h: - fix optimize.c to
compile again, clean up some 3dnow lecacy stuff - getcpuflags
asm is now fed through cpp (.S triggers that for gcc ... for
other compilers we could trivially force this) - also fix some
svn:ignores to lower the noise ...
2007-03-04 01:43 thor
* trunk/src/getcpuflags.s: now using cpp to get name mangling done
2007-03-02 23:34 thor
* trunk/src/getcpuflags.h, trunk/src/getcpuflags.s,
trunk/src/mpg123.c, trunk/src/optimize.c, trunk/src/testcpu.c:
refacor the cpu flag code ... now one asm funtion for all flags
adapted the optimize stuff Note: 3dnow has to be fixed again, or
at least documented that the current behaviour is to build
_only_ 3dnow in. To reproduce previous behaviour one would need
to make the 3dnow opt an alias for multi with 3dnow and i586.
That would be compatible, but inconsistent.
2007-02-28 09:18 thor
* trunk/src/getcpuflags.s, trunk/src/testcpu.c: fix the cpuid asm
to be correctly skipped on a cpu that doesn't support it, add a
simple standalone cpu flag tester still need to reorganize the
split getcpuflags.s functions back into one
2007-02-25 20:55 thor
* trunk/src/mpg123.c: #ifdef some mplayer import specific code in
mpg123.c
2007-02-25 16:32 thor
* trunk/README, trunk/src/common.c, trunk/src/common.h,
trunk/src/control_generic.c, trunk/src/mpg123.h,
trunk/src/term.c, trunk/src/term.h: Adding more control to
terminal control: volume, rva and verbosity switch... also added
volume and rva info to status display.
2007-02-22 05:09 thor
* trunk/configure.ac, trunk/src/Makefile.am,
trunk/src/dct36_3dnowext.c, trunk/src/dct64_3dnowext.c,
trunk/src/decode_i386.c, trunk/src/decode_mmxsse.c,
trunk/src/mpg123.c, trunk/src/optimize.c, trunk/src/optimize.h:
I cannot stop... hacked 3DNowExt from MPlayer in (check license
again...) It builds but I still have to test it on a 3dnowext
box. And... these MPlayer imports are not really nicely crafted.
One should tidy up.
2007-02-22 03:47 thor
* trunk/src/mpg123.c, trunk/src/mpg123.h: mangle the 3dnow and
multi test option a bit for staying compatible in the solo 3dnow
build
2007-02-22 03:38 thor
* trunk/src/optimize.c: formatting, lowercase features
2007-02-22 03:29 thor
* trunk/src/getcpuflags.s, trunk/src/mpg123.c, trunk/src/mpg123.h,
trunk/src/optimize.c, trunk/src/optimize.h: more relentless
duplication in the cpuflags code to detect all interesting
features and cpu family, adding a generic feature set test
(instead of only 3dnow test) and tests for auto selection of
opts not yet decided to prevent user from setting invalid opt
besides for non-pentium class cpus
2007-02-22 02:09 thor
* trunk/src/mangle.h: adding this header for a moment ... it's
gpl-only and possibly only temporary until I decided what to do
with the SSE stuff
2007-02-22 02:04 thor
* trunk/src/decode_i386.c, trunk/src/getcpuflags.s,
trunk/src/mpg123.c, trunk/src/optimize.c, trunk/src/optimize.h:
fixing i386 code with gcc-4.1 by using the old WRITE_SAMPLE
again - the new one has distorted sound and gcc complains about
strict aliasing ... the old WRITE_SAMPLE even seems to be faster
with gcc-3.4! Of course I didn't (yet) test on my real i386DX40
if there's an advantage. Started mocking with cpuflags to get
proper MMX and SSE detection.
2007-02-22 00:54 thor
* trunk/src/optimize.c, trunk/src/optimize.h: some fixing for
multi mode... need to do cpu detection for real
2007-02-21 23:43 thor
* trunk/configure.ac: debugging mode won't compile the i386 code
with strict aliasing rules because of WRITE_SAMPLE, adding
-fno-strict-aliasing
2007-02-20 04:00 thor
* trunk/configure.ac, trunk/src/Makefile.am,
trunk/src/decode_i386.c, trunk/src/mpg123.c, trunk/src/mpg123.h,
trunk/src/optimize.c, trunk/src/optimize.h: a first edition of
the merged build ... only serves to produce silence of funny
sounds atm. ... dunno why but getting some sleep looks like a
valid option
2007-02-20 03:07 thor
* trunk/configure.ac, trunk/src/Makefile.am,
trunk/src/dct64_sse.c, trunk/src/decode_i386.c,
trunk/src/decode_mmxsse.c, trunk/src/layer2.c,
trunk/src/layer3.c, trunk/src/optimize.c, trunk/src/optimize.h:
Adding SSE from MPlayer! Surprised how this worked with some
guessing and late night disrespect. This now is again a bit
faster than the gcc-4.1 enhanced i386 code; and also mpg123 is
now again a bit faster than MPlayer at decoding mp3 on an SSE
cpu (well, mplayer's bigger architecture has to show somewhere
... perhaps it's even just the faster update of progress display
on terminal, which I only redirected to /dev/null in the test).
What's missing is the 3DNow!Ext code, that should be adaptible
in the same way as the SSE code was, but it may make sense to
make that a bit prettier first. Oh ... and downsampling is quite
silent. I guess mplayer didn't use that and somehow it does not
magically start working for mpg123. I can still switch to
another dct function...
2007-02-20 01:43 thor
* trunk/src/Makefile.legacy, trunk/src/optimize.c: update the
legacy Makefile
2007-02-19 19:15 thor
* trunk/NEWS, trunk/configure.ac, trunk/src/Makefile.am,
trunk/src/common.c, trunk/src/dct64_altivec.c,
trunk/src/dct64_i386.c, trunk/src/dct64_i486.c,
trunk/src/dct64_mmx.s, trunk/src/decode.c,
trunk/src/decode_2to1.c, trunk/src/decode_4to1.c,
trunk/src/decode_altivec.c, trunk/src/decode_i386.c,
trunk/src/decode_i486.c, trunk/src/decode_i586.s,
trunk/src/decode_i586_dither.s, trunk/src/decode_ntom.c,
trunk/src/layer2.c, trunk/src/layer3.c, trunk/src/mpg123.c,
trunk/src/mpg123.h, trunk/src/optimize.c, trunk/src/optimize.h,
trunk/src/tabinit.c, trunk/src/tabinit_mmx.s: Starting to hack
for 0.66; with the crazy idea to prepare the possibility of a
unified build featuring a set of (x86) optimizations to choose
from at runtime. I got it now so far that it compiles for the
one-opt builds; optmization metalogic stuff shall cluster
in/around optimize.[hc] . Some interesting numbers I got on -t
with different opts, i386 outpacing all others... Oh: As a
drive-by I removed the -march settings from the cpu_type opts;
that prevented my -march=pentium-m from being effective, which
interestingly didn't harm the i386 build, but the i486 one by a
great deal.
2007-02-07 09:19 thor
* trunk/NEWS: updating for 0.65
2007-02-07 09:13 thor
* trunk/configure.ac: wrap gcc specific flags into $GCC = yes,
first attempt to support SGI systems again (untested)
2007-02-07 09:03 thor
* trunk/src/layer3.c: just a comment about the region1>region2
check, hinting at the possibility that it gives false positives
at lame 3.70 files - or that these files are just broken
2007-01-31 21:37 thor
* trunk/src/common.c: adding a debug message on crc bit change to
clarify that the fix for bug 1629697 also fixes 1648271
2007-01-31 20:54 thor
* trunk/configure.ac: Do not use -Wall per default (it's gcc
specific and also why nag the users with the warnings?)
2007-01-22 03:09 thor
* trunk/src/id3.c: fixing bug 1641195 (id3v2.3 does not store
synchsafe frame sizes) as well as an error with the msb of
synchsafe longs (would have impact with tags >2MiB)
2007-01-22 02:38 thor
* trunk/src/id3.c: id3v2.2 is a different beast, do not try to
parse that
2007-01-20 21:06 thor
* trunk/src/common.c, trunk/src/common.h: seen the real root of
the evil of bug 1629697: there is an old lame tag from lame 3.70
that has a header without crc bit but that track has crc. Now
allowing the crc bit to vary in stream - it's no big deal...
This extends the bugfix to no also correctly parsing the lame
tag.
2007-01-20 18:42 thor
* trunk/src/common.c, trunk/src/getbits.c: fixing 1629697
(awaiting verify from user): the error protection bit was lost
during search for first valid header (an initial bad header set
it to 0, now for the valid header search the stuff is
rerinitialized)
2007-01-15 20:29 thor
* trunk/configure.ac: incrementing the version number in advance
to 0.65 to not miss it again like for 0.64
2007-01-15 20:22 thor
* trunk/NEWS: preparing for 0.64
2007-01-15 20:10 thor
* trunk/src/httpget.c: fixing a DOS issue with read errors on HTTP
(now failing properly instead of endless loop)
2007-01-14 16:33 thor
* trunk/NEWS, trunk/README, trunk/configure.ac: preparing for 0.63
2007-01-12 15:05 njh
* trunk/src/id3.c, trunk/src/readers.c: Fixes for warning: format
'%d' expects type 'int', but argument 5 has type 'size_t'
2006-12-30 00:34 thor
* trunk/doc/BUGS: removed this bug entry because it was no bug but
just entering an url on the shell... an url containing & ...
it's a bit embarassing;-)
2006-12-30 00:25 thor
* trunk/src/Makefile.legacy, trunk/src/config.h.legacy,
trunk/src/httpget.c, trunk/src/xfermem.c: cleanup generic code
with dummies for xfermem and http
2006-12-24 05:16 thor
* trunk/AUTHORS, trunk/NEWS, trunk/README, trunk/configure.ac,
trunk/doc/README.remote, trunk/mpg123.1: preparing for 0.62
2006-12-24 04:56 thor
* trunk/src/common.c, trunk/src/common.h,
trunk/src/control_generic.c: JUMP generic command now accepts
offset/position in seconds (suffix "s" to number)
2006-12-24 04:24 thor
* trunk/doc/BUGS: this backgrounding is strange... only seen it on
smgl yet, but then for any pls-capable mpg123.
2006-12-24 02:29 thor
* trunk/src/Makefile.legacy, trunk/src/common.c,
trunk/src/control_generic.c, trunk/src/httpget.c,
trunk/src/readers.c: first working soutcast/ICY meta data
support; we need an unsigned byte and it starts with stream
data, not meta data Info output is in normal console output and
generic control frontend... terminal control mode following
2006-12-22 02:28 thor
* trunk/scripts/debugdef.pl, trunk/src/Makefile.am,
trunk/src/Makefile.legacy, trunk/src/debug.h,
trunk/src/httpget.c, trunk/src/icy.c, trunk/src/icy.h,
trunk/src/mpg123.c, trunk/src/readers.c, trunk/src/stringbuf.c,
trunk/src/stringbuf.h: Essential part of ICY support. It's in
reader and http_open. Missing is only proper output - and, that
it actually works:-/ There is something fishy in the reader...
2006-12-22 02:26 thor
* trunk/doc/BUGS: one old entry removed, added one about
backgrounding when playing internet radio
2006-12-21 23:22 thor
* trunk/src/readers.c: reformatting readers.c before adding the
ICY stuff
2006-12-21 23:11 thor
* trunk/src/common.c, trunk/src/readers.c: removed the dead
READ_MMAP code
2006-12-21 23:06 thor
* trunk/src/readers.c: shake hands with open_stream again,
formatting and comments
2006-12-02 14:17 thor
* trunk/AUTHORS, trunk/src/common.c, trunk/src/common.h,
trunk/src/control_generic.c, trunk/src/id3.c,
trunk/src/mpg123.c, trunk/src/mpg123.h: - added volume setting
for frontend - added rva setting for frontend, refined rva
settign a bit (fixed a bug with first setting not being made ??)
- c90 fixes - rva defines not wrapped in gapless ifdef - updated
pasky's deeds
2006-11-30 11:16 thor
* trunk/src/httpget.c, trunk/src/playlist.c, trunk/src/readers.c:
adding acceptance of MIME types application/pls and audio/x-mpeg
... Perhaps this list of aliases for playlists and streams has
to grow further...
2006-11-20 09:08 thor
* trunk/src/audio_oss.c: Remove byteswapping code that got
accidentally reactivated (OSS output now simply requests native
endianess) - thanks for pointing out, DK!
2006-11-02 17:32 thor
* trunk/src/id3.c, trunk/src/mpg123.c, trunk/src/mpg123.h: merged
pasky's ide about adaptive condensed tag display and made it
default; added --long-tag option for the previous, space taking,
variant (one may prefer it on occasion)
2006-11-02 17:09 thor
* trunk/src/common.c, trunk/src/id3.c: de-verbose, moved notes at
least one verbosity level up There was too much noise...
2006-11-02 16:40 thor
* trunk/src/id3.c, trunk/src/stringbuf.c: adapting and fixing
pasky's (Petr Baudi) utf emergency patch (at least interpreting
and converting to lating1/ascii where possible), avoids messing
up the terminal when encountering unicode
2006-10-31 19:02 njh
* trunk/configure.ac, trunk/src/audio_macosx.c: Applied patch from
Taihei Monma to using AudioUnit API instead of coreaudio API
2006-10-30 03:15 thor
* trunk/AUTHORS, trunk/src/term.c: term patch (restore on sigcont)
from petr baudis
2006-10-24 21:56 thor
* trunk/src/audio_nas.c: corrected is error1 with one argument -
thanks, DK
2006-10-20 23:10 njh
* trunk/configure.ac: Don't think the space at the start of the
file was deliberate
2006-10-20 22:00 thor
* trunk/AUTHORS, trunk/NEWS, trunk/README, trunk/mpg123.1:
preparing for 0.61
2006-10-20 11:25 thor
* trunk/configure.ac: reassuring notes about cygwin
2006-10-12 13:48 thor
* trunk/src/mpg123.c: trying to mke the generic code compile again
- catch_child should not be used when we do not define it
2006-10-12 13:33 thor
* trunk/src/id3.c: do not use C99 types without _very_ good reason
2006-10-12 13:29 thor
* trunk/src/httpget.c: fake http_open had bad definition
* trunk/configure.ac: test with ==, not =
2006-10-11 23:14 njh
* trunk/AUTHORS, trunk/configure.ac, trunk/src/Makefile.am,
trunk/src/dct64_altivec.c, trunk/src/decode_altivec.c,
trunk/src/tabinit.c: Added Taihei Monma's AltiVec improvements
2006-10-10 23:45 thor
* trunk/src/dct64_i486.c: applied i486 patch from Petr Salinger
<Petr.Salinger@seznam.cz> (sf.net tracker
http://sourceforge.net/tracker/index.php?func=detail&aid=1572103&group_id=135704&atid=733194)
2006-10-10 08:41 thor
* trunk/configure.ac: oh, the kfreebsd cpus are the same as for
linux, thanks Petr
2006-10-09 22:14 thor
* trunk/configure.ac: configure update for kfreebsd (bsd with gnu
userspace) and cygwin (no assembler by default, oss instead of
lame-linking esd)
2006-10-09 21:42 thor
* trunk/src/common.c, trunk/src/control_generic.c,
trunk/src/mpg123.h: Slimmed the ugly #ifdef REAL_IS... stuff in
scanf based on central format definition in mpg123.h; also added
such safe format for a printf (sendmsg). Jens Wilhelm Wulf
suggested something like that. I agree.
2006-10-05 16:04 thor
* trunk/mpg123.1: we can do mpeg 2.5!
2006-09-30 16:10 thor
* trunk/src/common.c, trunk/src/common.h, trunk/src/readers.c: Ok,
Struggled a while to nail bug 1556471. We have now (for seekable
streams) a basic read ahead for finding the real first frame.
The next step would be to make every resync use that, but the
most important situation is nasty garbage at beginning of file.
I also loosened the HDRCMPMASK to allow changing bitrate - the
resync disregards valid VBR frames otherwise.
2006-09-29 23:42 thor
* trunk/src/audio.c, trunk/src/audio.h, trunk/src/audio_alib.c,
trunk/src/audio_jack.c, trunk/src/audio_macosx.c,
trunk/src/audio_mint.c, trunk/src/audio_nas.c,
trunk/src/audio_oss.c, trunk/src/audio_portaudio.c,
trunk/src/audio_sdl.c, trunk/src/audio_sgi.c,
trunk/src/common.c, trunk/src/control_generic.c,
trunk/src/decode_ntom.c, trunk/src/getlopt.c,
trunk/src/httpget.c, trunk/src/mpg123.c, trunk/src/mpg123.h,
trunk/src/playlist.c, trunk/src/readers.c, trunk/src/tabinit.c:
Big commit, inspired by bug 1555113 a) turning any potentially
harmful (to terminal) exit()s into return or safe_exit in
mpg123.c b) alsong that, convert many fprintf(stderr to the
error macro I tried to refrain from more cleanups...
2006-09-27 20:32 thor
* trunk/src/wav.c: replace various exit()s to return instead, use
error/waring macros
2006-09-27 19:36 thor
* trunk/configure.ac: according to bug id 1556769, fix solaris
detection
2006-09-27 18:13 thor
* trunk/src/common.c, trunk/src/common.h,
trunk/src/control_generic.c, trunk/src/mpg123.c,
trunk/src/term.c, trunk/src/term.h: give targeted position in
terminal mode then seeking while stopped
2006-09-27 17:15 thor
* trunk/src/control_generic.c, trunk/src/layer3.c,
trunk/src/layer3.h: Extended gapless mode for control_generic to
also cover the pause-seek-unpause case where not a gap but a
tick from the grave is the problem (because of old frames
influencing new ones at different location in stream). I don't
claim that it is nice what I did, but it seems to work nicely
for me.
2006-09-20 10:24 thor
* trunk/configure.ac: we are working on the next release
2006-09-20 10:22 thor
* trunk/src/term.c: prevent unpleasant effect when stopping,
seeking, resuming
2006-09-14 18:57 thor
* trunk/src/layer3.c: applied the CVE-2006-1655 fix at another
very similar location
2006-09-04 17:29 thor
* trunk/configure.ac, trunk/src/audio_esd.c: make ESD work for
otehr systems with dummy queueflush, try to support Cygwin
2006-08-30 13:18 thor
* trunk/doc/ROAD_TO_LGPL: another typo
2006-08-30 02:58 thor
* trunk/src/Makefile.am: some default config.h.legacy should not
hurt
2006-08-30 02:57 thor
* trunk/ChangeLog: dummy again
2006-08-30 02:53 thor
* trunk/src/audio_alsa.c: info for bug 1547470
2006-08-29 21:56 thor
* trunk/ChangeLog, trunk/NEWS: last NEWS
2006-08-29 21:54 thor
* trunk/INSTALL: small correction for libasound and typo
2006-08-29 21:53 thor
* trunk/src/layer3.c: this sort of / spurious overflow is too
common, debug+verbose
2006-08-29 21:52 thor
* trunk/configure.ac: calling it version 0.60
2006-08-29 17:09 thor
* trunk/configure.ac: copy and pase typo, nas is not alsa
2006-08-29 12:04 thor
* trunk/src/id3.c: fix compiler warning about sign differing
pointers
2006-08-29 11:57 thor
* trunk/doc/PATENTS: typo
2006-08-27 09:22 thor
* trunk/NEWS: news for 0.60-beta6
2006-08-27 09:14 thor
* trunk/Makefile.am: also distribute the THANKS
* trunk/doc/THANKS: as Gabor suggested - let us be thankful
2006-08-27 09:08 thor
* trunk/configure.ac: goign to be last beta - for real now!
2006-08-27 01:50 thor
* trunk/src/Makefile.am, trunk/src/Makefile.legacy,
trunk/src/common.c, trunk/src/common.h,
trunk/src/control_generic.c, trunk/src/id3.c, trunk/src/id3.h,
trunk/src/mpg123.c, trunk/src/mpg123.h, trunk/src/stringbuf.c,
trunk/src/stringbuf.h: Too big upgrade... It is actually just
about better id3 support, namely adding basic parsing and
display of id3v2 text info fields. The code for that was
outsourced from common.c - that file contained too much "common"
code... One change on the side ofthe way is that control_generic
now doesn't exit but return properly so that the main routine
can cleanup afterwards
2006-08-26 14:53 thor
* trunk/src/Makefile.am, trunk/src/playlist.c,
trunk/src/playlist.h, trunk/src/stringbuf.c,
trunk/src/stringbuf.h: stringbuf on its own to be reused
2006-08-26 13:59 thor
* trunk/src/common.c, trunk/src/readers.c: moved id3 printing to
read_frame; going to add id3v2 printing support there
2006-08-26 13:45 thor
* trunk/src/common.c: promote some ID3v2 info form debug to very
verbose
2006-08-25 12:28 thor
* trunk/src/audio_libao.c, trunk/src/mpg123.c,
trunk/src/playlist.c: struggling to stay C90 compatible...
mostly (no %z printf specifier)
2006-08-25 10:36 thor
* trunk/NEWS, trunk/configure.ac: steering towards beta5
2006-08-25 10:28 thor
* trunk/configure.ac, trunk/doc/TODO, trunk/src/Makefile.am: form
framework to support fixed point arithmetic; normal playback
working with generic_nofpu
2006-08-25 09:28 thor
* trunk/src/mpg123.c, trunk/src/playlist.c, trunk/src/playlist.h:
playlist entry length not statically limited anymore, memory
housekeeping
2006-08-25 09:24 thor
* trunk/src/getlopt.c: memory gets lost on strdup according to
valgrind...
2006-08-24 21:53 thor
* trunk/src/playlist.c, trunk/src/playlist.h: boilerplates for
playlist...
2006-08-24 21:52 thor
* trunk/src/Makefile.am, trunk/src/Makefile.legacy,
trunk/src/mpg123.c, trunk/src/mpg123.h, trunk/src/playlist.c,
trunk/src/playlist.h: A step to a leaner mpg123.c: outsourced
and reorganized the playlist code. Main functionality change is
that the whole playlist is read in on program start (rather
needed for http playlists since few servers will keep up the
connection for the duration of several tracks).
2006-08-24 10:53 thor
* trunk/ChangeLog: dummy ChangeLog so that autogen.sh does not
complain anymore
2006-08-24 09:18 thor
* trunk/src/mpg123.c: fixing bug 1544530; do not parse listname
when it is NULL
2006-08-24 08:08 thor
* trunk/src/audio_alsa.c: note about needed adjustable alsa buffer
2006-08-24 08:06 thor
* trunk/src/config.h.legacy: sys/types.h could be needed
2006-08-24 08:05 thor
* trunk/src/mpg123.c: give chose audio rate in very verbose mode
2006-08-22 12:20 thor
* trunk/src/common.c: missed a line break in rva message
2006-08-22 09:31 thor
* trunk/COPYING, trunk/INSTALL, trunk/NEWS, trunk/README: more doc
update
2006-08-22 09:01 thor
* trunk/NEWS, trunk/README: update info for release of beta4
2006-08-22 07:09 thor
* trunk/Makefile.am, trunk/src/common.c, trunk/src/layer3.c: more
silent for normal usage
2006-08-21 23:07 thor
* trunk/doc/LICENSE: please let me my mild humor...
2006-08-21 18:24 thor
* trunk/BENCHMARKING, trunk/BUGS, trunk/CONTACT,
trunk/Makefile.am, trunk/README, trunk/doc/BENCHMARKING,
trunk/doc/BUGS, trunk/doc/CONTACT: more doc tidyness
2006-08-21 17:23 thor
* trunk/misc/equalizer-control.pl, trunk/misc/test.pl: naming the
equalizer demo script accordingly
2006-08-21 17:22 thor
* trunk/misc, trunk/misc/test.pl, trunk/test.pl: misc stuff gets a
place
2006-08-21 17:20 thor
* trunk/TODO, trunk/doc/TODO: Yeah, this one, too.
2006-08-21 17:17 thor
* trunk/ROAD_TO_LGPL, trunk/doc/ROAD_TO_LGPL: ...
* trunk/PATENTS, trunk/doc/PATENTS: ...
2006-08-21 17:15 thor
* trunk/README.WIN32, trunk/doc/README.WIN32: not front page 5
2006-08-21 17:14 thor
* trunk/README.thor, trunk/doc/README.thor: not front page 4
* trunk/README.remote, trunk/doc/README.remote: not front page 3
* trunk/README.gain, trunk/doc/README.gain: not front page 2
* trunk/README.3DNOW, trunk/doc/README.3DNOW: not front page
2006-08-21 17:13 thor
* trunk/doc: doc dir created
2006-08-21 16:57 thor
* trunk/ROAD_TO_LGPL: the file list is the historic one from
17.7.2006, for changes after that we have our logs
2006-08-21 16:52 thor
* trunk/configure.ac, trunk/src/Makefile.am: fixing i486
2006-08-21 16:45 njh
* trunk/CHANGES, trunk/LICENSE, trunk/Makefile.am, trunk/NEWS,
trunk/README.thor, trunk/ROAD_TO_LGPL, trunk/configure.ac:
mpg123 now uses standard GNU file names.
2006-08-21 16:13 thor
* trunk/configure.ac, trunk/src/Makefile.am: trying to get
i486/i386 back
2006-08-21 15:52 njh
* trunk/src/Makefile.am: Added decode_i486.c to 486 CPU target
2006-08-21 15:22 thor
* trunk/src/layer3.c: do not annoy every user - overflow warning
as debug message
2006-08-21 15:07 thor
* trunk/src/common.c: avoid non-C90 printf stuff, better solution
in future
2006-08-21 14:57 thor
* trunk/src/common.c: long long is not safely there... just use
long for this debugging output of an off_T
2006-08-21 14:53 thor
* trunk/configure.ac, trunk/src/common.c, trunk/src/common.h,
trunk/src/config.h.legacy, trunk/src/readers.c,
trunk/src/term.c, trunk/src/term.h: Disabled mmap stuff; vbr
seeking having replaced old stream seek There is now a configure
option to select frame index table size - if set to 0, you
basically disable it any any seek will start from beginning and
the read through the frames.
2006-08-21 13:48 thor
* trunk/src/common.c, trunk/src/common.h,
trunk/src/control_generic.c: a working seek for generic control
(now also working backwards - whee!), along the way some more
cleanup regarding the frame numeber bein in frame struct
2006-08-21 13:40 thor
* trunk/src/mpg123.c: to make it clear: -s gives you host byte
order!
2006-08-21 13:36 thor
* trunk/src/term.c: after rewind, we are at frame zero again
2006-08-21 13:20 thor
* trunk/src/mpg123.c: non-vbr seek mode does also count frames in
read_frame
2006-08-21 13:18 thor
* trunk/src/mpg123.h, trunk/src/readers.c: take long arguments as
frame offset
2006-08-21 13:02 thor
* trunk/src/common.c, trunk/src/common.h,
trunk/src/control_generic.c, trunk/src/mpg123.c,
trunk/src/mpg123.h, trunk/src/readers.c, trunk/src/term.c,
trunk/src/term.h: big thing... it's the initial addition of some
sort of accurate seeking in vbr (and strangely tagged) files. I
didn't do it for mmapped mode and I think I'll erase that one
soon, anyway (you can use stuff like /dev/shm or just trust your
kernel buffers). There are some changes more or less related to
seeking that have been necessary. Most code is wrapped in #ifdef
VBR seek now...
2006-08-21 12:56 thor
* trunk/src/httpget.c: adding workaround for rautemusik internet
radio... their server doesn't like the port in Host request
header! (gives endless relocations)
2006-08-21 12:21 thor
* trunk/src/audio_alsa.c: make the close foolproof (instead of
fixing the code that calls it without having the device opened
before)
2006-08-21 11:58 thor
* trunk/src/audio_alsa.c, trunk/src/term.c: Now more proper alsa
code from clemens; fixing the remaining buffer mode crashes by
making term.c more aware of the fact that if there is a buffer,
no one else should mess with the audio device.
2006-08-17 07:46 thor
* trunk/src/common.c, trunk/src/readers.c: Ok, changed the check
in read_frame back to comparig the new header with first and old
header. That is a pragmatic change that gives some false
negatives but still allows seeking in this one evil file at all.
Blind seeking in vbr files is evil.
2006-08-17 07:38 thor
* trunk/src/common.c, trunk/src/common.h, trunk/src/readers.c:
Started workign on the seeking (and fixed the second-time id3v2
recognition to happen in quiet mode , too, by the way). The
seeking is a mess but necessarily so for vbr files that we don't
have a frame mapping for (from Xing header - not used atm,
though). Now the seeking at least works for this one very vbr
file (where no frame is like the first!) where formerly any
seekl lead directly to end-of-track. There is a tradeoff: Now we
get false positives from time to time. We should treat
Xing-tagged vbr files with all the info we have and at least
warn about vbr files that lack the seeking info.
2006-08-17 00:06 thor
* trunk/src/common.c, trunk/src/common.h,
trunk/src/control_generic.c: One place to calculate current
seconds, frames to go... also introduced mean_framesize to make
better estimates on remaining track length for vbr files without
xing header (from which the number of frames is known).
2006-08-15 18:22 thor
* trunk/INSTALL: one should say what is needed even if trivial
2006-08-15 17:06 thor
* trunk/src/audio_alsa.c: code and vars!
2006-08-15 15:13 thor
* trunk/src/term.c, trunk/src/term.h: give a clue about control
via online help
2006-08-15 14:54 thor
* trunk/src/term.c, trunk/src/term.h: space bar is very intuitive
for the stop(real pause) function
2006-08-15 13:57 thor
* trunk/src/audio_alsa.c: ALSA: you need to prepare after drop;
solving the buffer kill / no sound after "b" issue following
suggestion from Clemens Ladisch
2006-08-14 22:16 njh
* trunk/src/audio_sdl.c: Previously forgot to free up ringer
buffer in audio_close(). Changed to using new debugging and
error macros.
2006-08-14 22:05 njh
* trunk/src/audio_macosx.c: Got so fed up with trying to get
audio_queueflush() working that I changed everything to use
SFIFO code instead.
2006-08-14 17:04 njh
* trunk/src/audio_macosx.c: Initialise env to NULL.
2006-08-14 16:41 njh
* trunk/src/audio_macosx.c: Fixed bug #1532711. Can now call
audio_close() before audio_open() without crash.
2006-08-13 21:53 thor
* trunk/src/audio_alsa.c: alsa queueflush with snd_pcm_drop is
troublesome...
2006-08-13 21:52 thor
* trunk/src/common.c: reading id3v2 frames anytime when encountered
2006-08-13 19:53 thor
* trunk/src/audio_alsa.c: queueflush for alsa needs fixing with
buffer; bug id 1536513
2006-08-13 19:51 thor
* trunk/src/mpg123.c: this check is not complete nonsense
2006-08-13 17:07 thor
* trunk/configure.ac: --disable-debug != --enable-debug! Now
getting this right...
2006-08-13 16:02 thor
* trunk/AUTHORS: storing the email that worked
2006-08-13 00:43 thor
* trunk/src/common.c: oops, pointer!
2006-08-13 00:41 thor
* trunk/src/common.c: calm down gcc for pointer signs
2006-08-13 00:35 thor
* trunk/CHANGES, trunk/Makefile.am, trunk/src/Makefile.am: distro
stuff...
2006-08-13 00:04 thor
* trunk/src/common.c: just a note
2006-08-12 23:55 thor
* trunk/src/layer3.c: the small xrpnt overflow is a warning and no
error
2006-08-12 23:51 thor
* trunk/src/common.c: fiddled a bit with the ID3v2 debugging
messsages
2006-08-12 23:20 thor
* trunk/README, trunk/mpg123.1: minimal doc change before beta4
2006-08-12 19:15 thor
* trunk/src/layer3.c: this common "error" message is better just
for debugging
2006-08-12 19:04 thor
* trunk/src/layer3.c, trunk/src/mpg123.c: Printing wanted help to
stdout is a good idea, printing the mpg123 hello lines on stdout
with the -s switch possibly in work is a bad one. Shame on you...
2006-08-08 01:34 thor
* trunk/TODO: more notes about progress and outstanding progress
2006-08-08 01:31 thor
* trunk/README.gain: update about progress
2006-08-08 01:29 thor
* trunk/BUGS: You are not alone... bugs all around.
2006-08-08 01:23 thor
* trunk/configure.ac: linkflag to libs and not CFLAGS... Clemens
got that covered, too.
2006-08-08 01:18 thor
* trunk/src/audio_alsa.c: Clemens Ladisch rightfully erased my
dirty hack and made proper Alsa API check for initialized
device;-)
2006-08-08 01:15 thor
* trunk/src/common.c, trunk/src/config.h.legacy: Too late again...
feverishly hacked reading of RVA values from ID3v2 in 3 variants
- ID3v2.4 RVA2 frames - RVA_* style comment fields - TXXX fields
from foobar2000 (untested)
2006-08-07 08:48 thor
* trunk/src/common.c: Got a good deal of ID3v2 parsing... now
wondering why I cannot derive the correct size of the Image in
this Mike Zee file. id3v2 -l sees it correctly; I parse the size
value - and that simply is wrong?!! After I've settled that the
file is just broken and id3v2 does play some trick, I can go
back to store RVA values...
2006-08-06 17:48 thor
* trunk/TODO: being more clear there on gain and types
2006-08-06 17:45 thor
* trunk/src/readers.c: We have to stop using ints everywhere for
byte counts... future TODO.
2006-08-06 17:20 thor
* trunk/README.gain, trunk/src/common.c: going to make id3v2
parsing properly... since not even id3lib can handle 2.4:-(
2006-08-06 17:02 thor
* trunk/README.gain, trunk/configure.ac, trunk/src/common.c: some
clarification adding to the confusion - did I already say that
all this tagging is a MESS?
2006-08-06 16:20 thor
* trunk/src/mpg123.h: should we limit samples to 2**16/2 or
2**16/1-1? there will be a one missing in the first case... or
is this taken care of elsewhere?
2006-08-06 13:21 thor
* trunk/mpg123.1, trunk/src/common.c, trunk/src/mpg123.c,
trunk/src/mpg123.h: initial RVA support using ReplayGain values
in Info/Lame tag
2006-08-06 11:02 thor
* trunk/configure.ac, trunk/src/common.c, trunk/src/httpget.c,
trunk/src/mpg123.h: some more explicit/corrected system header
dependencies along with fallback (for SIZE_MAX, ULONG_MAX), in
common.c the maximal frame count for gapless is now actually
depending on the system limit
2006-08-06 10:25 thor
* trunk/README.gain: thoughts about RVA gain
2006-08-06 00:50 thor
* trunk/CHANGES, trunk/src/mpg123.c: update CHANGES, officially
adding MPEG 2.5
2006-08-06 00:45 thor
* trunk/src/common.c, trunk/src/layer3.c: some more unified error
messages
2006-08-06 00:39 thor
* trunk/src/common.c: 1. re-enable MPEG 2.5 as I could be actually
safe to do so 2. bail out on free format header if first one (so
supposedly not just stream distortion) 3. _not_ bail out on
decode_header failure ... perhaps this is no good idea?
2006-08-05 22:40 thor
* trunk/src/layer3.c: comment about mhipp bandinfo change...
should we change?
2006-08-05 21:38 thor
* trunk/src/layer3.c: small cleanup - #if 0 code, const
2006-08-05 20:46 thor
* trunk/src/layer3.c: say what's wrong on bad sideinfo
2006-08-05 17:06 thor
* trunk/src/layer3.c: Widen the bugfix for the Stravinsky fuzzing
... there are files where xrpnt does exceed that range is
supposedly should have (?), pointing to end+4 bytes. Since these
play fine now and sounded wrong with the strict check, I hope
this is justified. when will I have time to really understand
the core decoding routines and their pointers?
2006-08-05 16:48 thor
* trunk/src/common.c: more standard error messages
2006-08-05 14:55 thor
* trunk/scripts/debugdef.pl, trunk/src/debug.h: now also warnings
and error messages as macro
2006-08-05 14:54 thor
* trunk/src/Makefile.legacy: brute force debug.h depends
2006-08-05 13:10 thor
* trunk/src/common.c: updated debugging lines
2006-08-04 10:00 thor
* trunk/src/mpg123.c: A proposal for smaller head message.
2006-08-04 09:51 thor
* trunk/src/audio_alsa.c: hotfix for my laptop... don't call
snd_pcm_drain when we didn't really prepare the device
2006-08-04 08:56 njh
* trunk/AUTHORS, trunk/CHANGES: Added Clemens Ladisch as author of
ALSA support
2006-08-04 08:04 njh
* trunk/src/audio_alsa.c: new ALSA audio output driver sent to me
by Clemens Ladisch
2006-08-04 00:38 njh
* trunk/CHANGES, trunk/configure.ac: Removed libao from
distribution. Bumbed version number.
* trunk/src/dct64_altivec.c: Oops - I broke Altivec - this fixes
it again
2006-08-04 00:37 njh
* trunk/src/Makefile.am: Added debug.h to list of source files so
that it is distributed
2006-08-02 11:27 njh
* trunk/configure.ac, trunk/src/Makefile.am,
trunk/src/audio_portaudio.c, trunk/src/audio_sdl.c,
trunk/src/sfifo.h: SDL is working nicely now.
2006-08-02 03:27 njh
* trunk/configure.ac, trunk/src/Makefile.am,
trunk/src/audio_portaudio.c, trunk/src/dct64_altivec.c,
trunk/src/sfifo.c, trunk/src/sfifo.h: Added PortAudio support -
and remove Altivec autodetectoion because it was more trouble
than it was worth
2006-08-02 00:04 njh
* trunk/configure.ac, trunk/src/dct64_altivec.c: Use Altivec if
available automatically
2006-08-01 19:29 njh
* trunk/Makefile.am, trunk/configure.ac, trunk/src/audio_alsa.c,
trunk/src/audio_alsa05.c, trunk/src/audio_alsa08.c,
trunk/src/audio_alsa09.c: Nearly implemented ALSA 0.9 API
support - still got a few problems though.
2006-08-01 16:10 njh
* trunk/src/httpget.c: Variables delared in bad places
2006-08-01 15:59 njh
* trunk/TODO: Added my own TODO list items
2006-08-01 14:58 njh
* trunk/src/Makefile.am, trunk/src/Makefile.legacy,
trunk/src/dct64_MMX.s, trunk/src/dct64_mmx.s,
trunk/src/decode_MMX.s, trunk/src/decode_mmx.s,
trunk/src/tabinit_MMX.s, trunk/src/tabinit_mmx.s: made MMX
lowercase for concistency with other processor names
2006-08-01 14:28 njh
* trunk/src/audio_alsa.c, trunk/src/audio_alsa08.c: Moved old also
audio interface code out of the way
2006-07-29 16:31 thor
* trunk/configure.ac: beta3!
* trunk/src/mpg123.c: added missing \n in longhelp
2006-07-29 16:29 thor
* trunk/CHANGES, trunk/mpg123.1, trunk/src/mpg123.c,
trunk/src/mpg123.h: enhancing the playlist mode with more mime
and the listentry parameter
2006-07-29 11:51 thor
* trunk/src/httpget.c, trunk/src/mpg123.c, trunk/src/mpg123.h,
trunk/src/readers.c: fixing bug id 1529319... and overreacting a
bit about the whole issue: - initialy made steps to HTTP/1.1
(for the host header field because of virtual hosts support) but
retreated after realizing that one has to accept chunked data -
now still HTTP/1.0 with host header as extension (as before,
actually), also again sending only absolute paths as requests
(no full url) but still allowing relative redirects - using the
content-type header field to prevent playback of wrong codec and
to more safely recognice playlist files - one result: for a
single we resource one can always use the -@ switch: playlists
are treated as playlists and if it is an audio/mpeg file, it is
reopened as such - added most simple parsing of pls (shoutcast)
playlists
2006-07-29 06:02 thor
* trunk/src/mpg123.c: explicitly handle failed http_open
2006-07-29 05:03 thor
* trunk/src/httpget.c: make sure that httpauth1 doesn't leak
memory... oaranoid
2006-07-29 04:49 thor
* trunk/src/mpg123.c: 1. noted a memory leak on strdup but not
fixed yet 2. fruitless debugging of terminal mindbreaking
characters from a internet radio playlist. Probably these are
actually send by the server.
2006-07-28 13:45 thor
* trunk/src/httpget.c: fixing bug 1529266; the segfault happening
on the second http request was due to a global pointer
(httpauth1) being free()d but not nulled.
2006-07-24 11:32 thor
* trunk/CHANGES: beta2 update just before real release...
2006-07-24 11:10 thor
* trunk/configure.ac: I won't screw history: this is beta2, even
when beta1 didn't see the sunlight.
2006-07-24 11:08 thor
* trunk/src/mpg123.c, trunk/src/mpg123.h, trunk/src/term.c: Oh,
what a bug: The terminal control key "f" for next track relied
on the SIGINT hack. Shame on me for not knowing this when
diabling this hack for terminal control mode.
2006-07-24 10:32 thor
* trunk/configure.ac: version 0.60-beta1
2006-07-24 10:30 thor
* trunk/README: date of today
2006-07-24 10:29 thor
* trunk/PATENTS: Notes about patents... the date of expiration of
the core mp3 patent would make a nice release day for mpg123
0.60;-)
2006-07-24 10:28 thor
* trunk/README: small updates
2006-07-24 09:02 thor
* trunk/ROAD_TO_LGPL: The LGPL reasoning for y'all to read.
2006-07-24 08:57 thor
* trunk/plugin: empty, useless
2006-07-24 08:56 thor
* trunk/README.thor: typo
2006-07-24 08:52 thor
* trunk/Makefile.win32, trunk/src/Makefile.win32: moved the Win32
Makefile to src/ ... I'm pretty sure that it won't work as is
anymore. Have to grab some windows box and test... eh, and some
compiler. Borland?
2006-07-24 08:46 thor
* trunk/CHANGES: corrections and additions
2006-07-24 08:42 thor
* trunk/mpg123.1: added license
2006-07-24 08:33 thor
* trunk/mpg123.1: ... the file AUTHORS ...
2006-07-24 07:49 thor
* trunk/mpg123.1: updated the man page ... my first one without
the help of perldoc
2006-07-24 07:38 thor
* trunk/src/mpg123.c: title setting also for rxvt-* and xterm-*;
added help about that
2006-07-24 06:57 thor
* trunk/TODO: note about track gain adjustment
2006-07-24 01:05 thor
* trunk/BENCHMARKING.thor, trunk/mpg123.1: in BENCHMARKING now
2006-07-24 01:04 thor
* trunk/BENCHMARKING: Updated the benchmarking notes, added
BENCHMARKING.thor contents as well as some fresh recheck.
2006-07-24 00:56 thor
* trunk/INSTALL: updated installation instructions
2006-07-24 00:15 thor
* trunk/src/mpg123.c: fixed lecagy build broken by VERSION_STRING;
made help output nicer
2006-07-23 22:58 thor
* trunk/src/Makefile.legacy: fixing the install target
2006-07-23 18:56 thor
* trunk/AUTHORS: cleaning up and warning spammers
2006-07-17 22:37 thor
* trunk/mpg123.1, trunk/src/mpg123.c: - seen that manpage needs a
lot of updating (nearly ten years old!) - made the wanted usage
info (-?, --help, --longhelp) go to stdout and only the
help-on-error to stderr - added --version to give program
version string
2006-07-17 21:04 thor
* tools, trunk/tools: keep the main trunk tight; auxilliary tools
in separate location
2006-07-17 21:03 thor
* trunk/precompiled: we have assemblers nowadays, no need to keep
the precompiled objects
2006-07-17 19:45 thor
* trunk/BUGS, trunk/CHANGES, trunk/CONTACT, trunk/LICENSE,
trunk/README, trunk/README.cfa, trunk/README.new,
trunk/README.remote, trunk/README.thor,
trunk/src/control_generic.c: Getting documentation closer to
release, typo in control_generic help.
2006-07-17 19:25 thor
* trunk/README: to be replaced by new one
2006-07-17 17:33 thor
* legal/statements/Nicholas_J._Humfrey.email, trunk/COPYING:
Updated COPYING to a near-final state, added agreement hint by
Nicholas.
2006-07-17 16:20 thor
* legal/first_final.txt, trunk/src/Makefile.am,
trunk/src/layer1.c, trunk/src/layer2.c, trunk/src/layer3.c,
trunk/src/layer3.h, trunk/src/mpg123.c, trunk/src/mpg123.h,
trunk/src/readers.c, trunk/src/system.c, trunk/src/tabinit.c,
trunk/src/term.c, trunk/src/term.h, trunk/src/wav.c,
trunk/src/xfermem.c, trunk/src/xfermem.h: Next round of
boilerplates along with the story. With the current argument,
there is only one GPL-only file left!
2006-07-17 16:16 thor
* trunk/MakeLegacy.sh: We write C, not C++.
2006-07-17 14:59 thor
* trunk/AUTHORS, trunk/COPYING, trunk/src/audio_esd.c,
trunk/src/equalizer.c, trunk/src/genre.h, trunk/src/getbits.c,
trunk/src/getbits.h, trunk/src/getcpuflags.s,
trunk/src/getlopt.c, trunk/src/getlopt.h, trunk/src/httpget.c,
trunk/src/huffman.h, trunk/src/l2tables.h: equalizer patch
really was jsut a path to equalizer, new author for
linux-ppc-nas make target
2006-07-17 14:57 thor
* trunk/src/Makefile.legacy: added PPC/NAS target from
<mpdavig@users.sourceforge.net>
2006-07-17 13:54 thor
* trunk/src/dct64_MMX.s, trunk/src/decode_MMX.s,
trunk/src/tabinit_MMX.s: the MMX stuff came into Michaels hands
without comment -> LGPL by author rule
2006-07-17 13:53 thor
* trunk/AUTHORS: credit for Mikko and his DCT9
2006-07-17 03:22 thor
* lgpl/first_final.txt, trunk/AUTHORS, trunk/COPYING,
trunk/scripts/debugdef.pl, trunk/src/Makefile.legacy,
trunk/src/audio.c, trunk/src/audio.h, trunk/src/audio_aix.c,
trunk/src/audio_alib.c, trunk/src/audio_dummy.c,
trunk/src/audio_esd.c, trunk/src/audio_hp.c,
trunk/src/audio_jack.c, trunk/src/audio_libao.c,
trunk/src/audio_macosx.c, trunk/src/audio_mint.c,
trunk/src/audio_nas.c, trunk/src/audio_os2.c,
trunk/src/audio_oss.c, trunk/src/audio_sgi.c,
trunk/src/audio_sun.c, trunk/src/audio_win32.c,
trunk/src/buffer.c, trunk/src/buffer.h, trunk/src/common.c,
trunk/src/common.h, trunk/src/control_generic.c,
trunk/src/dct36_3dnow.s, trunk/src/dct64.c,
trunk/src/dct64_3dnow.s, trunk/src/dct64_MMX.s,
trunk/src/dct64_altivec.c, trunk/src/dct64_i386.c,
trunk/src/dct64_i486.c, trunk/src/debug.h, trunk/src/decode.c,
trunk/src/decode_2to1.c, trunk/src/decode_3dnow.s,
trunk/src/decode_4to1.c, trunk/src/decode_MMX.s,
trunk/src/decode_i386.c, trunk/src/decode_i486.c,
trunk/src/decode_i586.s, trunk/src/decode_ntom.c,
trunk/src/equalizer_3dnow.s, trunk/src/tabinit_MMX.s: First part
of boilerplating and sorting all out. Looks kinda nice now,
still would like to get the higway mmx stuff clear... maybe
Michael remembers something there.
2006-07-17 02:15 thor
* trunk/AUTHORS: little update for MMX, unnecessary verbosity
about what maintaing implies
2006-07-17 01:30 thor
* trunk/src/audio_jack.c: boilerplate and // -> /* */ as mpg123 is
(still) an old-compiler friendly project
2006-07-17 01:02 thor
* trunk/src/common.c, trunk/src/control_generic.c,
trunk/src/httpget.c, trunk/src/layer3.c: Oh, I should compile
more often with strict settings: pedantic gcc complained about
some C89 violations I introduced. Fixed that.
2006-07-17 01:01 thor
* trunk/configure.ac, trunk/src/audio_alsa.c,
trunk/src/audio_alsa09.c: Old alsa output doesn't work with any
sane setup using alsa today (meaning: not using the 0.5 api).
New doesn't work because unfinished yet. Alsa output actually is
available through libao. So, deactivated alsa stuff in configure
for now...
2006-07-17 00:06 thor
* trunk/Makefile.am, trunk/autogen.sh, trunk/configure.ac: more
boilerplates
2006-07-16 23:56 thor
* trunk/MakeLegacy.sh: boiler
2006-07-16 23:54 thor
* trunk/scripts/debugdef.pl: public domain should be gpl
compatible...
2006-07-16 23:46 thor
* mpglib/trunk, trunk/mpglib: mpglib will be something of its own,
taken care of later...
2006-07-16 23:39 thor
* trunk/Makefile.win32, trunk/test.pl: niceness by a line
2006-07-16 23:38 thor
* trunk/test.pl: boilerplate, style cleanup (could use more use,
though)
2006-07-16 23:37 thor
* trunk/Makefile.win32: boilerplate
2006-07-16 23:24 thor
* trunk/src/audio_oss.c: just a paranoid note
2006-07-10 02:23 thor
* trunk/src/audio_libao.c: Polished the libao output a bit while
testing it on my linux laptop: - parsing -a driver:file for file
devices (well, this could be extended to a general scheme to
choose between different driver subsystems via -a system:file or
system:device:file ...) - corrected the error handling: -1 is
expected on error by mpg123.c - giving help message with list of
available drivers when invalid one is specified I verified with
one testfile that -a wav:file does the same as -w file. I think
that this is good;-) Also, I'd like to mention that it's nice to
measure audio subsystem overhead with comparing -t and -a null.
With the libao in place, I'm wondering if we still want our own
alsa output... let's see...
2006-07-09 17:37 thor
* buglog/fuzzing.txt, buglog/mathias_wenzel_stress.txt,
trunk/src/layer3.c: next segfault by fuzzing... fixed this
special test case but one needs full understanding of layer3.c
to really get it
2006-07-06 14:00 thor
* buglog/mathias_wenzel_stress.txt, trunk/src/common.c,
trunk/src/layer3.c: Fixed the mpeg2.5 verdict in common.c (we
have to check support for this); made parts of layer3.c more
robust based on an evil mp3 (see the buglog file). Most
important featur of this robustness could be that mpg123 doesn't
simply exit() in wrong sideinfo anymore but tries to continue.
2006-07-05 20:45 thor
* trunk/TODO, trunk/src/httpget.c: Revised my bugfix for the last
GLSA issue after suggestion by Daniel Kobras (allow longer
redirection urls than request url), spent some time hacking
further ... and: - fixed unnoticed memory leak in redirection
(malloc without free for assigned pointer) - now accepting
non-absolute redirects; request now is always of the form GET
http://host/path HTTP/1.0 (non-absolute relocations are related
to this request) That also works flawlessly with my virtual
domain setup on my server used in the test. - decided that this
whole file is evil; we need to rewrite that properly
2006-07-04 12:41 thor
* buglog, buglog/buglog.txt,
buglog/gentoo-bug133988_GLSA_200607-01.html,
tags/0.59r-thor6/mpg123.c, trunk/src/httpget.c: Reacted to
gentoo bug 133988 / GLSA 200607-01 and fixed it properly,
storing and using the allocated length of purl as well as
ensuring string termination.
2006-07-04 01:43 thor
* trunk/src/common.c, trunk/src/layer3.c, trunk/src/layer3.h,
trunk/src/mpg123.c: Again reworked the gapless stuff... should
be more efficient now and also more aggressive by just skipping
decoder delay even if no info found and also adding decoder
delay to end (hm, where does this really make sense without
padding removal?). It should be more efficient now; a comparison
between linux-x86 binary (pentium) with and without gapless code
shows perhaps around 0.2% speed penalty through added code -
which already melts when gapless mode is actually active.
Generally on speed: comparison with 0.59r (linux build,
non-marched cflags (pentium2)) shows around 2% slower decoding
for svn trunk; but this is greatly compensated by using one of
the new assembler optimizations. Still, I see much code that can
be improved also for efficiency alone by clearing the situation
with some (shared) variables that don't need to be passed around
all the time...
2006-07-04 01:25 thor
* trunk/src/Makefile.legacy: these -g were leftovers
2006-07-03 12:55 thor
* trunk/src/Makefile.legacy, trunk/src/common.c,
trunk/src/common.h, trunk/src/control_generic.c,
trunk/src/layer3.c, trunk/src/layer3.h, trunk/src/mpg123.c,
trunk/src/mpg123.h: Main message: The gapless mode has been
enhanced to work more low-level (in layer3.c) and also to use
the Xing-given frame count to get the end straight. It should
work (tested, but not in every detail) both with the -k option
and terminal controlled seeking as well as control_generic
JUMPs. The current implementation adds some load that could be
reduced by putting the gapless checker code into behind flush
check instead of before but that needs additional care for track
end (where audio_flush is called externally). Apart from that
and some needed de-uglification it should be a nicely working
feature. Minor messages: frameNum is unsigned long (so bigger
that int and never < 0!); some parts of mpg123.c and common.c
did not honor these truths. But I don't claim that I catched all
occurences of such problems - see BUGS. Also, I fixed stuff in
print_stat with weird frame number estimations. Looks _much_
better now esp. when the frame count is known from Xing tag.
2006-07-03 12:16 njh
* trunk/AUTHORS: Added Romain Dolbeau to AUTHORS file for his
Altivec work
2006-07-03 12:12 njh
* trunk/configure.ac, trunk/src/Makefile.am,
trunk/src/dct64_altivec.c: Imported altivec support from mplayer
(and it works!) Still need to do CPU detection.
2006-07-03 12:11 thor
* trunk/TODO: more and less of this
2006-06-27 00:54 thor
* trunk/src/config.h.legacy: Did we start using C++ style comments?
2006-06-27 00:51 thor
* trunk/src/common.c: a note on gapless hack updated
2006-06-26 22:57 thor
* trunk/README.new: added note about more natural Ctrl+C
2006-06-26 22:43 thor
* trunk/src/Makefile.legacy: some more flags by default
2006-06-26 22:40 thor
* trunk/src/Makefile.legacy: ' seems to be dangerous together with
line-continuing \ ... made more "
2006-06-26 22:22 thor
* trunk/configure.ac: generic linux support (?)
2006-06-26 22:04 thor
* trunk/src/mpg123.c: Following DK's suggestion in a comment, I
disabled the Ctrl+C (SIGINT) hack when a control mode is active.
You can still do Ctrl+C to skip a song and twice to end playback
if you do not use the terminal or remote control mode. With
active control mode, a Ctrl+C now kills as expected (formerly,
it was just ignored).
2006-06-26 21:36 thor
* trunk/src/getlopt.c, trunk/src/mpg123.c: There were several
option parsing regressions most probably caused by application
of Nicholas' changes to my code with changed command line
parsing. Fixed the obvious ones and made the option parser bail
out if it encouters such an error again.
2006-06-26 21:34 thor
* trunk/MakeLegacy.sh, trunk/src/config.h.legacy: More legacy make
system working again with more crafted config.h.
2006-06-26 13:17 thor
* trunk/AUTHORS, trunk/README.new: history in README.new,
maintainers in AUTHORS
2006-06-26 12:24 thor
* trunk/src/audio.c, trunk/src/audio_aix.c,
trunk/src/audio_alib.c, trunk/src/audio_alsa.c,
trunk/src/audio_dummy.c, trunk/src/audio_esd.c,
trunk/src/audio_hp.c, trunk/src/audio_jack.c,
trunk/src/audio_libao.c, trunk/src/audio_macosx.c,
trunk/src/audio_mint.c, trunk/src/audio_nas.c,
trunk/src/audio_os2.c, trunk/src/audio_sgi.c,
trunk/src/audio_win32.c, trunk/src/buffer.c, trunk/src/common.c,
trunk/src/control_generic.c, trunk/src/dct64.c,
trunk/src/dct64_i386.c, trunk/src/dct64_i486.c,
trunk/src/decode.c, trunk/src/decode_2to1.c,
trunk/src/decode_4to1.c, trunk/src/decode_i386.c,
trunk/src/decode_i486.c, trunk/src/decode_ntom.c,
trunk/src/equalizer.c, trunk/src/getbits.c, trunk/src/httpget.c,
trunk/src/layer1.c, trunk/src/layer2.c, trunk/src/layer3.c,
trunk/src/readers.c, trunk/src/system.c, trunk/src/tabinit.c,
trunk/src/wav.c, trunk/src/xfermem.c: Added inclusion config.h
everywhere to make sure we don't stumble over some missing
define later and search like crazy...
2006-06-26 12:22 thor
* trunk/src/mpg123.c: Sorry, but these pointlessly broken lines
were _ugly_.
2006-06-26 12:11 thor
* trunk/src/getlopt.c, trunk/src/term.c: These got some new-style
debugging through the terminal control bug hunt. Also, I want to
take the chance to hint at scripts/debugdef.pl that I added
previously: It is a Perl script generating the debug.h header in
a way to avoid variadic macros for fprintf. Result are debugN
macros that mean "debug line with N arguments". Examples:
debug1("Ok, there's one value: %i", var) debug3("now three of
them: %i %f %i", var1, var2, var3) simplest case: debug("just a
message");
2006-06-26 12:06 thor
* trunk/scripts, trunk/scripts/debugdef.pl, trunk/src/debug.h,
trunk/src/mpg123.c: Hah! Found the place where terminal control
got killed! The option definition in mpg123.c lacked the type
specifier (a regression caused by merging). To find that, I
added debug.h for more convenient debugs.
2006-06-26 01:05 thor
* trunk/README.new: small update on urls, frontend control
2006-06-26 01:04 thor
* trunk/MakeLegacy.sh, trunk/configure.ac, trunk/src/Makefile.am,
trunk/src/audio_oss.c: - making audio_oss work again (didn't
include config.h); added needed bits for fake config.h. - adding
i586_dither as cpu variant: i586 assembler with dithering /
noise shaping
2006-06-25 23:52 thor
* trunk/src/Makefile.legacy, trunk/src/control_tk3play.c,
trunk/src/control_tk3play.h, trunk/src/mpg123.c,
trunk/src/mpg123.h: Removing obsolete control interfaces (no one
uses them since a loong time).
2006-06-22 21:19 njh
* trunk/configure.ac, trunk/src/Makefile.am, trunk/src/audio.h,
trunk/src/audio_macosx.c, trunk/src/audio_sun.c,
trunk/src/buffer.h, trunk/src/common.c, trunk/src/common.h,
trunk/src/control_tk3play.h, trunk/src/genre.h,
trunk/src/getbits.h, trunk/src/getlopt.h, trunk/src/huffman.h,
trunk/src/l2tables.h, trunk/src/layer3.c, trunk/src/mpg123.h,
trunk/src/term.h, trunk/src/xfermem.h: Now compiles on Solaris.
Tested on: SunOS ironwood.sucs.soton.ac.uk 5.8 Generic_117350-31
sun4u sparc SUNW,Sun-Fire-880
2006-06-22 20:25 njh
* trunk/src/Makefile.am: added Makefile.legacy to the distribution
2006-06-22 20:12 njh
* trunk/configure.ac, trunk/src/audio_oss.c: Closer to Linux
working
2006-06-22 19:18 njh
* trunk/src/Makefile.am: decode_x86.s -> decode_i586.s
2006-06-22 19:10 njh
* trunk/configure.ac: Added --with-optimization configure option.
Display CFLAGS in debug mode.
2006-06-22 19:09 njh
* trunk/Makefile.am: Include MakeLegacy.sh in distribution
2006-06-22 17:18 njh
* trunk/MakeLegacy.sh: Make sure that configure.ac exists before
runing sed over it
2006-06-22 17:15 njh
* trunk/MakeLegacy.sh: I won my fight with sed! yay!
2006-06-22 12:06 thor
* trunk/README.sajber, trunk/debian, trunk/jukebox,
trunk/src/control_sajber.c: Removed debian dir and outdated
Sajber jukebox files. Have to check state of the tk3play
interface and modify Makefile.legacy (still all targets there).
2006-06-22 09:21 thor
* trunk/src/Makefile.legacy: version.h does not exist anymore,
remove it from Makefile.legacy
2006-06-22 04:55 njh
* trunk/configure.ac, trunk/src/Makefile.am: Added support for MMX
processors to configure system
2006-06-22 04:07 njh
* trunk/MakeLegacy.sh, trunk/configure.ac,
trunk/src/Makefile.legacy, trunk/src/audio.c, trunk/src/audio.h,
trunk/src/audio_aix.c, trunk/src/audio_alib.c,
trunk/src/audio_alsa.c, trunk/src/audio_dummy.c,
trunk/src/audio_esd.c, trunk/src/audio_hp.c,
trunk/src/audio_libao.c, trunk/src/audio_macosx.c,
trunk/src/audio_mint.c, trunk/src/audio_nas.c,
trunk/src/audio_os2.c, trunk/src/audio_oss.c,
trunk/src/audio_sgi.c, trunk/src/audio_sun.c,
trunk/src/audio_win32.c, trunk/src/dct64.c, trunk/src/getlopt.h,
trunk/src/httpget.c, trunk/src/mpg123.c, trunk/src/system.c,
trunk/src/term.c, trunk/src/term.h, trunk/src/xfermem.c: Now
up-to-date with the progress I made in my own SVN repository.
Lots of changes to the audio output interface - it is now a lot
cleaner.
2006-06-21 21:04 njh
* trunk/configure.ac, trunk/src/Makefile.legacy,
trunk/src/audio_nas.c, trunk/src/httpget.c, trunk/src/mpg123.c,
trunk/src/mpg123.h, trunk/src/version.h: Package version is now
taken from configure.ac
2006-06-21 21:02 njh
* trunk/AUTHORS, trunk/CREDITS: Offical filename for list of
people is AUTHORS (so says GNU policy)
2006-06-21 15:16 njh
* trunk/configure.ac: configure source file
2006-06-21 04:49 njh
* trunk/src/Makefile.legacy: Bah, hopefully this works better.
2006-06-21 04:25 njh
* trunk/src/Makefile.legacy: use the $MAKE variable
2006-06-21 03:57 njh
* trunk/Makefile.am, trunk/autogen.sh, trunk/src/Makefile.am,
trunk/src/Makefile.legacy, trunk/src/audio.c,
trunk/src/audio_jack.c, trunk/src/audio_libao.c,
trunk/src/audio_macosx.c, trunk/src/mpg123.c,
trunk/src/mpg123.h, trunk/src/term.c, trunk/src/term.h: Applied
some of my changes to mpg123 - new build system works on OS X
2006-06-21 03:26 njh
* trunk/src/Makefile.legacy: Fixed legacy build system
2006-06-21 03:20 njh
* trunk/MakeLegacy.sh, trunk/src/Makefile,
trunk/src/Makefile.legacy: Renamed old Makefile Makefile.legacy
2006-06-21 03:19 njh
* trunk/MakeLegacy.sh, trunk/Makefile, trunk/audio.c,
trunk/audio.h, trunk/audio_aix.c, trunk/audio_alib.c,
trunk/audio_alsa.c, trunk/audio_dummy.c, trunk/audio_esd.c,
trunk/audio_hp.c, trunk/audio_mint.c, trunk/audio_nas.c,
trunk/audio_os2.c, trunk/audio_oss.c, trunk/audio_sgi.c,
trunk/audio_sun.c, trunk/audio_win32.c, trunk/buffer.c,
trunk/buffer.h, trunk/build, trunk/common.c, trunk/common.h,
trunk/control_generic.c, trunk/control_sajber.c,
trunk/control_tk3play.c, trunk/control_tk3play.h,
trunk/dct36_3dnow.s, trunk/dct64.c, trunk/dct64_3dnow.s,
trunk/dct64_MMX.s, trunk/dct64_i386.c, trunk/dct64_i486.c,
trunk/decode.c, trunk/decode_2to1.c, trunk/decode_3dnow.s,
trunk/decode_4to1.c, trunk/decode_MMX.s, trunk/decode_i386.c,
trunk/decode_i486.c, trunk/decode_i586.s,
trunk/decode_i586_dither.s, trunk/decode_ntom.c,
trunk/equalizer.c, trunk/equalizer_3dnow.s, trunk/genre.h,
trunk/getbits.c, trunk/getbits.h, trunk/getcpuflags.s,
trunk/getlopt.c, trunk/getlopt.h, trunk/httpget.c,
trunk/huffman.h, trunk/l2tables.h, trunk/layer1.c,
trunk/layer2.c, trunk/layer3.c, trunk/mpg123.c, trunk/mpg123.h,
trunk/readers.c, trunk/src, trunk/src/Makefile,
trunk/src/audio.c, trunk/src/audio.h, trunk/src/audio_aix.c,
trunk/src/audio_alib.c, trunk/src/audio_alsa.c,
trunk/src/audio_dummy.c, trunk/src/audio_esd.c,
trunk/src/audio_hp.c, trunk/src/audio_mint.c,
trunk/src/audio_nas.c, trunk/src/audio_os2.c,
trunk/src/audio_oss.c, trunk/src/audio_sgi.c,
trunk/src/audio_sun.c, trunk/src/audio_win32.c,
trunk/src/buffer.c, trunk/src/buffer.h, trunk/src/common.c,
trunk/src/common.h, trunk/src/control_generic.c,
trunk/src/control_sajber.c, trunk/src/control_tk3play.c,
trunk/src/control_tk3play.h, trunk/src/dct36_3dnow.s,
trunk/src/dct64.c, trunk/src/dct64_3dnow.s,
trunk/src/dct64_MMX.s, trunk/src/dct64_i386.c,
trunk/src/dct64_i486.c, trunk/src/decode.c,
trunk/src/decode_2to1.c, trunk/src/decode_3dnow.s,
trunk/src/decode_4to1.c, trunk/src/decode_MMX.s,
trunk/src/decode_i386.c, trunk/src/decode_i486.c,
trunk/src/decode_i586.s, trunk/src/decode_i586_dither.s,
trunk/src/decode_ntom.c, trunk/src/equalizer.c,
trunk/src/equalizer_3dnow.s, trunk/src/genre.h,
trunk/src/getbits.c, trunk/src/getbits.h,
trunk/src/getcpuflags.s, trunk/src/getlopt.c,
trunk/src/getlopt.h, trunk/src/httpget.c, trunk/src/huffman.h,
trunk/src/l2tables.h, trunk/src/layer1.c, trunk/src/layer2.c,
trunk/src/layer3.c, trunk/src/mpg123.c, trunk/src/mpg123.h,
trunk/src/readers.c, trunk/src/system.c, trunk/src/tabinit.c,
trunk/src/tabinit_MMX.s, trunk/src/term.c, trunk/src/term.h,
trunk/src/version.h, trunk/src/wav.c, trunk/src/xfermem.c,
trunk/src/xfermem.h, trunk/system.c, trunk/tabinit.c,
trunk/tabinit_MMX.s, trunk/term.c, trunk/term.h,
trunk/version.h, trunk/wav.c, trunk/xfermem.c, trunk/xfermem.h:
Tidying up a bit: moved all source code into 'src' directory.
Moving aside old build system and calling it 'legacy'. Can build
legacy system using ./MakeLegacy.sh <foo>
2006-06-18 14:05 thor
* trunk/common.c, trunk/common.h, trunk/control_generic.c: added
loadpaused action to control_generic (again?), removed some
redundant functions... placed stream info generation into
common.c (now adding the last flag for vbr) control_generic now
also has a help command that gives a summary of commands and
info on the cryptic stream info
2006-06-18 10:49 thor
* trunk/COPYING: license WIP!
2006-06-17 21:45 thor
* trunk/common.c, trunk/mpg123.c: I just had to do it... gapless
mode now also takes resampling into account. Some cosmetics - it
needs user testing now. And still the real solution for
detecting the end, while the current one should work in 95% of
the cases.
2006-06-17 19:46 thor
* trunk/common.c, trunk/common.h, trunk/mpg123.c: Ironed the
gapless support; now works for mono, stereo, 8bit, 16bit -
explicit resampling support still missing.
2006-06-17 14:31 thor
* trunk/version.h: it's not 0.59r-thor anymore...
* trunk/Makefile, trunk/common.c, trunk/mpg123.c: OK, I enclosed
the actual working (tiny time consuming - well, some ifs for
every audio buffer flush... every 16K raw data...) of gapless
code in #ifdefs for GAPLESS; being enabled in target
linux-x86-gapless (you can turn it on via -DGAPLESS in you
CFLAGS, anyway). It now actually works for several tracks
following each other - but still, it's fixed to work on stereo
16 bit layer3 files; mono will be added easily.
2006-06-17 13:15 thor
* trunk/common.c: added note about bmp album art (gosh, what a
mess...)
2006-06-17 12:51 thor
* trunk/common.c: added GAPLESS macro to enable disabling of hack
in audio_flush (homeopathic performance gain... not really;-)
2006-06-17 12:38 thor
* trunk/mpg123.c: lingua2
2006-06-17 12:37 thor
* trunk/mpg123.c: lingua
2006-06-16 22:51 thor
* trunk/common.c, trunk/mpg123.c: restricted gapless hack to layer
3, added --help info on the gapless switch still need proper
track begin/end and mono/stereo (even 8bit?) handling
2006-06-16 14:51 thor
* trunk/README.new: this will become the new README eventually...
still in the works
2006-06-16 03:35 thor
* trunk/common.c, trunk/common.h, trunk/mpg123.c, trunk/mpg123.h:
Added a first hack to make gapless output (skipping delays and
padding), activated via --gapless. This only works for single
layer3 files with Lame tag and without resampling and only for
stereo now. It's the technical proof-of-concept.
2006-06-14 10:46 thor
* notes/insight.txt, trunk/common.c, trunk/mpg123.c,
trunk/mpg123.h: Now being able to detect and skip (even
interpret) the Xing/Lame tag that caused one frame of silence at
the beginning. Still want to implement skip of padding/delay
samples based on info in there.
2006-06-12 18:02 thor
* trunk/Makefile, trunk/decode_i586_dither.s: Added the dithered
pentium decode from "ACS" <adrian.bacon@xs4all.nl> /
http://dither123.dyndns.org (GPL, currently - have to contact
him again). Modified the Makefile for that -- make
PENTIUM_DECODE=decode_i586 ... or make
PENTIUM_DECODE=decode_i586_dither ... -- along with some other
cleanups and hints for targets.
2006-06-12 03:18 thor
* trunk/Makefile, trunk/dct64_MMX.s, trunk/decode_MMX.s,
trunk/decode_i386.c, trunk/layer2.c, trunk/layer3.c,
trunk/mpg123.h, trunk/tabinit.c, trunk/tabinit_MMX.s: Attempt to
backport the MMX stuff. It seems to work - and it's faster;-)
(testfile: 10s against 13s)
2006-06-12 02:01 thor
* trunk/Makefile: trying to put env CFLAGS in place everywhere,
removing -D flags from generic target since they don't
compile... so many targets...
2006-06-12 00:21 thor
* trunk/common.c: Finally got around to fix playback of that
dreaded file with a BMP (not "unsynched") in ID3V2 tag. Partial
backport from mhipp's trunk; now just ignoring the number of
bytes indicated by id3v2 frame header.
2006-06-04 20:26 thor
* trunk/mpg123.c: The equalizer control patch just duplicated code
that got executed twice when usning an equalfile. Fixed that.
2006-05-14 11:30 thor
* trunk/CHANGES, trunk/Makefile, trunk/decode_i386.c,
trunk/httpget.c, trunk/layer3.c, trunk/mpg123.c, trunk/mpg123.h,
trunk/version.h: - applied relevant stuff from Debian's 22: -
fix for CVE-2006-1655 (buffer overflow in III_i_stereo()) -
strict aliasing hack in WRITE_SAMPLE of decode_i386.c - fixed
http streaming through proxy by actually using the request
url... - buffer resync on Ctrl-C (cleaning, reducing pauses with
multiple files) - removed unused esdserver variable from
mpg123.h - did NOT apply the Debian Makefile/manpage changes
(going to rewrite that stuff anyway) - made the netbsd-i386
targets visible as netbsd-x86
2006-05-11 15:26 thor
* trunk/version.h: forgot that
2006-05-11 12:56 thor
* lgpl, trunk/lgpl: it's separate discussion...
2006-05-11 12:54 thor
* trunk/CHANGES, trunk/Makefile, trunk/mpg123.c: netbsd targets
with and without realtime stuff (that seems to need -lpthread...)
2006-04-28 10:33 thor
* trunk/lgpl/KIMURA_Takuhiro.key, trunk/lgpl/fromme.email,
trunk/lgpl/notes.txt, trunk/lgpl/x.email: I try and I try...
found some addresses from internet search; mailed... ...already
got some failures but also 2 responses (I'll add that no
notes.txt later)
2006-04-24 11:26 thor
* trunk/lgpl/inventory.txt, trunk/lgpl/notes.txt,
trunk/lgpl/notex.txt: more investigation for license
2006-04-08 08:02 thor
* trunk/NOTES.LGPL, trunk/lgpl/notex.txt: better there
2006-04-08 08:01 thor
* trunk/CREDITS, trunk/NOTES.LGPL, trunk/lgpl,
trunk/lgpl/first.email, trunk/lgpl/no.list, trunk/lgpl/ok.list:
Further research into (non)licensed code and comnmunication.
2006-03-10 12:37 thor
* trunk/CREDITS: some failed addresses
2006-03-10 03:22 thor
* trunk/CREDITS: An attempt to gather a comprehensive list of
people who contributed to mpg123. So far not _all_ eMail
addresses failed;-)
2006-02-22 08:28 thor
* trunk/JUKEBOX, trunk/README.sajber: Following a suggestion from
Nick, we avoid having both jukebox/ and JUKEBOX. It's a question
if this sajber jukebox interface will keep working anyway...
2005-12-24 00:41 thomas
* trunk/BENCHMARKING.thor: just added my benchmark; nice to have
some numbers there...
2005-12-24 00:18 thomas
* trunk/CHANGES, trunk/README, trunk/README.thor: now also final
thor5 doc-wise
2005-12-24 00:07 thomas
* trunk/mpg123.c: really thor5 now (code): a trivial 0 instead of
NULL
2005-12-24 00:03 thomas
* trunk/debian/changelog, trunk/httpget.c: Debian r20 httpget fix
2005-12-23 20:26 thomas
* trunk/BUGS, trunk/CHANGES, trunk/Makefile, trunk/README,
trunk/README.thor, trunk/control_generic.c, trunk/decode.c,
trunk/decode_2to1.c, trunk/decode_4to1.c, trunk/decode_i386.c,
trunk/decode_ntom.c, trunk/equalizer.c, trunk/getlopt.c,
trunk/getlopt.h, trunk/mpg123.c, trunk/mpg123.h,
trunk/readers.c, trunk/version.h: Going towards version 5
Preliminary result from sessions on my (well, the university's)
Compaq XP1000. - introduced an extra flag to prevent equalfile
from being used as a bool all the time (confuses compilers and
is just not nice) - cared for real being whatever (float,
double, ...) in sscanf stuff of control_generic (mainly in my
added SEQ) - fixed the Alpha show-stopper: mixing up of int and
long pointers in getlopt
2005-02-24 20:09 thomas
* trunk/control_generic.c: final final -thor4: just a
misunderstanding: break means end and that makes sense.
2005-02-24 19:33 thomas
* trunk/Makefile: final -thor4: changed my modified target to
"linux-static"
2005-02-24 19:17 thomas
* trunk/README.3DNOW, trunk/README.thor, trunk/dct36_3dnow.s,
trunk/debian, trunk/debian/README, trunk/debian/changelog,
trunk/debian/control, trunk/debian/control.alsa,
trunk/debian/copyright, trunk/debian/mime,
trunk/debian/postinst, trunk/debian/postrm, trunk/debian/prerm,
trunk/debian/rules, trunk/equalizer_3dnow.s,
trunk/getcpuflags.s: thor4: second stage.
2005-02-24 19:12 thomas
* trunk/CHANGES, trunk/Makefile, trunk/audio.c, trunk/audio_esd.c,
trunk/audio_oss.c, trunk/audio_sun.c, trunk/buffer.c,
trunk/common.c, trunk/common.h, trunk/control_generic.c,
trunk/control_sajber.c, trunk/control_tk3play.c, trunk/dct64.c,
trunk/dct64_3dnow.s, trunk/dct64_i486.c, trunk/decode.c,
trunk/decode_3dnow.s, trunk/decode_i386.c, trunk/equalizer.c,
trunk/httpget.c, trunk/layer1.c, trunk/layer2.c, trunk/layer3.c,
trunk/mpg123.1, trunk/mpg123.c, trunk/mpg123.h, trunk/readers.c,
trunk/tabinit.c, trunk/term.c, trunk/test.pl, trunk/version.h,
trunk/xfermem.c: thor4: merge the Debian 0.59r-19 in for serious
bug fixing, a bit of docu
2005-02-24 16:40 thomas
* trunk/CHANGES, trunk/control_generic.c, trunk/httpget.c,
trunk/mpg123.h, trunk/readers.c, trunk/version.h: thor-3: again
command parsing reworked; non-exit()ing open functions added:
2004-10-09 20:36 thomas
* trunk/control_generic.c: Removed load-paused function that
wasn't really working anyway.
2004-10-08 16:12 thomas
* trunk/control_generic.c: added version info in control_generic
startup message
2004-09-21 04:02 thomas
* trunk/version.h: version info updated
2004-09-21 03:58 thomas
* trunk/CHANGES, trunk/control_generic.c, trunk/mpglib: more info
in general and more useful info on JUMP
2006-02-20 05:37 thor
* trunk/CHANGES, trunk/Makefile, trunk/README.cfa,
trunk/control_generic.c, trunk/decode_i586.s, trunk/mpg123.c,
trunk/mpg123.h, trunk/test.pl, trunk/version.h: Just going to
put mpg123-thor in here for a start; bridge to my CVS for that
one. 0.59r-ThOr(remote-err,eq,flushing) - added audio_flush()
calls to various places in control_generic.c to make sure there
is nothing left in there that hurts later
0.59r-realeq-remoteerr: - applied patch from Cool Feet Audio
project (nutcase@dtfm.org, see README.cfa) to use real-time
equalizer in remote mode - applied patch from AMF
(amf.sourceforge.net) by Steve Grundell for remote communication
not polluting the STDOUT where the audio data is read from
(instead using STDERR) ... and faster seeking, maybe The patches
go not cleanly together, but rejects are trivial. Thus, a
combined patch with both would makes sense. - modified (IMHO
improved) the control_generic command reading: now always making
sure that the full command is read up to a mandatory \n; also
reworked the application of the commands afterwards - added SEQ
command: simple eq with only 3 bands - added SILENCE command: I
don't want the playback messages when I don't read them (since
my frontend is reading the STDOUT it knows what is going on) -
added SLJ command: SILENCE-LOAD-JUMP... a hack for my hacked
mixplayd... maybe one should remove that again.
2006-02-20 05:11 thor
* trunk: Going to start with version 0.59r as the new trunk...
this version is the one underlying the vast majority of current
patches (including mine;-). We'll see what good stuff there is
to port over from the 0.59s series.
2006-02-20 03:49 thor
* tags/0.59r: version 0.59r as tag
* mhipp/BENCHMARKING, mhipp/BUGS, mhipp/CHANGES, mhipp/COPYING,
mhipp/INSTALL, mhipp/Makefile, mhipp/README,
mhipp/README.remote, mhipp/audio.c, mhipp/audio.h,
mhipp/audio_aix.c, mhipp/audio_alib.c, mhipp/audio_alsa.c,
mhipp/audio_esd.c, mhipp/audio_hp.c, mhipp/audio_os2.c,
mhipp/audio_sgi.c, mhipp/audio_sun.c, mhipp/buffer.c,
mhipp/buffer.h, mhipp/common.c, mhipp/common.h,
mhipp/control_generic.c, mhipp/control_tk3play.c,
mhipp/dct64_3dnow.s, mhipp/dct64_i386.c, mhipp/decode_3dnow.s,
mhipp/decode_i386.c, mhipp/equalizer.c, mhipp/get1bit.h,
mhipp/getbits.c, mhipp/getbits.h, mhipp/getbits.s,
mhipp/getbits_.s, mhipp/getbits_bsdos.s, mhipp/httpget.c,
mhipp/l2tables.h, mhipp/layer1.c, mhipp/layer2.c,
mhipp/layer3.c, mhipp/mpg123.1, mhipp/mpg123.c, mhipp/mpg123.h,
mhipp/mpglib/README, mhipp/mpglib/TODO, mhipp/mpglib/mpglib.h,
mhipp/plugin/Makefile, mhipp/plugin/README,
mhipp/plugin/dltst.c, mhipp/plugin/plugin.c,
mhipp/plugin/plugin.h, mhipp/precompiled,
mhipp/precompiled/linux-i386,
mhipp/precompiled/linux-i386/dct64_3dnow.o,
mhipp/precompiled/linux-i386/decode_3dnow.o, mhipp/readers.c,
mhipp/tabinit.c, mhipp/tables.h, mhipp/term.c, mhipp/term.h,
mhipp/tools/interface-and-phython, mhipp/version.h, mhipp/wav.c,
mhipp/xfermem.c: version 0.59r by Michael Hipp: - applied
audio_alib changes from Ralf Hildebrandt
<R.Hildebrandt@TU-BS.DE> - some 'paetsches' from DK - minor
optimizations in layer3 (dequantize/huffman) - BSDOS 4.0 with
gcc added to Makefile (<sms@moe.2bsd.com>) - Solaris-ESD patch
from Ryan Prosser <prosser@wam.umd.edu> - Added Frontend changes
from Bertrand Petit <elrond@phoe.netdev.net> - more DK
'paetsches' (final dk7-clubhaus edition), includes extended term
control - SGI audio fix for non RAD machines from Erik Mouw
<J.A.K.Mouw@its.tudelft.nl> - fixed ugly bug in layer3 dequant
for bt==2 (may cause high frequency clitchs) - AMD-3DNow
optimizations in decode and dct64 - OS/2 reworked from Samuel
Audet (see audio_os2.c for more) - added freebsd-esd make-entry
from Daniel O'Connor (darius@guppy.dons.net.au) - added enhanced
head_check from D. Skarda <0rfelyus@atrey.karlin.mff.cuni.cz> -
applied 'xterm-title-patch' from "Wilson, Jeff D"
<jeff.wilson@wilcom.com> - more esd changes from Robert
Bihlmeyer <robbe@orcus.priv.at> - applied Hannu Napari's
<Hannu.Napari@hut.fi> SGI audio patches - minor changes in
httpget.c and mpg123.c - added native AIX support from
Juergen.Schoew@unix-ag.uni-siegen.de - applied playlist patch
from <psst@euskalnet.net> - more SGI audio patches from Gilles
Zunino <Gilles.Zunino@hei.fupl.asso.fr> - applied esdserver
patch from Matthew Parslow <roy@alpha.alphalink.com.au> - added
some fixes for control_generic
2006-02-20 03:42 thor
* mhipp/BUGS, mhipp/CHANGES, mhipp/Makefile, mhipp/Makefile.win32,
mhipp/README, mhipp/TODO, mhipp/audio.h, mhipp/audio_esd.c,
mhipp/audio_mint.c, mhipp/audio_sun.c, mhipp/buffer.c,
mhipp/common.c, mhipp/decode.c, mhipp/decode_2to1.c,
mhipp/decode_4to1.c, mhipp/decode_i386.c, mhipp/decode_ntom.c,
mhipp/equalizer.c, mhipp/genre.h, mhipp/getlopt.c,
mhipp/layer3.c, mhipp/mpg123.c, mhipp/mpg123.h,
mhipp/mpglib/TODO, mhipp/version.h, mhipp/wav.c,
mhipp/xfermem.c: version 0.59q by Michael Hipp: - ESD fixes -
minor bugfixes (DK patch ;) - au and cdr 'support' (it's a hack)
- Fixed 'VBR' Bug in get_scale_fac1(). Thanx to
<ssonique@hotmail.com> for this. (Wasn't really a VBR Bug. The
new encoders just triggered it.) - Added equalizer patch from
<dlux@dlux.sch.bme.hu>
2006-02-20 03:41 thor
* mhipp/CHANGES, mhipp/Makefile, mhipp/README, mhipp/audio.c,
mhipp/audio.h, mhipp/audio_alib.c, mhipp/audio_alsa.c,
mhipp/audio_esd.c, mhipp/audio_hp.c, mhipp/audio_sgi.c,
mhipp/audio_sun.c, mhipp/common.c, mhipp/control.c,
mhipp/control_sajber.c, mhipp/control_tk3play.c,
mhipp/dct64_i486.c, mhipp/decode_3dnow.s, mhipp/decode_i386.c,
mhipp/decode_i486.c, mhipp/decode_ntom.c, mhipp/genre.h,
mhipp/getlopt.c, mhipp/getlopt.h, mhipp/httpget.c,
mhipp/layer3.c, mhipp/mpg123.c, mhipp/mpg123.h, mhipp/mpglib,
mhipp/mpglib/Makefile, mhipp/mpglib/README,
mhipp/mpglib/common.c, mhipp/mpglib/dct64_i386.c,
mhipp/mpglib/decode_i386.c, mhipp/mpglib/huffman.h,
mhipp/mpglib/interface.c, mhipp/mpglib/layer3.c,
mhipp/mpglib/main.c, mhipp/mpglib/mpg123.h,
mhipp/mpglib/mpglib.h, mhipp/mpglib/tabinit.c, mhipp/readers.c,
mhipp/system.c, mhipp/term.c, mhipp/tools, mhipp/tools/ASF.info,
mhipp/tools/asfCDtomp3, mhipp/version.h, mhipp/wav.c,
mhipp/xfermem.c, mhipp/xfermem.h: version 0.59p by Michael Hipp:
- Added mpglib (see mpglib directory) - 'make generic' is more
generic now - Added HPUX/ALib support from Ducroquet Erwan
(ducroque@ufr-info-p7.ibp.fr) - Added EsoundD support from <fill
it in> - Added exp. relatime support (compile with -DSET_RT) -
Added linux-sparc patch from <hmm lost email) - Added genrepatch
from Shane Wegner <shane@CM.NU> - Added wav-File patch Samuel
Audet <guardia@cam.org> - Added SGI-RAD support from "J. Dean
Brederson" <jdb@cs.utah.edu> - Added sajberplay/FreeBSD patch
from Chou Ye-chi <is84002@cis.nctu.edu.tw> - Added 486
optimizations from Fabrice Bellard <bellard@email.enst.fr> -
Added combined output devices on SUN (ie Speaker and headphones
together) - Added audio_alsa.c (under GPL license) for the ALSA
sound system from A. Hermansen <ahermans@vf.telia.no> and J.
Kysela <perex@jcu.cz> -Added K6-3DNow patches from KIMURA
Takuhiro <kim@hannah.ipc.miyakyo-u.ac.jp>
2006-02-20 03:38 thor
* mhipp/BUGS, mhipp/CHANGES, mhipp/COPYING, mhipp/Makefile,
mhipp/NOTES, mhipp/TODO, mhipp/audio.c, mhipp/audio.c.old,
mhipp/audio_oss.c, mhipp/buffer.c, mhipp/common.c,
mhipp/control.c, mhipp/control_tk3play.c,
mhipp/control_tk3play.h, mhipp/decode_i386.c,
mhipp/decode_ntom.c, mhipp/layer1.c, mhipp/layer2.c,
mhipp/layer3.c, mhipp/mpg123.1, mhipp/mpg123.c, mhipp/mpg123.h,
mhipp/plugin, mhipp/plugin/Makefile, mhipp/plugin/README,
mhipp/plugin/dltst.c, mhipp/plugin/plugin.c,
mhipp/plugin/plugin.h, mhipp/version.h, mhipp/xfermem.c,
mhipp/xfermem.h: version 0.59o by Michael Hipp: - fixed Bug with
stereo streams on mono audio hardware for OSS - fixed a bug with
mono output and 1:1 (no) rate conversion - again changes in the
probe code - fix in the buffer code for the case, that audio
parameters are changing - more changes to the flexibel rate
converter, should now work when writing to STDOUT. - Added
Andy's (<andy@snoogie.demon.co.uk>) float2int speed up proposal
(check WRITE_SAMPLE in decode_i386.c) .. Maybe someone wanna
take the idea and put it into the decode_i586.s part? - Added
TK3Play support from Brian Foutz <foutz@anise.ee.cornell.edu>
(compiles but untested) - RIFF Header fix (according to Thomas
Niederreiter's <tn@tarantel.rz.fh-muenchen.de> patch) - m68k
patch from Stefan Gybas <cab@studbox.uni-stuttgart.de> applied -
minor additional PPC changes applied - resync and EOF hang fixed
- resync and bitrate correction relaxed - Slightly change
verbose output; added countdown
2006-02-20 03:35 thor
* mhipp/BUGS, mhipp/CHANGES, mhipp/Makefile, mhipp/Makefile.win32,
mhipp/NOTES, mhipp/README, mhipp/TODO, mhipp/audio.c,
mhipp/audio.c.old, mhipp/audio.h, mhipp/audio_dummy.c,
mhipp/audio_hp.c, mhipp/audio_nas.c, mhipp/audio_os2.c,
mhipp/audio_oss.c, mhipp/audio_sgi.c, mhipp/audio_sun.c,
mhipp/audio_win32.c, mhipp/buffer.c, mhipp/common.c,
mhipp/control.c, mhipp/decode.c, mhipp/decode_2to1.c,
mhipp/decode_4to1.c, mhipp/decode_i386.c, mhipp/decode_ntom.c,
mhipp/equalizer.c, mhipp/httpget.c, mhipp/layer1.c,
mhipp/layer2.c, mhipp/layer3.c, mhipp/mpg123.c, mhipp/mpg123.h,
mhipp/system.c, mhipp/tabinit.c, mhipp/version.h,
mhipp/xfermem.c: version 0.59n by Michael Hipp: - fixed shuffle
bug - added memory mapped IO for file reading - added MPEG 2.5
12kHz and 8kHz table entry - started flexibel rate conversion ..
- new '-Z' / '--random' option - minor clean-up - splitted audio
file in audio system dependend smaller parts - started system
stream support (external program: system.c) - unsigned 8 bit
(instead of ulaw) is now default for 8bit operation - Linux PPC
patch from Grant Erickson <eric0139@tc.umn.edu> applied - added
BSDi patch from Peter Berger <peterb@hoopoe.psc.edu>, who
reported a failure when catching signals - minor bug fix in the
control interface for sajber jukebox - fixed the ugly 'Ctrl-Z in
buffer mode' bug .. YES ;) - added buffer preload when underrun
occurs (preload = 1/8 buffer size)
2006-02-20 03:26 thor
* mhipp/BUGS, mhipp/CHANGES, mhipp/INSTALL, mhipp/Makefile,
mhipp/Makefile.win32, mhipp/README, mhipp/README.WIN32,
mhipp/audio.c, mhipp/audio.h, mhipp/buffer.c, mhipp/common.c,
mhipp/control.c, mhipp/decode.c, mhipp/decode_2to1.c,
mhipp/decode_4to1.c, mhipp/decode_i386.c, mhipp/decode_i586.s,
mhipp/equalize.dat, mhipp/getbits_bsdos.s, mhipp/httpget.c,
mhipp/layer1.c, mhipp/layer3.c, mhipp/mpg123.1, mhipp/mpg123.c,
mhipp/mpg123.h, mhipp/version.h, mhipp/xfermem.c: version 0.59m
by Michael Hipp: - Bug with RIFF header streams fixed. - HTTP
auth option patch from Henrik P Johnson <king@one.se> - NetBSD
patch(s) added from <mycroft@NetBSD.ORG> and
<augustss@cs.chalmers.se> - Added advanced shuffle support from
Steven Tiger Lang <tiger@tyger.org> - fixed bug with too large
big_value field - fixed (hopefully) the bug with the '-a' option
- work-around for some pedantic compilers in fr->synth init -
some changes for the 'generic' version - applied NAS bug-fix
patch - new (good) MPEG 2.5 tables (from Niklas Beisert) - added
WIN32 support from Tony Million - added some bug fixes from
Niklas Beisert - fixed another ugly bug in layer3 dequantize
(wrote over the border of the 'xr' field) - a minor HPUX clean
up - added BSD patch from Kevin Brintnall <kbrint@visi.com> -
added Makefile.win32 - added NAS big endian fix
2006-02-20 03:24 thor
* mhipp/CHANGES, mhipp/Makefile, mhipp/README, mhipp/audio.c,
mhipp/common.c, mhipp/decode.c, mhipp/decode_2to1.c,
mhipp/decode_4to1.c, mhipp/decode_i386.c, mhipp/decode_i586.s,
mhipp/equalize.dat, mhipp/equalizer.c, mhipp/layer3.c,
mhipp/mpg123.c, mhipp/mpg123.h, mhipp/tabinit.c,
mhipp/version.h: version 0.59l by Michael Hipp: - simple
equalizer support (to be continued) - added NAS patch from
Martin Denn <mdenn@unix-ag.uni-kl.de> - real mono support -
added pentium optimized decode_i586 from Stefan Bieschewski
<stb@acm.org> - fixed a bug in MS dequantize function
2006-02-20 03:22 thor
* mhipp/CHANGES, mhipp/INSTALL, mhipp/Makefile, mhipp/README,
mhipp/audio.c, mhipp/audio.h, mhipp/buffer.c, mhipp/common.c,
mhipp/decode.c, mhipp/getbits.s, mhipp/httpget.c,
mhipp/mpg123.c, mhipp/mpg123.h, mhipp/version.h,
mhipp/xfermem.c, mhipp/xfermem.h: version 0.59k by Michael
Hipp/Oliver Fromme: - fixed "Accept" header in httpget.c - fixed
buffer overflow (causing core dumps) in httpget.c - fixed
display of song length - fixed -b (buffer) problem on SGI / IRIX
-- it definitely works now - fixed problem when files with
different sample rates where played, it now works with -b
(buffer), too - fixed order of local variables in decode.c to
work around a compiler bug in ultrix - fixed Makefile for ultrix
- reverted to old getbits.s (the new one could cause coredumps)
- more compact MPEG header display in non-verbose mode - small
fixes in buffer code and elsewhere
2006-02-20 03:19 thor
* mhipp/CHANGES, mhipp/INSTALL, mhipp/JUKEBOX, mhipp/Makefile,
mhipp/README, mhipp/common.c, mhipp/control.c, mhipp/get1bit.h,
mhipp/getbits.s, mhipp/jukebox, mhipp/jukebox/README,
mhipp/jukebox/audio.h, mhipp/jukebox/controldata.h,
mhipp/layer3.c, mhipp/mpg123.c, mhipp/mpg123.h, mhipp/version.h:
version 0.59j by Michael Hipp: - added sajber jukebox control
interface (it's currently a big hack) (see 'JUKEBOX' file for
more) - added simple rewind facility .. (only used by sajber
interface at the moment)
2006-02-20 03:14 thor
* mhipp/CHANGES, mhipp/Makefile, mhipp/README, mhipp/TODO,
mhipp/audio.c, mhipp/audio.h, mhipp/buffer.c, mhipp/common.c,
mhipp/getbits.s, mhipp/httpget.c, mhipp/layer2.c,
mhipp/layer3.c, mhipp/mpg123.1, mhipp/mpg123.c, mhipp/mpg123.h,
mhipp/tables.h, mhipp/version.h: version 0.59i by Michael Hipp:
- added front-end (remote) patch from "Brian J. Swetland"
<swetland@uiuc.edu> - added OS2 patches from Niclas Lindstrom
<nil@wineasy.se> - fixed 'rewind bug' - added patches from Leo
Broukhis <leo@zycad.com> - added shuffle patch from Tillmann
Steinbrecher <tst@darmstadt.netsurf.de> - added i386-getbits
from M.Stekelenburg <m.stekelenburg@student.utwente.nl> - added
fallback to 8bit if no 16bit samples support (currently linux
only) - added (slightly changed) outburst patch from Antti
Andreimann <anttix@cyberix.edu.ee> - added 'http accept' patch
from Hur TaeSung <saturn@arari.snu.ac.kr> - fixed buffer mode bug
2006-02-20 03:10 thor
* mhipp/CHANGES, mhipp/Makefile, mhipp/README, mhipp/audio.c,
mhipp/audio.h, mhipp/buffer.c, mhipp/common.c, mhipp/decode.c,
mhipp/decode_2to1.c, mhipp/decode_4to1.c, mhipp/decode_i386.c,
mhipp/layer1.c, mhipp/layer2.c, mhipp/layer3.c, mhipp/mpg123.c,
mhipp/mpg123.h, mhipp/tabinit.c, mhipp/version.h: version 0.59h
by Michael Hipp - added '--8bit' option to force 'UNSIGNED 8
BIT' playing - pcm buffer type changed to 'unsigned char *' -
plays 2:1 and 4:1 with the real frequency (ie 11025/22050
instead of 44100) - program (re)sets (changed) frequency for
every frame - buffer mode is broken
2006-02-20 03:08 thor
* mhipp/CHANGES, mhipp/Makefile, mhipp/README, mhipp/TODO,
mhipp/audio.c, mhipp/common.c, mhipp/dct64.c,
mhipp/decode_2to1.c, mhipp/decode_4to1.c, mhipp/layer1.c,
mhipp/layer2.c, mhipp/layer3.c, mhipp/mpg123.1, mhipp/mpg123.c,
mhipp/mpg123.h, mhipp/version.h, mhipp/xfermem.c,
mhipp/xfermem.h: version 0.59g by Michael Hipp (with f...):
0.59g: (MH) ------ - added support for MPEG 2.5 (it's a HACK!)
.. mpg123 understands and plays 2.5 but it does it wrong. (you
will hear this!) - Fixed wrong values in BandInfo struct for
32kHz mode - Some performance improvements and minor changes and
bug-fixes. - Tried the new imdct from the maplay1.2+ (version
1.81) package. (but it was slightly slower on my system,
currently disabled) 0.59f: (OF) ------ HP-UX audio fix (provided
by Damien Clermonte). Buffering (-b option) hopefully fixed.
Please test!
2006-02-20 03:05 thor
* mhipp/CHANGES, mhipp/Makefile, mhipp/README, mhipp/common.c,
mhipp/layer3.c, mhipp/mpg123.1, mhipp/mpg123.c, mhipp/mpg123.h:
version 0.59e by Michael Hipp: added Audio MPEG 2.0 support (but
near untested) (MH)
2006-02-20 03:03 thor
* mhipp/CHANGES, mhipp/Makefile, mhipp/README, mhipp/audio.c,
mhipp/buffer.c, mhipp/common.c, mhipp/dct64.c,
mhipp/dct64_i386.c, mhipp/decode.c, mhipp/decode_2to1.c,
mhipp/decode_4to1.c, mhipp/decode_i386.c, mhipp/getlopt.c,
mhipp/getlopt.h, mhipp/mpg123.1, mhipp/mpg123.c, mhipp/mpg123.h,
mhipp/xfermem.c, mhipp/xfermem.h: version 0.59d by Michael Hipp,
including at least 0.59c (a?, b?): 0.59d: (MH) ------ minor
modifications to dct64_i386.c removed duplicated dependency
'dct64.o' in Makefile 0.59c: (OF) ------ Another complete rework
of the buffer system (-b option) (normally uses mmap(), but it
can also use SYSV-ShMem because mmap() is broken on linux).
2006-02-20 02:59 thor
* mhipp/CHANGES, mhipp/INSTALL, mhipp/Makefile, mhipp/README,
mhipp/TODO, mhipp/audio.c, mhipp/buffer.c, mhipp/cmpl3,
mhipp/common.c, mhipp/dct64.c, mhipp/decode.c,
mhipp/decode_2to1.c, mhipp/decode_4to1.c, mhipp/decode_i386.c,
mhipp/getbits.s, mhipp/getbits_.s, mhipp/getlopt.c,
mhipp/getlopt.h, mhipp/httpget.c, mhipp/layer3.c,
mhipp/mpg123.1, mhipp/mpg123.c, mhipp/mpg123.h: version 0.59 by
Michael Hipp, with step 0.58 in there: 0.59: (MH) -----
extracted dct64() from decode*.c files. some changes to dct64()
and decode*.c to allow auto-increment/decrement removed
bit-counter in getbit-functions. Layer3 part2 now counts it
itself. 0.58: (OF) ----- Bugfix: not closing the audio device
caused a few samples to be lost. Bugfix: audio_set_rate() was
not called (!?!). Additional command line options
"--doublespeed" and "--halfspeed" (couldn't find better names).
See the manpage. Complete redesign of command line options. See
the manpage. Changed the buffer algorithm (-b). I'm not sure
whether it's better or worse now. Supports multiple files on the
command line. Pressing Ctrl-C will skip to the next MPEG file,
pressing it twice within one second will abort mpg123
completely. See the "INTERRUPT" section in the manpage. Support
for http URLs. See also the -p option in the manpage. Support
for list files. See also the -@ option in the manpage.
2006-02-20 02:54 thor
* mhipp/CHANGES, mhipp/INSTALL, mhipp/Makefile, mhipp/README,
mhipp/TODO, mhipp/audio.c, mhipp/buffer.c, mhipp/cmpl3,
mhipp/common.c, mhipp/decode.c, mhipp/decode_2to1.c,
mhipp/decode_4to1.c, mhipp/decode_i386.c, mhipp/decode_int.c,
mhipp/huffman.c, mhipp/huffman.h, mhipp/layer1.c,
mhipp/layer2.c, mhipp/layer3.c, mhipp/mpg123.1, mhipp/mpg123.c,
mhipp/mpg123.h, mhipp/tabinit.c: version 0.57 by Michael Hipp,
stepping over version 0.56: 0.57: (MH) ----- Put the
downsampling code together with the full quality decode into one
binary. (new options -2to1,-4to1) Optimizations in the dct12.
Removed the 'int' version. 0.56: (OF) ----- Additional command
line option "-rs" to try to resync on "broken" MPEG streams (now
called "--resync" or "-y"). Additional command line option "-b"
to use audio output buffering. See the manpage for additional
information. Changed a few variable names and some other minor
fixes, so the source compiles more cleanly (without warnings) on
most platforms (for example, the FreeBSD port compiles without
warnings using "-Wall -ansi -pedantic"). Makefile changes: moved
"solaris" to "solaris-gcc", new target "solaris" (using Sun's
SparcWorks cc, faster tha gcc!), new targets "aix" and "generic".
2006-02-20 02:50 thor
* mhipp/CHANGES, mhipp/COPYING, mhipp/INSTALL, mhipp/Makefile,
mhipp/README, mhipp/TODO, mhipp/audio.c, mhipp/common.c,
mhipp/decode.c, mhipp/decode_2to1.c, mhipp/decode_4to1.c,
mhipp/decode_i386.c, mhipp/decode_lp.c, mhipp/huffman.h,
mhipp/layer1.c, mhipp/layer2.c, mhipp/layer3.c, mhipp/mpg123.c,
mhipp/mpg123.h: version 0.55 by Michael Hipp: removed some
obsolete code from layer3.c (MH) changed scalefac stoing in
layer3 (MH) decode_4to1.c added again. Renamed decode_lp.c to
decode_2to1.c (MH) (both not optimized .. still expterimental)
Minor cleanups and optimizations in layer3. (MH) Removed some
(probable) minor bugs. (MH) Changed 2**(...) scaling (and
omitted a few muls) (MH) Changed Makefile (OF) Changed
dequantize to reorder with a mapping table (you can disable this
by undefining MAP in layer3.c) (MH) removed the 'dummy' scale
step for mixed mode (MH) Changed copy policy (MH) Modified
dequant-reorder-mapping (MH)
2006-02-20 02:09 thor
* mhipp, mhipp/CHANGES, mhipp/INSTALL, mhipp/Makefile,
mhipp/README, mhipp/TODO, mhipp/audio.c, mhipp/common.c,
mhipp/decode.c, mhipp/decode_i386.c, mhipp/decode_int.c,
mhipp/decode_lp.c, mhipp/getbits.s, mhipp/getbits_.s,
mhipp/huffman.c, mhipp/huffman.h, mhipp/layer1.c,
mhipp/layer2.c, mhipp/layer3.c, mhipp/mpg123.1, mhipp/mpg123.c,
mhipp/mpg123.h, mhipp/tables.h, tags: Starting reconstruction of
Michael Hipp's trackable work (downloadable release versions) in
svn. This is version 0.54. Of course this is not the beginning,
but it is what I was able to get. Changes from 0.53b to 0.54 (by
Michael Hipp): Minor changes in the documents .. huffman.c:
x->len,y->len removed .. always '15' for the important cases
audio.c: some additions to the SOLARIS audio code First noted
changes at all: from 0.53a to 0.53b by Oliver Fromme: see
CHANGES file
|