~ubuntu-branches/ubuntu/jaunty/pulseaudio/jaunty-updates

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
2008-10-06	Lennart Poettering
	fa93cb7: make distcheck pass
	e26ffc9: Merge branch 'master' of ssh://rootserver/home/lennart/git/public/pulseaudio
	be667af: Merge branch 'master' of ssh://rootserver/home/lennart/git/public/pulseaudio
	0274651: bump version and sonames
	f64d6af: Merge commit 'vudentz/master'
	aa43739: make sure we send a started messages when we are uncorking

2008-10-05	Lennart Poettering
	5996f59: update module-tunnel for recent protocol changes
	f728e9c: disable valgrind macro usage for now since valgrind generates a lot of spurious warnings as it seems
	6d52a41: add missing include

2008-10-04	Lennart Poettering
	a9c1bb3: substract the unused record buffer size from the overall size before calculating the space still left for recording
	83b1d7a: get rid of pa_alsa_volume_divide() since we have pa_sw_volume_divide() now
	da4ad5e: implement pa_sw_volume_divide() and pa_sw_cvolume_divide()
	87c8132: increase suspend timeout to 5s so that it is always longer then the default tsched buffer size of 2s
	530b95f: don't call snd_pcm_drain() when we suspend because that might take awfully long with our long buffer sizes these days
	88130eb: add missing inclusion
	82c46f2: do not cleanup staticly allocated memory unless we are in valgrind mode
	3c19352: show valgrind status on startup
	9b00664: instead of checking for  directly use new function pa_in_valgrind()
	8222f12: add new API function pa_in_valgrind() to check for

2008-10-03	Luiz Augusto von Dentz
	fef63d7: Fix loading module-bluetooth-device with an invalid parameter.
	0c998b0: Replace handlers of deprecated Connected signals with new PropertyChanged.

2008-10-01	Luiz Augusto von Dentz
	b205fcc: Cleanup module-bluetooth-discover.
	20f68bc: Fix Connected signal handler.
	04677cb: Fix match rule problems.
	0be845f: Remove PropertyChanged signal handler.
	3b427b7: Add signal handlers for Connected signals.
	443ea47: Add match rules for org.bluez.Headset and org.bluez.AudioSink.

2008-10-03	Lennart Poettering
	7a1a147: rename pa_cvolume_snprint_dB to pa_sw_cvolume_snprint_dB since it is
	c0815de: allow - in sample names
	28af994: increase PA_CVOLUME_SNPRINT_MAX to a proper value and document that it is not considered part of the ABI
	bde142c: when checking the validity of a cvolume check whether all values are not -1
	c0a9e8b: add missing calls to map file
	ebb2ecb: add new API call pa_cvolume_compatible()
	619ed8a: add new API call pa_cvolume_snprint_dB()
	be77bcd: add new API call pa_cvolume_init()
	db975c7: extend documentation for pa_channel_map_init()
	2367212: make a few casts explicit to remove compiler warnings
	7c2cb77: a bit of late pa_bool_t'ization
	d56f375: treat a channel map only then as compatible with a sample spec if it is valid
	8919898: add new API function pa_sample_spec_init()
	8a50105: if a volume or channel map is invalid show so when printing it
	33b186e: user lrint() and friends in inner loops instead of normal C casts to speed up a few things
	1bb5e58: use PA_FLOAT32_SWAP where useful
	7d442e3: optimize mixing routines a bit by pulling the multiplication with the global volume out of the inner loop by applying it first to the per-stream volumes

2008-10-02	Lennart Poettering
	a0f4ffd: make sure we call pa_sink_process_rewind() if a rewind was requested under all circumstances
	ea82dec: when we mix into a 16bit accumulator make sure we clamp before we scale with a volume to avoid range faults when multiplying
	08cf9db: properly parse response to pa_stream_set_buffer_attr() calls. closes #370
	54afcf2: inform dsp_empty_socket() *after* we emptied the dsp socket, that it is now empty
	9f5d052: make simple protocol not crash when allocating a memory block

2008-10-01	Lennart Poettering
	cf3f80e: when killing gconf helper, loop over EINTR
	ea15ca9: PA_WARN_REFERENCE works only for ELF targets
	3853070: don't hit an assert if a kernel driver reports invalid dB information, instead just warn the user
	5d18b62: remove useless log message
	4b67ea1: remove useless log message, re #367
	99acad7: fix support for ALSA devices which lack dB information
	c4bdc2f: it's --daemonize, not --daemon
	9e79c87: Merge commit 'coling/master'
	644f39d: a few FreeBSD fixes, from alexis
	f04cfcd: replace module-volume-restore by module-stream-restore in system mode, too
	6d74504: it might be a bit too early to initialize bluetooth by default for now, since it's still very rough around the edges
	0c3eb9f: fix typo in default.conf, closes bug #354
	00b70a8: follow PropertyChanged signals from BlueZ
	d299ac5: Some man page updates, add missing documentation, other fixes.
	79ad4e6: Make the shared memory segment size configurable

2008-09-26	Nix
	a84b72b: esound auth-ip-acl fix

2008-09-23	Stelian Ionescu
	564ef2b: have make_random_dir respect $TMPDIR

2008-09-29	Lennart Poettering
	f5c301d: make module-bluetooth-discover actually load modules and smaller other fixes
	3f4bc03: all kinds of minor type, memory leak, initializatio fixes
	a35f84a: instead of failing when the requested sampling rate is not available find the next one that is higher
	aa1974b: Use the same module parameter names for module-bluetooth-device as for most other modules
	7923731: use TRUE for pa_bool_t arguments
	60e9744: remove a few compiler warnings in BlueZ code

2008-09-27	Lennart Poettering
	87971c8: fix compilation errors in priority queue code

2008-09-26	Lennart Poettering
	9adf7c5: ignore bt proximity helper
	3ad8c04: add a generic priority queue implementation
	3e16d2f: make pa_idxset_trivial_compare_func() do a full compare instea of just equakity check
	183f2e0: some minor fixes and cleanups in the bt code

2008-09-12	Lennart Poettering
	6188737: make sure ~/.pulse exists before we create the runtime dir link beneath it

2008-09-11	Lennart Poettering
	d68c2c9: replace Makefile stub copies by symlinks
	8257214: enable bluetooth by default
	c0a1706: downgrade a D-Bus log message to debug
	db955e8: add trivial redirecting makefile to bt dir

2008-08-31	João Paulo Rechi Vita
	4ae124b: Move bluetooth proximity module to src/modules/bluetooth/

2008-08-30	João Paulo Rechi Vita
	8b02c2f: Change all int vars that doesn't allow negative values to uint

2008-08-29	João Paulo Rechi Vita
	78a3c72: Move bluetooth discover and device modules to src/modules/bluetooth
	76bae38: Cleanup some code
	6093e32: Remove some warnings
	02a9273: Free mempool

2008-08-28	Russ Dill
	447e027: Fix "file not found" error on load of module-bt-device for Ubuntu Intrepid Ibex

2008-08-26	João Paulo Rechi Vita
	8769bf4: Merge A2DP and SCO thread functions

2008-08-25	João Paulo Rechi Vita
	199bdf2: Add some more device properties to the sink properties list
	e2f3a86: Remove check for SIOCOUTQ and add proper includes
	dc4f796: Use union instead of different pointer types to the same memory area to make the code C99 compliant

2008-08-21	João Paulo Rechi Vita
	d1cc632: Move render and write to the fd to a separate function
	88a21e9: Change MIN/MAX to PA_MIN/PA_MAX
	27bc1ea: Remove unnecessary initialization of getcaps_req->flags
	027940b: Remove u->channels and u->rates, since it's redundant info
	0e81757: Fix some memory leaking
	e752cac: Change sbc_initialized to pa_bool_t

2008-08-20	João Paulo Rechi Vita
	708905c: pa__done for module-bt-device

2008-08-19	João Paulo Rechi Vita
	61013fb: Fix some debug messages and other cosmetic changes
	e570767: Refactor a2dp thread execution flow and improve time estimation

2008-08-17	João Paulo Rechi Vita
	2f455bf: A2DP poorly working
	c89301d: Fix sample size
	e545479: Fix block_size calculation

2008-08-16	João Paulo Rechi Vita
	b5c4d2e: Configure bt connection for a2dp
	85a931f: Get rid of hw_constraint function. It's code now lives inside bt_setconf().
	77138dd: Change default sink name to bluetooth_sink

2008-08-15	João Paulo Rechi Vita
	6c10b10: Try to improve time estimation
	123ba4f: Fix handling of PA_SINK_MESSAGE_GET_LATENCY
	0d37b91: Remove PA_SINK_NETWORK flag and move the passage of streamfd to the rt thread just before the thread creation

2008-08-14	João Paulo Rechi Vita
	435eb07: Change pa_sink_render to pa_sink_render_into_full and remove some unnecessary checks on the rt thread
	2e51b93: Make stream socket non-blocking
	71f1d68: Fix block size for SCO
	fcd7dc1: Add include for core-util.h
	eb1e308: Initialize rtpoll_item

2008-08-13	João Paulo Rechi Vita
	0519e5d: Add include for sample.h
	d48961f: Change close() to pa_close()
	b4ded21: Change strerror() to pa_cstrerror()
	16d5aab: Get rid of SINK_MESSAGE_PASS_SOCKET, since we don't really need it
	aa310a4: Changes for pa_modargs_get_value_u32 for integer arguments and correct some error messages
	0396a60: Copy arguments values instead of just getting a pointer for them

2008-08-11	João Paulo Rechi Vita
	f992296: Hand the stream socket to the rt thread
	255f9b0: Initial code for rt thread
	b8b761a: Fix PA_USEC_PER_SEC missing
	a3f0756: BlueZ connection configuration done
	e7b0839: Adds SBC Codec to pa tree

2008-07-31	João Paulo Rechi Vita
	c62c2ff: Add module-bt-device and dependencies to automake
	ee68292: Initial file for module-bt-device
	d8a0ec5: Add code from bluez/audio/ipc.[ch]
	ffe76a2: Add sender=org.bluez to dbus add match

2008-07-24	João Paulo Rechi Vita
	fe8bd53: Remove modargs, since module-bt-discover doesn't have any argument

2008-07-23	João Paulo Rechi Vita
	1e03c32: Refactor all linked lists to use pulsecore/llist.h

2008-07-22	João Paulo Rechi Vita
	d893a1f: Remove block delimiters from single line if blocks
	cadc666: Remove some unused vars and labels
	a69c020: Change booleans to pa_bool_t
	d90bb18: We don't need call_dbus_method anymore
	9907b46: Don't need to explicity check if hcid is running anymore
	2b68562: Improve dbus communication

2008-07-21	João Paulo Rechi Vita
	e5d25e0: Changing all private functions to static
	3909d9b: Remove VERBOSE definition
	c9f5659: Adding dynamic bluetooth audio devices detection

2008-07-18	João Paulo Rechi Vita
	314dade: Fix the symdef include

2008-07-17	João Paulo Rechi Vita
	6fccd58: Fix comparison of strings of different case
	9d18b90: Adding module-bt-discover to Makefile.am
	8b511f5: Adding module-bt-discover

2008-09-10	Omair Majid
	2ab4bb7: fix pa_stream_set_name

2008-09-09	Arthur Taylor
	f6670a1: stream_started_callback userdata bug

2008-09-10	Lennart Poettering
	636b520: fix S32 validity check

2008-09-09	Lennart Poettering
	5538c18: add src/pulsecore/lock-autospawn.c to POTFILES.in
	8f604bf: bump revisions
	17436b2: make sure peaks resampler also works for very short input buffers
	0deb6a4: minor improvements in debug handling
	4050447: unbreak pa_idxset_rrobin
	3a46bbe: When returning from a suspend, pass exactly the same flags as originally when
	25b200c: fix minor typo
	f4c2f00: Work around presumable ALSA bug that treats the dir argument to

2008-09-08	Lennart Poettering
	c7a7765: Merge branch 'master' into master-tx
	821dc17: move autospawn lock to pulsecore/ since we don't need it in the client anymore

2008-09-06	Colin Guthrie
	cd704f8: Linking fix for rtclock on libpulsedsp

2008-09-06	Robert-André Mauchin
	6b034f5: Updated LINGUAS: el, fr, sv added.
	a571242: Added French translation.

2008-09-05	Daniel Nylander
	77f57f3: Added Swedish translation.

2008-09-05	Lennart Poettering
	f216402: Add new option to disable remixing from/to LFE and set it to on by default
	33d349d: include build and runtime host information in debug output
	fb837f0: rework autospawning to allow to multiple parallel autospawning contexts
	994ff98: connect to localhost via IP address instead of host name, to avoid needless NSS lookup
	89ed507: if we are exiting due to cpu overload, say so via syslog, too
	f52fb64: if we are exiting due to idleness, say so
	a609e4a: check for errors returned by pa_context_connect()
	3f6f13f: use pa_channel_map_compatible() where applicable
	b56f344: a few minor clean-ups
	3429072: introduce upper channel map definition limit PA_CHANNEL_MAP_DEF_MAX
	ece297f: update map file
	cb0c97d: add new API function pa_channel_map_compatible()
	5a9a602: update map-file script to ignore gcc malloc attributes
	4562849: update documentation and help texts for s32le/s32be sample types
	12c5c62: Downgrade hrtimer warning to notice level

2008-09-03	Lennart Poettering
	11cc072: Merge commit 'origin/master-tx'
	bf403fe: introduce macros for all flags so that clients can check for them with #ifdef
	cbd8e60: use PA_STREAM_EARLY_REQUESTS for OSS streams

2008-09-01	Marc-André Lureau
	79009d2: command_get_info() segv in some conditions

2008-09-03	Lennart Poettering
	c402de7: reindent comments a bit
	40b66a0: Implement "early requests" mode.
	99d5ec6: Rework pa_machine_id() a bit
	5f93113: fix misuse of return value

2008-09-01	Lennart Poettering
	2c2b271: use gcc malloc attribute macros for internal functions, too
	5467cc3: drop -Winline from build cflags
	4348faf: don't include leagacy definition PA_STREAM_NOT_MONOTONOUS in docs
	f6e187f: prefix  internally used inline function with _
	70b820d: add gcc malloc related function attributes where appropriate
	e015879: add malloc related gcc attribute macros
	82ea8dd: avoid rounding errors on requested buffering metrics
	002e7a7: output relative timestamps in addition to absolute timestamps when logging
	a1c857a: include more build info in debug output

2008-08-31	Lennart Poettering
	1c4ad4b: rework device opening code: work around broken SND_PCM_NO_AUTO_xxx support in ALSA <= 1.0.17a

2008-08-31	Fabian Affolter
	1d319b0: Some string in German translation done

2008-08-30	Lennart Poettering
	34bcba6: remove a few more gcc warnings

2008-08-29	Lennart Poettering
	13018d6: fix a few compiler warnings on older gcc
	506eacc: reword amd64 message
	1acf394: change default log level for the library to PA_LOG_ERROR to avoid spamming to stderr more often
	086fa95: downgrade a few messages
	a45440d: the native atomic ops implementation for amd64 seems to work fine
	ca38446: Change return value of cmpxchg atomic op to pa_bool_t
	bdcb3a4: optionally add timestampts to every line logged
	54da71e: reduce needlessly large gdbm cache a bit
	450fe17: fix up latency before calling into stream code, to make sure we don't ask for too much data to early
	63505be: add missing config.h inclusion
	6723699: rework pa_ulog2 and base it on __builtin_clz if available, make pa_make_power_of_two based on it

2008-08-29	Marc-André Lureau
	d10e5e5: Add CFLAGS information on start-up

2008-08-29	Fabian Affolter
	f2c790d: Initial German translation

2008-08-28	Lennart Poettering
	bb8263b: add byte-to-usec and usec-to-byte converters that round up, not down
	f79c665: document in which direction we round

2008-08-27	Dimitris Glezos
	6685a14: Started Greek translation

2008-08-26	Ed Catmur
	3d07cc8: alsa_error_handler should note source of errors

2008-08-26	Lennart Poettering
	8df5b2d: increase pa_xmalloc() limit to 96 MB, closes #344
	fd3c6b0: fix typo
	f9713d1: Fix error code in pa_stream_get_timing_info()
	0a1f654: call close() in a loop to catch EINTR

2008-08-22	Colin Guthrie
	2a78f86: Fix more linking issues in x11-publish and stream-restore
	4282b72: Merge branch 'master' of git://git.0pointer.de/pulseaudio

2008-08-20	Lennart Poettering
	dc9b8dc: add a few missing casts
	a3e57da: add doxygen documentation for ext-stream-restore.h

2008-08-19	Lennart Poettering
	6baec25: use final glibc eventfd() instead of our homegrown syscall invocations
	8e71787: rework cpu limit logic to use monotonic instead of wall clock time
	961aa18: simplify pa_start_child_for_read by using pa_close_all()/pa_reset_sigs()/pa_unblock_sigs()
	b7026bf: add a few more gcc warning flags and fix quite a few problems found by doing so
	047eb52: run autoupdate
	2ca0533: update gitignore
	70f4a85: require ac 2.62 in bootstrap.sh

2008-08-18	Lennart Poettering
	3d2d6ca: Merge commit 'flameeyes/autoconf-2.62'
	46f0f9e: a few modernizations
	e65c514: don't unref pa_native_options object twice
	5cc2187: add some code to make invalid valgrind warnings go away
	c6b1888: bump release
	b8ba2de: restore volume/device for streams only when it wasn't set before
	ec62596: allow clients to not specify the volume for their streams
	c35d1bb: rework validity checking of sink/source/... names
	d315dcf: save a bit of memory
	67858c6: fix type error

2008-08-17	Russ Dill
	74719c2: Fix up overzealous HAVE_LT_DLMUTEX_REGISTER block

2008-08-15	Lennart Poettering
	8d596a9: Make Multicast TTL for RTP configurable, patch from 'dfort'
	f84536b: apply newly configured rules properly
	63402b3: apply volumes properly more than once in a row
	512c24c: apply the correct rules to sink inputs
	f68a6e5: don't restore devices for direct-on-input streams
	5a0e014: disable hotplug sounds by default

2008-08-13	Lennart Poettering
	916899a: pass force_refresh=FALSE to all volume/mute read invocations
	abd85af: drop 0db reset functions since they are not necessary anymore
	8a10eba: extend hardware dB scale in software to full range if necessary, instead of reverting back to software-only volume control
	3ec4a5d: rework volume/mute APIs: split out pa_xx_set_soft_volume() and add force_refresh argument to read functions
	29daef7: add new function pa_alsa_volume_divide()
	8ab85fd: reword some log messages
	e4adcf7: add new API function pa_cvolume_max()
	a176f68: reset lock_fd_mutex after destruction
	3c88af7: fix protocol destruction

2008-08-11	Lennart Poettering
	7c5a959: initialize IP ACLs properly
	8ca254c: fix two uninitialized memory accesses
	c4dff4d: otpimize mixing code a bit by moving a few checks out of the inner loops
	5b2a837: optimize volume changing a bit by only using a single counter for the inner loops instead of two
	b604290: adhere to struct gcc aliasing rules

2008-08-09	Lennart Poettering
	b218404: fix bad memory access
	72f520f: make gcc shut up
	afbfd5d: adhere to C strict aliasing rules
	432b4e5: don't use PA_GCC_UNUSED anymore
	9996213: free regex_t after use
	15cebba: rework autospawning code to survive multiple pa_contexts in a single process
	b4a5669: print reason when we fail to kill a running daemon
	ee4c350: set errno properly in all functions from pid.c
	d8119af: set errno properly in all functions from core-util.c
	9cf1a4e: add locale support to pa_parse_boolean()
	c4d32ec: set errno properly in all cases

2008-08-08	Lennart Poettering
	6df029a: make sure we don't crash if pa_thread_join() is called more than once on the same pa_thread object

2008-08-08	Diego 'Flameeyes' Pettenò
	016fcd9: Reduce rules for man pages generation to pattern rules.
	89f492a: Replace some manual build tests with AC_CACHE_CHECK and AC_COMPILE_IFELSE.
	daf3e8b: Create a new macro for checking compiler support for TLS.
	81969a7: Replace the CFLAGS-checking code with a common macro from xine-lib.
	a6e4507: Use AC_PROG_CC_C99 to discover C99-compliant compiler.
	f46ae10: Create an m4 directory for common macros and use it.
	66512f3: Remove gettext macros from configure.ac, intltool is used.

2008-08-07	Diego 'Flameeyes' Pettenò
	07395ce: Bump autoconf requirement to 2.62 (latest released version).

2008-08-08	Diego 'Flameeyes' Pettenò
	29fca62: Fix man pages generation when building out of tree.
	8a3d666: Fix building again libtool/ltdl 2.2.4.

2008-08-07	Lennart Poettering
	40ff5fa: add compatibility with older PA socket paths
	75b28e9: remove some leftover debug string
	ecb2bc4: Modify pa_state_path() to take an additional argument for prepending the machine id to the file name.
	bd05b36: Rework state/runtime directory logic
	4e6fb67: don't spam to stderr in API functions
	0075649: print machine id during startup
	73e2577: add new function pa_machine_id()
	b84f738: translate error strings

2008-08-06	Lennart Poettering
	b983c0b: include host name in default sink/default source file
	bb7f80d: fix a few things in the translations
	4a44084: add basic german translation
	31bfd6a: fix channel position string
	ff6bb7a: add a few configuration sanity checks for system mode
	a4762ab: add disallow-exit to default configuration file
	756fac8: add new switch --disallow-exit
	f1d2bf8: add i18n support
	c4a953d: remove authkey-prop from tree
	b4e8cac: don't include authkey-prop.h anymore
	9fde00e: fix a few potential bad memory accesses

2008-08-05	Lennart Poettering
	34dd4a2: fix shutdown when --disallow-module-loading=1 is passed
	ca12753: add a function to dump the stream database for debugging purposes
	8a156d1: don't enforce valid callbacks for extension module APIs
	98b8163: allow extension messages to actually carry information
	e0dd72a: fix error path (spotted by Coling Guthrie)
	f57b915: fix a few more copy/paste errors

2008-08-04	Lennart Poettering
	78236af: fix copy/paste error
	163f107: fix documentation to follow what actually happens
	64a2367: inherit proplist on sample playback from client
	03cd37e: remove port definitions from header file since they are not actually used yet
	7de3ab5: add missing C++ checks in header
	9f5c1c6: pa_bool_t is not exported
	dd07276: ignore PA_GCC_DEPRECATED and PA_GCC_PRINTF_ATTR when generating map file
	51d181c: update list of exported symbols

2008-08-03	Colin Guthrie
	580c434: Fix linking

2008-08-04	Lennart Poettering
	0cc674d: wrap protocol extension of module-stream-restore
	88c3db6: add protocol extension to module-stream-restore
	6cc3a61: store channel map in database and remap volumes if necessary
	eec623a: add hooks for connection creation/deletion, for that export pa_native_connection
	c01f0bc: split out save trigger function
	32cf9db: store channel map in database and remap volumes if ncessary
	5880516: add new API function pa_cvolume_remap()
	cd5afb8: don't hit an assert if  when process_rewind() is called with nbytes=0

2008-08-03	Colin Guthrie
	bf17dbb: Merge branch 'master' of git://git.0pointer.de/pulseaudio
	ec78981: Fix linking
	5744237: Merge branch 'master' of git://git.0pointer.de/pulseaudio

2008-08-03	Lennart Poettering
	5f69b5d: load module-device-restore and module-stream-restore by default, don't load module-volume-restore anymore
	ad76ca0: add new module module-stream-restore
	ec19f2b: a bit of refactoring
	d7b138d: fix uninitialized memory access
	a6c11be: define CANONICAL_HOST as macro for the GNU canonical host
	04ffac5: add extension system for native protocol
	9bfd67f: store load_once flag for module
	114f290: add a new error code PA_ERR_NOEXTENSION
	23bde22: start idle timer even when no module is ever loaded
	f417bb4: some pa_bool_t'ization
	065e764: make all protocol objects global singletons
	aaaafb0: use pa_channel_map_init_extend() instead of pa_channel_map_init_auto() to make things more robust
	1ae1dfc: simplify a bit
	0a2fced: add new api function pa_cli_get_module()
	5042284: introduce pa_cli_eof_cb_t
	084f429: rename pa_hook_free() to pa_hook_done() since the hook struct is allocated on the stack not via malloc
	34c4354: use @ as seperator between shared name variable and instance
	5916b5b: make sure we don't leak userdata struct
	32f63f2: allow running of PA with a valgring that doesn't know cap_set_caps
	06712c2: add new auth cookie singleton

2008-08-03	Sjoerd Simons
	98fbd24: fix iteration over random devices

2008-08-01	Lennart Poettering
	d36c5c9: rename props.[ch] to shared.[ch]
	edc56a7: rename pa_property_xxx to pa_shared_xxx to avoid confusion with property lists
	a5a7b79: fix build without ALSA

2008-07-31	Lennart Poettering
	d757dc7: Merge branch 'master' of ssh://rootserver/home/lennart/git/public/pulseaudio
	5150738: a bit of pa_bool_t'ization
	4f3193d: allow global tsched setting for all modules loaded by module-hal
	4ccbc4d: reword comment on dbus a bit
	026a6bd: Work around D-Bus bug that involves dbus_shutdown() to call exit() when it shouldn't. Patch from Coling Guthrie

2008-07-31	Stanley Cai
	80428d8: A fix on src/Makefile.am

2008-07-30	Colin Guthrie
	b30a5d6: Merge branch 'master' of git://git.0pointer.de/pulseaudio

2008-07-30	Lennart Poettering
	0b428e7: don't allow --start in system mode
	656d243: use the right LIBICONV macro, spotted by woglinde, closes #324
	c39a0bf: bump needed automake version
	881046b: install a default system.pa

2008-07-26	Petteri Räty
	90569d3: Make the alsa error message give out the needed version.

2008-07-30	Lennart Poettering
	3c6da6e: don't pass rediculously high values to umask()
	b7b4b5e: remove debug message

2008-07-29	Lennart Poettering
	bb00934: hide doxygen docs from git
	68ae1d4: fix two thinkos in signal reset/close_all code

2008-07-24	Lennart Poettering
	e3fb086: make module-hal and module-ck live together in peace
	49f09d6: fix destruction of dbus modules: make sure we don't leave filter function registered after unreffing the dbus connection
	23a3c55: hide start-pulseaudio-x11
	888256b: reset dbus error struct before retrying parsing messages

2008-07-23	Lennart Poettering
	e7b9da3: add missing pieces for new startup logic
	c95d0d7: bump api verson
	32e93d5: follow consolekit's recent D-Bus API change, original patch from William Jon McCan
	c415479: allow module-x11-xsmp to be loaded more than once
	1f10ca4: don't break if we fail to resume access to an audio device
	7140bdd: bump alsa dep to 1.0.17
	1401d36: make missing gdbm fatal (spotted by Betelgeuse)

2008-07-22	Lennart Poettering
	5edbb57: don't drop caps if we are started as normal root user
	3888bfc: enable exit-on-idle by default

2008-07-21	Lennart Poettering
	c1f9f95: prepare doxygen docs for 0.9.11
	d0530b0: fix gconf autoconf check

2008-07-21	Colin Guthrie
	0e1936f: Merge branch 'master' of git://git.0pointer.de/pulseaudio

2008-07-16	Lennart Poettering
	46a35c6: forward process_msg calls to the generic source handler, not the generic sink handler
	ff3f435: try to bypass alsa softvol, since it is broken when used with snd_pcm_rewind()

2008-07-03	Colin Guthrie
	0786de2: Fix documentation of constant: PA_VOLUME_MUTED (not PA_VOLUME_MUTE)

2008-07-04	Lennart Poettering
	297267b: Merge branches 'master' and 'master' of ssh://rootserver/home/lennart/git/public/pulseaudio

2008-06-28	Lennart Poettering
	1568fcc: get rid of our internal copy of the speex resampler. Instead, link against a system-installes libspeexdsp
	98c26b1: add proper update_max_request handler to native protocol streams
	e6ffec5: make sure we call pa_sink_process_rewind() under all circumstances if a rewind was requested before we call pa_sink_render()

2008-06-27	Lennart Poettering
	c7ebe2b: ignore ~ files
	c0e3c25: add additional file when updating speex resampler
	32fce4d: update speex resampler
	2490f69: update ffmpeg resampler from upstream SVN
	0fb402c: simplify handling of rewrite requests
	89620d3: handle rewind requests
	f0e5cd1: handle rewind requests
	913bbd4: save a bit of memory
	36021b1: modernize idxset a bit, reduce memory consumption, get rid of pa_idxset_foreach()
	113c62b: halve memory consumption of mempool flist, since we know we cannot have more than n_blocks entries in it
	c26be0d: modernize hashmap implementation a bit, reduce memory consumption a bit
	6dca92b: rework the flist implementation to halve memory consumption by merging the state field and the pointer in the flist cells
	a087014: some modernizations
	232c955: rename pa_queu_is_empty() to pa_queue_isempty() to follow idxset/hashmap nomenclatura
	3db7dcb: save some memory by increasing the dynamic array at a slower rate
	c0f97aa: some modernizations
	12278f4: fix typo in man page, closes rhbz #447355
	0540032: fix underrun detection for prebuf=0 streams
	7755f75: use (uint32_t) -1 to signify default buffer_attr values instead of 0, to allow prebuf=0
	2b764d4: fix crash when using sync'ed streams
	06ab488: cork/uncork before we ask for the rewrite, to make sure the rewrite actually gets trhough

2008-06-26	Lennart Poettering
	9f0afb3: always forward rewind requests to the sink, and don't abort on nbytes=0
	d08cac0: some svn->git updates in the Makefile
	ee79b05: rework logic to request automatic timing updates a bit
	4b8c4ef: reorder a few things to get rid of an uneeded comparison
	97084e8: add a FIXME
	7d3d3fc: move initialization order of validity bools around a bit
	36d6c71: unify smoother pause/resume handling in a single function check_smoother_status()
	dcbb7f2: convert to double only once, and make sure we can deal with negative results of -y
	eab1cb8: make sure to call process_rewind() under all circumstances before we do the next loop iteration
	1e36b57: use the newer name for monotonic/monotonous
	2c5a33d: remove redundant check
	85b83e8: properly initialize pa_stream::corked based on the flags
	1514d13: split pa_memblockq_flush() into two flush commands, one which fixes up the read ptr, and one which fixes up the write ptr
	5fccac9: comment two functions in memblockq.c
	ec10f5f: use the bight lighter _silence() instead of _flush() when destructing our little q
	dd8b909: fix up if the smoother shall be resumed 'before' it was actually paused
	b4302ca: fix up monotonicity of input to _get() instead of hitting an assert
	63b68f4: call the enum PA_STREAM_NOT_MONOTONIC and make PA_STREAM_NOT_MONOTONOUS an alias for that
	df2650e: fix return value of pa_namereg_make_valid_name()

2008-06-25	Lennart Poettering
	c5cbeb5: choose more sensible default buffer sizes for old clients

2008-06-25	Colin Guthrie
	517727e: Add xmltoman to the distribution. This saves pulling in an external dependancy

2008-06-24	Colin Guthrie
	5099ab7: Export the cleanup_name() function and rename it to pa_namereg_make_valid_name().

2008-06-24	Lennart Poettering
	ac03254: Merge branch 'master' of git://git.debian.org/git/pkg-pulseaudio/pulseaudio-upstream
	398514f: call update_source_requested_latency callback for source outputs only when it is set to non-NULL

2008-06-23	Lennart Poettering
	c22d8b9: don't refer to nonexisting pa_stream_read() function
	57aee6d: include proplist.h in pulseaudio.h

2008-06-23	CJ van den Berg
	1562671: Merge dead branch 'glitch-free'
	126e4cf: Merge dead branch 'lennart'
	0be9bc2: Merge dead branch 'lockfree'
	63c1eb1: Merge dead branch 'ossman'
	a87ba42: Merge dead branch 'liboil-test'
	1a3984c: Merge dead branch 'prepare-0.9.10'

2008-06-22	Lennart Poettering
	8885ddf: support file-based capabilities instead of SUID root for giving PA rights to acquire RT/HP scheduling: setcap cap_sys_nice=ep /usr/bin/pulseaudio

2008-06-21	Lennart Poettering
	ab93f2a: fix deadlock when resuming oss sinks
	2199b8e: Properly check for home directory
	d0e26a5: Don't fail when we cannot determine the lock file path
	d1362b5: call the right function in the right context
	d9f8b6a: since the sink is unlinked before the sink input we need to make sure we don't call any function for unlinked sinks from any sink input callback
	947d8b4: execute detach callback before we change the state to UNLINKED
	37bc240: allow sinks to be created with max_request initialized to 0, so that the data can be filled in later when attaching to some piggybacked sink

2008-06-20	Lennart Poettering
	d3c1c92: Request a rewrite immediately after we have been linked, so that playback starts immediately
	add6c03: Rework module-combine to work with glitch-free core; add new max_request field to pa_sink
	1420e1d: fix interpretation of remix parameter
	6c980c2: add new abstract device class
	2b112fe: add new function pa_smoother_reset()

2008-06-19	Lennart Poettering
	11e55fe: add new remix= parameter to remap sink

2008-06-18	Lennart Poettering
	fd5a1b1: remove trailing spaces
	c2fa11e: make user of pa_channel_map_init_extend() wherever it makes sense
	132e73b: add new API pa_channel_map_init_extend() to synthesize a channel map if noone is known
	b95cf52: ignore tarballs
	822366a: remove remaining $
	8ae83d6: get rid of svn $ keywords
	6c4edd1: add missing gitignore files
	b5a0802: add another .gitignore file, this time for pulse/
	3bf61ba: Add a .gitignore file for the src/ directory.
	63daee5: Add a small README with the new git URLs and stuff

2008-06-17	Lennart Poettering
	9020543: if building a man page fails remove the output to make sure that calling make repeatedly will actually work
	ac58f8d: fix man page xml
	ba64de8: reset prebuf if it is too large
	038a033: limit the prebuf value by tlength
	b28c6e9: bring module-tunnel back to life
	8ba8265: server side of new shm negotiation scheme; fix a bad memory access
	0d0911f: rework shm usage negotiation; merge a few pa_bool_t in a single bit field to save a bit of memory; drop redundant implementation of pa_init_proplist()
	36c5259: minor modernizations
	53987e6: make use of the pa_init_proplist() version in proplist-util.[ch]
	0e32db2: move pa_init_proplist() to proplist-util.[ch]

2008-06-16	Lennart Poettering
	ce001aa: add missing const to a few functions
	fa53443: add pa_memblockq_get_base()
	7dffccd: add Nokia copyright
	71aca29: check for packet size on server info data
	1fe2f2c: use new pa_sink_set_latency_range() in null sink
	f2efe93: a few modernizations
	f4e2750: add new function pa_iochannel_socket_is_local()
	3b691c2: make use of the new pa_socket_address_is_local() function
	30a8800: add new functions pa_socket_is_local() and pa_socket_address_is_local()
	2af2433: add missing inclusion

2008-06-14	Lennart Poettering
	4cf508e: minor modernizations, increase unload timeout to 60s
	ce53497: avoid division by zero when informing user about unloaded lazy samples in the sample cache

2008-06-13	Lennart Poettering
	bf51a4a: update todo
	b27cc1d: fix a bad memory access pulsecore/client.c
	7bae1ba: rearrange things
	e9c13e2: consider passing the same argument twice to a module an error, also consider a variable name without following = an error
	8dd59a6: sometimes a simple memset() is much faster
	5c149e2: fix a minor memory leak when unloading m-c-k

2008-06-12	Lennart Poettering
	d39d6c9: drop hal inclusion from module-console-kit.c

2008-06-12	Colin Guthrie
	39f59cd: Trivial typo fix in debug log message.

2008-06-11	Lennart Poettering
	92e4fb3: merge Colin Guthrie's module-always-sink module, and add priorization to the hook subsystem while doing so.
	1337afd: enable auto-spawning by default
	b3444d6: enable ConsoleKit support and positioned event sounds by default
	ac0f527: add new switch --start to the PA binary which allows starting PA if it is not running yet. In contrast to normal startup an already running PA will not be considered an error. Also, take the autospawn lock so we can guarantee that after this call returns PA is ralive and running
	c33db3c: don't exit when the XSM signals us a session exit. instead just unload all X11 modules
	a180edd: move pa_core_check_quit() a bit later
	46d17f0: reformat things
	f7ff9e2: install auto unload time event only when we have at least one auto unload module
	2cc95df: add new module-console-kit which tracks ck sessions to avoid termination when there is still some session using the PA instance
	62dde3f: add new module module-position-event-sounds for positioning event sounds in space
	67fde59: replace pa_atof() by pa_atod() because floats are lame
	ca36968: update well-known property list

2008-06-09	Colin Guthrie
	71fefa7: Do not invalidate the cookie if no file was specified.

2008-06-03	Colin Guthrie
	3e4afae: Rejig r2495 slightly and directly compile the necessary source files as libpulsecore.so is not available when libpulsedsp.so is built
	3166ce8: Also link libpulsecore.la to some libraries (needed for logging). Discovered while compiling with --as-needed
	78ae612: Perfer client.conf over X11 property variables.

2008-06-03	Lennart Poettering
	9a501ef: fix a compiler warning on ARM due to missing cast, patch from Jyri Sarha

2008-05-29	Lennart Poettering
	c98516b: update props
	8431fb1: allow on-the-fly deleting of hashmap entries wile we iterate through them

2008-05-27	Lennart Poettering
	c4f60d5: never hand out more data from a sink input than requested. Otherwise the resampler might run for too long and we get a heavy delay/underrun
	7297bd9: always expect name field in upload datagram
	307645e: fix esound proto to not crash
	21dedcb: readd name field to upload datagram
	d332439: fix a minor memory leak

2008-05-21	Lennart Poettering
	28405e3: big mumbo jumo of interleaved patches.
	6be0c75: move device volume file to state dir
	9f86d0f: move default device from runtime to state dir
	32c53f3: move volume restore table from runtime to state dir, fix another compiler warning
	2ed84ed: define PA_SYSTEM_CONFIG_PATH and PA_SYSTEM_STATE_PATH for C
	29c7ded: deal with failing pa_runtime_path()
	dd662d5: properly handle if pa_runtime_path() fails
	341042b: make state and config path for system instance configurable
	8125a75: fix a compiler warning
	9303cdd: add O_NOCTTY
	a9c80b4: add new functions pa_state_path()/pa_get_state_dir(), change return value of pa_startswith()/pa_endswith() pa_bool, add pa_in_system_mode() and pa_streq(); alow pa_unlock_lockfile() without file name spec

2008-05-18	Lennart Poettering
	d65b901: fix daemon shutdown with active monitor streams
	174d830: ignore close-test binary
	b467791: add a small test program for pa_close_all()
	ef4c6bf: remove a misplaced assert
	7df3c4f: make sure we don't hit an assert when autospawning
	3c7a795: fix pa_close_all() to make it actually work as advertised
	0a2b6dd: fix a misplaced assert

2008-05-17	Lennart Poettering
	940f898: fix return value of noop pa_limit_caps()
	3bbc376: add another assert to catch sleep time miscalculations easier
	7d0b595: use pa_source_set_latency_range()/pa_sink_set_latency_range() in the ALSA drivers; fix sleep time calculation
	de8a386: use pa_source_set_latency_range()/pa_sink_set_latency_range() in the ALSA drivers; fix sleep time calculation
	58487ee: use pa_sink_set_latency_range() where applicable
	7e5e015: link latency of monitor source to sink
	9b44665: add new function pa_source_set_latency_range(), fix type of requested_latency
	2e71f4d: only unref memblock if there is one
	971342d: dump latency metrics for recording streams, too
	6285a46: fix peak detection pseudo resampler
	e35bae8: fix pa_stream flag checking
	856a2f9: type fixes for constants
	b2f8aec: type fixes for constants
	b709ab5: fix a minor compiler warning
	85d9abe: declare the explicit type for our PA_xSEC_PER_ySEC constants

2008-05-15	Lennart Poettering
	b8849f5: bump so revisions
	a1639e1: also update PROTOCOL
	045c1d6: merge glitch-free branch back into trunk
	3aadad1: update protocol spec
	43dfc2a: follow recent alsa sink changes in the alsa source
	734f071: decrease default tsched buffer to 2s to reduce overall memory consumption
	813d40c: fix up requested latency when we move a record stream
	e3c5a77: fix moving of record streams
	99a4516: don't access stream before it is valid
	74f8a67: fix suspend for alsa sink
	f021538: export a couple of more functions from libpulse
	e0dc1e4: Print message when stream started playback, use terminal sequence to clear line when printing that message
	86ea73a: reduce malloc() usage when logging, to minimize the hit of logging in RT threads. Not complete yet, i18n still uses malloc
	b57c520: add pa_vsnprintf()
	1a2e5a8: add adaptive resampler to the RTP receiver, other modernizations
	cfc4842: export a few more properties for RTP streams
	f96a8ad: increase default mempool size, make mempool_slot an abstract struct because the only fields it defined where actually unused
	70c5967: increase shm size limit, modernizations
	2bc77ff: reduce number of allocated memblocks when receiving RTP data by reusing blocks
	d10ee7d: more pa_bool_t'ization
	c801d08: use pa_bool_t
	076ffa3: add 'stream' as media role
	1b7157a: add PA_REFCNT_INIT_ZERO
	6895280: add pa_ulog2()
	103ceaa: add pa_memblockq_get_nblocks()

2008-05-14	Lennart Poettering
	df73688: modernizations
	37813d9: modernizations
	787b869: initialize volume properly, set more properties, modernizations
	2eca8c9: don't spam us with wakeup msgs in non-tsched mode
	9c48ed1: update pipe source for glitch-free, too
	8baa1a4: fix pipe sink for glitch-free
	dd29f67: fix braindead mistake
	94c269e: some fixes to make the esound protocol work on glitch-free again
	8df6529: some fixes to make the simple protocol work on glitch-free again
	c5faeb1: store peer name in native-protocol.peer property
	aae8beb: if zero is passed to pa_memblock_new() allocate largest memory block possible from mempool

2008-05-09	Lennart Poettering
	f124445: fix module-sine for glitch-free
	df92b23: - Fix moving of sink inputs between sinks
	580d563: modify test to generate data events out-of-order
	0ea0e06: make sure the smoother code can deal with incoming data that is out-of-order; start smoothing only when we have at least a configurable number of entries in our history
	e97a347: bah, english sucks

2008-05-08	Lennart Poettering
	1f196e7: fix some comments

2008-05-07	Lennart Poettering
	7b5c6a3: fix recording
	21fa1cf: double default asyncq size
	876d5b4: fix a race condition when tearing down the ladspa/remap sink
	6f4d44b: apparently alsa expects us to free the memory for card names
	d21f458: fix a memory leak
	9354da4: make memchunk/memblockq streams work with glitch-free
	dafcf20: beefup proplist handling for sound events
	8afbdc3: update to new rewinding logic
	9d7fde5: rework the rewinding logic once again, fixing
	6c28f1d: decrease verbosity a bit
	44241ac: define callback function types; allow pa_signal_done() to be called even without prior pa_signal_init()

2008-05-06	Lennart Poettering
	91fbb69: explain why changing rlimits at this time is safe
	dee3555: rename 'routing' to 'filter'
	4fa6cb4: add a few more asserts, don't allow pa_limit_caps() to fail

2008-05-03	Lennart Poettering
	71d14d4: fix remapping sink for glitch-free
	a1c10b5: update LADSPA module for glitch-free moed
	59835d9: explain why a rewind was requested
	82caf5a: when rewinding after the end of an underrun, make sure to rewind as much as we can, so that we deal properly with changed latencies of the sink
	3167e0f: follow _unlink() changes from sink-input
	d2da344: send PA_SINK_MESSAGE_REMOVE_INPUT only when an asyncmsgq is available, reset resampler only when we really need to
	d2be471: make sure to call sink->update_requested_latency() always when we change latency, same for source
	59a7467: don't require a module name when resolving a dl symbol

2008-05-02	Tanu Kaskinen
	ff09fa3: Fix typo: "now"->"not".
	43a30a2: Fix setrlimit() return value comparsion.

2008-05-02	Lennart Poettering
	bb4f83b: only send PA_SINK_MESSAGE_SET_STATE if there's still an asyncmsqg around to do so
	bfb2691: a few modernizations
	06b9140: reorderer a few things
	792ef5c: fix a compiler warning
	775bc6c: some modernizations
	7d6269e: add multiarch paths to default LADSPA search path
	49b1b15: don't enable prebuffering if we just call is_readable()

2008-05-01	Lennart Poettering
	52e3628: Yes, yet another evil all-in-one commit of intervowen changes. I suck.
	f94fae3: move unlinking code to operation_unlink()
	f3cc178: some minor updates
	11559a6: parse boolean parameters as boolean instead of int wherever applicable. add new function pa_cli_command_execute_file_stream()
	414f1d9: install gccmacro.h properly, drop  unused core-def.h file
	d7cc1f5: change pa_rtpoll_set_timer_absolute() to take a pa_usec_t instead of struct timeval
	5816871: save and restore errno in log functions
	b93ea18: minor reformat
	4f99c43: check for $PULSE_INTERNAL before enabling padsp
	18ad6f8: don't allow overwriting of callback pointers when we're already dead
	b70edf7: port pa_sample_clamp() to liboil
	9dd8f6c: add new function pa_sample_clamp()
	264385a: strip CRLF line breaks from read CLI commands. This should fix the cli interface for people accessing it via telnet.
	f49df7a: * Increase history set to 64 to simplify reduction of indexes
	563f4b6: make check for $DISPLAY=="" more readable, pa_bool_tization
	06a05bc: a bit of pa_bool_t'ization
	b12b8ee: save errno before calling free()

2008-04-23	Lennart Poettering
	caf742a: define minimal and maximal wakeup/sleep times; check for underrun condition only once during buffer fillup
	5353cf4: fix size of requested_latency
	067a68a: fix build for auxiliary modules
	c8fc223: add stripnul to build
	76031df: Big pile of interdependant changes:
	a197644: add new tool 'stripnul' which can be used to drop leading zeros from a file which is useful to do byte-by-byte comparison of what goes in and comes out of PA
	f2dffb7: pa_bool_t'ization
	0b183fb: respect the resampler's maximum block size to avoid that we get kicked out of the memory pool due to resampling. actually drop data from the delay queue after we used it
	998ed8e: add missing header definitions for last commit
	3f57d3a: add new function pa_alsa_build_pollfd() to alsa-util to unify a bit more common code from the sink and the source
	ed0af46: unify code that fixes up buffering metrics
	af03dd4: drop a misplaced newline
	3c8e83f: do not fix automatic buffer attrs anymore, the new protocol version doesn't need this anymore and it creates more problems than it solves. Also drop the initial timing info query. Correct programs shouldn't depend on it anyway

2008-04-22	Lennart Poettering
	5e6aacd: * don't increase tsched_watermark on underrun without limits 
	6b4b95b: show configure latency metrics
	1adbe82: some beautification updates, show msec instead of usec everywhere
	cdb077b: if no timer was armed, we don't need to disarm it
	4a1971a: if no latency was configure for a sink/source, fill in the max latency automatically
	69f6bdf: add new function pa_alsa_recover_from_poll() to merge common core from module-alsa-sink and module-alsa-source
	9a486ef: implement --process-time
	0d01c43: make sure the client buffer has space for 2*minreq+tlength. Explain why
	e16a198: - Change meaning of special values of latency request: 0 -> "minimal latency, please"; (pa_usec_t)-1 -> "don't care"
	88227c4: properly initialize memblock->is_silence for imported memory blocks; make is_silence and read_only a bit field

2008-04-20	Lennart Poettering
	5e7e827: improve dB volume calculation
	ba6c0e1: fix C++ compat
	8181db1: initialize properties for ALSA sinks/sources more elaborately, re #277
	c2c833c: use the sink description instead of the name to choose the description for the monitor source
	64e048c: drop a redundant pa_init_proplist(), properly set MEDIA_NAME property on stream, not on context
	5971345: rename sink_input->rewind to process_rewind() and set_max_rewind to update_max_rewind()
	62e7bc1: Big pile of dependant changes:
	7556ef5: maintain a global silence memblock cache
	a0671aa: fix for new location of gccmacro.h
	d1d7a07: we have not periodic timers anymore
	33a35b6: update to recent changes of proplist api
	33cb589: split user supplied data in multiple memory blocks if necessary to fit in one mempool tile. If the caller supplied a free_cb and we use shm it's better to copy the data immediately to the shm region instead of keeping it around as user memblock
	ed36f31: increase the default pool size to 16MB because we now need to keep a lot more memory around due to glitch-free.
	03df088: add lower boundary for artifical latencies
	af25697: follow pa_pstream_use_shm->pa_pstream_enable_shm rename
	687aa29: add new pa_pstream_get_shm() API, rename pa_pstream_use_shm() to pa_pstream_enable_shm(); pa_bool_t-ization
	bee409a: remove debug messages
	1ddb95a: add new silence memblock caching subsystem
	4b1d684: add new API function pa_memchunk_memcpy()
	144b237: print a message on xrun

2008-04-17	Lennart Poettering
	22ceb15: add new rtstutter tool which can be used generate artifical scheduling latencies in the OS to trigger buffer underrun events in your software. it's an awesome debug tool for glitch-free; also move test programs from automake's check_ back to noinst_ to make sure it is built everytime Lennart presses F9 in his emacs
	c9d0159: define PA_xxxSEC_PER_yyySEC for usec, too

2008-04-14	Lennart Poettering
	1f0a52d: the pointer to rewind() may actually be NULL
	68e4a93: properly ask the sink to rewind on new sink inputs and when they disappear
	6946d2a: make sure to clear all queued RT signals before arm a new timer
	04178d4: add _cb suffix to _max_rewind function like with all other functions, too

2008-04-13	Sjoerd Simons
	91f092e: Let bootstrap.sh require version 1.10 of the various autofoo bits. Otherwise things will break during compilation

2008-04-11	Lennart Poettering
	14fd32e: add missing 'break's in switch
	55f273e: s/pulsecore\/gccmacro.h/pulse\/gccmacro.h/
	07f5c1d: register sink/source name as first step when creating a new sink/source so that we can hand the valid name string to the hook functions; se tup props for monitor sources correctly; fix implicit flag setting logic
	aad9d39: dump all info we know about sinks/sources/... in pactl
	dbe3633: properly initialize ->memblockq
	cdb273d: add new pa_get_state_dir() function, move pa_strnull() here
	dcf7173: fix help string for volume commands
	fe3c42d: fix packet formatting for a few commands
	2c6176f: mark shm marker struct as packed, to guarantee identical sizes between archs
	29cbd88: add new PA_GCC_PACKED macro
	096e7f0: make shm magic marker compat with multiarch systems where 64bit and 32bit processes might share SHM areas
	c9db6d2: don't fail if a signalled writability of STDOUT is no longer true when we try it because some other thread already wrote something
	413656b: update list-xxx commands a bit
	28ab2a0: don't print 'signal' each time a rtpoll poll() call is canceled
	50d585e: fix linker warning macro code, move pa_strnull() to core-util.h, move PA_LIKELY definitions here from gccmacro.h
	d0ebb71: don't use fqdn if we don't have to
	78368db: redirect alsa errors to normal PA log system; export buffer settings in device props
	1c5f665: make use of new alsa SND_PCM_NO_AUTO_xxx flags; redirect alsa errors to normal PA log system
	0f28de6: mark autoload functions as deprecated
	d7e260b: remove misplaced PA_GCC_PURE
	e832b0c: add C++ safety to header file
	7dad635: fix bit depth guarantee for pa_usec_t
	919bd98: add new API function pa_timeval_add()
	566322a: remove gcc macros from cdecl.h because we have them in gccmacro.h now
	007f82d: fix bad memory access when initializing client proplist
	d491adf: add gccmacro.h to doxygen docs
	e084e4b: add new module module-device-restore
	c61c3b6: increase version of required ALSA to 1.0.16. check for gdbm
	6cddf61: add new API pa_rtclock_from_wallclock()
	e1c1a78: fix proplist serialization
	bb9792a: move gccmacro from pulsecore/ to pulse/

2008-04-09	Lennart Poettering
	5d7128a: add new describe-module CLI command
	39afb14: add new pa_proplist_setf() API function
	d69aeeb: implement server side of new sink/source reconfiguration commands
	fc9d827: remove doxygen \since tag for API changes older than 0.9; properly implement new latency query APIs
	cc1e265: init min/max latency properly; fix avail_min updating
	f3109be: show configured latency and its ranges
	da37a7e: export both min and max latency that is configured for a sink; add API for querying the requested latency of a sink/source from the main thread
	ad18107: add new latency argument
	0f9e977: bump protocol version
	3138928: include proplist.h in doxygen docs

2008-04-07	Lennart Poettering
	b3b8a63: call snd_pcm_hwsync() expclicitly before we access any of the status fields, since this seems to be necessary. try to find the right mixer device via the card index
	c84a64c: fix bug where we silently dropped data that didn't fit into one mempool tile
	98b0152: add utility functions to dump alsa PCM state

2008-04-04	Lennart Poettering
	b9c10f2: propery calculate min_avail in frames instead of bytes. don't use device_id= parameter in alsa modules if parameter wasn't specified
	064aa12: drop support for periodic timers, cleanup code a bit
	122861f: mark libpulse-browse as obsolete

2008-04-03	Lennart Poettering
	cdfcf66: - deprecate autoload stuff

2008-03-31	Lennart Poettering
	ecf6439: catch up with trunk HEAD (i.e. 2118:2213)
	0e983e5: fix caps stuff for crazy people who disable caps
	316e39d: update copyright year
	fa0b9b0: merge r2136 from prepare-0.9.10
	a9971d2: merge r2195 from prepare-0.9.10
	b39da92: merge r2194 from prepare-0.9.10
	1af0d94: merge r2193 from prepare-0.9.10
	9f71611: merge r2192 from prepare-0.9.10
	70a459b: merge r2191 from prepare-0.9.10
	690807e: merge r2189 from prepare-0.9.10
	5181f79: merge r2190 from prepare-0.9.10
	a826937: merge r2187 from prepare-0.9.10
	79938c9: merge r2186 from prepare-0.9.10
	6734fba: merge r2185 from prepare-0.9.10
	78bdb97: merge r2184 from prepare-0.9.10
	e382f22: merge r2183 from prepare-0.9.10
	1be481f: merge r2182 from prepare-0.9.10

2008-03-31	Diego Petteno
	25f9507: fix the help for --disable-per-user-esound-socket so that it actually

2008-03-30	Lennart Poettering
	3e314b7: fix buildsystem to provide pa_log() in all binaries
	cf37df4: rework pa_assert_se() to make sure it never gets optmized away, even if NDEBUG is defined
	68b131d: make pa_drop_caps() abort on failure
	dbf9037: avoid name clash with libc's remove() function

2008-03-29	Lennart Poettering
	829197d: fix compiler warning
	ed5528f: require autoconf 2.60 since we use AC_PROG_MKDIR_P
	1c82694: bump soname
	a3b8311: merge r2187 from trunk

2008-03-28	Lennart Poettering
	0a108ec: don't fail on init if the default device does not exist and .nofail is active
	fad6b41: don't segfault when module-tunnel is used without a sink_name/source_name parameter. Closes #197
	13b9951: if we are run as root, always use 'root' as username, regardless of any env vars
	8e60b01: actually set lennart to the user name, not the group name. Set lennart too.
	2599213: Fix ioctl() definition for solaris compat. Patch from yippi. Closes #253
	b0dc80d: work around yet another solaris braindamage

2008-03-27	Lennart Poettering
	bc5e3f1: properly notify clients about suspended state when moving source output streams. Closes #244. Patch from slicer
	8298b6b: merge r2179 from prepare-0.9.10
	4ddc327: initialize gconf module before we publish our X11 credentials -- because gconf might cause network support enabled in the first place
	e21a69e: merge r2146 from trunk
	2b593d2: merge r2134 from trunk
	e5e9ed6: merge r2133 from trunk
	ac82029: merge r2132 from trunk
	95422a8: merge r2131 from trunk
	edd1a50: merge r2130 from trunk
	02840a3: merge r2129 from trunk
	a1ec3d7: merge r2128 from trunk
	46cd225: merge r2127 from trunk
	daaf70b: merge r2117 from trunk
	28b7ddc: merge r2116 from trunk
	cca3f49: merge r2113,r2214,r2115 from trunk
	184dda8: merge r2112 from trunk
	1eb7239: merge r2111 from trunk
	5045d26: merge r2110 from trunk
	39de4dd: merge r2109 from trunk
	bc58240: merge r2108 from trunk
	ec39786: merge r2107 from trunk
	e704fd3: merge r2106 from trunk
	b79c6b6: merge r2105 from trunk
	b0a2049: merge r2104 from trunk
	a451de1: merge r2098 from trunk
	2735309: merge r2097 from trunk
	640033a: merge r2096 from trunk
	9dfbfce: merge r2095 from trunk
	cc59e76: merge r2092,r2093,r2094,r2152 from trunk
	1908e82: remove a redundant if check
	db208e3: merge r2091 from trunk
	9f0045a: merge r2090 from trunk
	f10b531: merge r2084 from trunk
	66d9e87: merge r2145 from trunk
	d055127: merge r2083 from trunk
	6c106c9: copy originial l2ping license from bluez into bt helper
	14ed19c: Enable per-user esound sockets by default. Esound CVS already enables this by default, and all sane distributions ship a patched esd anyway. And those which do not should get a life and start patching esd
	cefa0eb: merge r2081 from trunk
	0e23606: merge r2079 from trunk
	a86a48c: merge r2077 from trunk
	5e13249: merge r2076 from trunk
	aceb800: merge r2075 from trunk
	e721ecd: merge r2073 from trunk
	8d5ee50: merge r2074 from trunk
	c59a90c: merge r2078 from trunk
	05a7f5d: bump revision
	e6bb276: create branch for 0.9.10
	5addad2: make loading of a few more modules non-fatal
	dcdf419: Double maximum sample size for some overly huge samples some distros ship
	a25a459: Attempt to resolve the multilib conflicts by getting all the config files
	7ad0b64: modernize polkit code a bit, use new functions from pk 0.7 instead of our home-grown ones
	8a14304: rename polkit policy file to org.pulseaudio.policy to follow upstream guidelines
	be9b32e: add vendor data to pk policy file
	c5f78bf: Abort instead of cleanly exiting, so we can obtain a core dump and find out

2008-03-26	Lennart Poettering
	7262e2f: add proper arm atomic ops support, patch from Jyri Sarha

2008-03-15	Lennart Poettering
	106ddb9: remaining bits and pieces
	b5c5064: commit glitch-free work
	d6bd152: commit glitch-free work
	ebecf3d: commit glitch-free work
	12c01e9: commit glitch-free work
	347cfc3: commit glitch-free work
	8d9bdac: really create glitch-free branch
	dd81a90: create glitch-free branch

2008-03-14	Lennart Poettering
	6ad7621: work around solaris printf %s and NULL string brain damage
	70d0083: change policy file to not show polkit auth dlg by default

2008-03-09	Diego Petteno
	666b952: And one more.
	30e2a77: Test for _struct_ lt_user_dlloader, otherwise it won't be found.

2008-03-08	Diego Petteno
	9ad7bb6: Build and run using libltdl from libtool 2.2. The user module loader support has changed drastically.

2008-02-15	Tanu Kaskinen
	46d804d: Clarify the explanation of the in_action field in pa_autoload_entry.

2008-02-15	Lennart Poettering
	dc3682d: only call pa_ltdl_done() if we called pa_ltdl_init() before
	2b8bc5c: allow compilation on systems that lack POSIX shared memory. Patch from matthijs, closes #200
	5552139: explicitly recommend the usage of -- in the pasuspender command line, Closes #203
	a1b2a83: look for timer_create in librt, Closes #210, patch supplied by matthijs
	0a807b3: print pa version id each time we start up, so that it is easier to identify the version people are reporting bugs again
	75e1ebd: Improve compatibility with applications which like to pass invalid strings to the libc functions we overwrite, by handing directly to the original function. Patch by Colin Guthrie and Gustavo De Nardin, Closes #227

2008-02-13	Lennart Poettering
	86b9ef8: deal with a possibly failing pa_channel_map_init_auto() correctly

2008-01-24	Diego Petteno
	a3e820f: Mark long_options constant.
	c8a9c9b: Use check_PROGRAMS rather than noinst_PROGRAMS for test programs.
	be4c0f2: Apply the fix for CVE-2008-0008 from 0.9.9 release on trunk.

2008-01-24	Lennart Poettering
	90a7f3b: bump revision
	4d4dafb: fix CVE-2008-0008.patch
	9423e67: prepare 0.9.9

2008-01-06	Lennart Poettering
	d36a1b8: use __BYTE_ORDER macro for detecting byte order, as suggested on http://unixpapa.com/incnote/byteorder.html

2008-01-04	Sjoerd Simons
	c5678ae: Don't send opcodes introduced in protocol versions 12 to clients using protocol
	02f49a2: Implement opcodes in the tunnel modules that were added in version 12 of
	9774cc7: Add forgotted #ifdef __linux__ and only use SIGRTMIN if it is defined. Fixes

2008-01-03	Tanu Kaskinen
	1e74aa9: Add a missing pa_xfree.
	4e77176: The previous commit introduced a new bug: giving too many values in the "control" argument wasn't detected any more. Fixed.
	39ba68b: Fix the parsing of trailing default values in the "control" module argument.

2008-01-02	Tanu Kaskinen
	dccf411: Downgraded the priority of a message, because it's really quite uninteresting.

2007-12-29	Lennart Poettering
	9d00b9d: convert argument to boolean value before passing it on to __builtin_expect in PA_LIKELY
	2cb1b2c: add new function pa_proplist_contains()

2007-12-23	Lennart Poettering
	2a44213: add API for resetting allocated resamplers
	7f65e79: wrap speex_resampler_reset_mem()
	81e85ce: hide proplist-test
	63c616e: add new property list implementation

2007-12-14	Tanu Kaskinen
	8ed2a8c: Increase the maximum line length of default.pa from 256 to 1024. Load commands of modules that need multiple channel maps may grow rather long.

2007-12-06	Diego Petteno
	b94a6bc: Add a configure switch to enable the per-user ESounD socket path, but default to vanilla ESounD's path. This way distributions and users can configure PulseAudio according to their ESounD library.

2007-11-24	Lennart Poettering
	95a98fe: Add new subsystem for applying envelopes (such as volume ramps) to audio signals
	2d34bca: rearrange #includes
	0312890: add new pa_mutex_try_lock() API
	7a42425: add new endianess macros for FLOAT32
	ca0c5af: make sure to create ~/.pulse before using any configuration file from it

2007-11-23	Diego Petteno
	04d7a7e: Check for mkdir -p or equivalent, and use that rather than simple mkdir to create the modules, modules/gconf and modules/rtp directories.
	19ee3b6: Enable D-Bus if Bluez or HAL are enabled; use DBUS_LIBS/DBUS_CFLAGS when building libdbus-util.la.
	ec91380: Fix detection of polkit_context_is_caller_authorized() function, also reported by Nix. Also fix detection of policydir for prefixes different from /usr.~

2007-11-22	Lennart Poettering
	9d2255d: fix uploading of samples into PA. Problem discovered by Colin Guthrie
	3e4f820: update speex resampler with newer snapshot from Speex SVN

2007-11-21	Lennart Poettering
	d41744a: Tagging release 0.9.8
	23e3d7c: bump version and soname
	6b932f0: update man pages a bit
	40db06d: when speaking to a client with a version < 12, hide S32 sample specs, and make them appaear as FLOAT32
	0f5fa47: increment api and protocol version
	14a9b80: - Check process name when dealing with PID files
	4ac6b53: minor typo fix
	5a4959e: add short version history of the PA protocol
	63fa021: add a couple of new opcodes, and document the versions the opcodes where added
	d1d0778: add API to allow runtime reconfiguration of memblockqs

2007-11-16	Lennart Poettering
	07832d0: detect whether PolicyKit support is available
	cf0d43e: build PolicyKit support
	8bdad29: add interface to PolicyKit

2007-11-14	Lennart Poettering
	413a8f8: use a prio inheriting mutex for the threaded mainloop, to ease writing of RT clients
	461e369: use a free list for allocation pa_operation objects
	1765b13: use a free list for allocating reply_info structs
	9b75b9d: add missing pa_boolization

2007-11-13	Lennart Poettering
	7462ab1: Rework ALSA mixer channel detection code. This time we actually care about the channel names the ALSA mixer exports for us
	4c47617: add array size to increase chance of detecting missing updates
	4a39c2e: don't fail if the bt-proximity-helper is not built
	15f56de: don't touch RLIMIT:MEMBLOCK by default. This should improve out-of-the-box comaptibility with JACK
	7b321ed: increase the pacmd timeout a bit
	d17bb53: Completely rework ALSA device selection code: choose the device to open depending on the requested number of channels and channel map. In most cases it will now suffice to set default-channels=6 to enable 5.1 sound for all devices that support it
	f752882: fix loading of load-once modules if no other modules was loaded before

2007-11-11	Lennart Poettering
	5054f36: add new fun module that automatically mutes your audio devices when you leave with your bluetooth phone, and unmutes when you come back
	e8092be: Port module-gconf to make use of the new API pa_start_child_for_read()
	daf3a3e: pull code for starting helper processes out of module-gconf, clean it up, and stick into a new API pa_start_child_for_read()
	e043eaa: add new function pa_strnull() to simplify passing null strings to non-linux printf()
	f873a2a: add a simple fully-automatic fully-linearupmixer/downmixer and enable it by default

2007-11-09	Lennart Poettering
	e313fe1: tag modules that may only be loaded once at most especially, and enforce that in the module loader
	d8e0c1c: minor typo
	b0a68fd: optimize mixing code a bit. Add mixers for S32LE, S32BE, ULAW, ALAW and FLOAT32BE. Add volume adjusters for FLOAT32BE, ALAW, ULAW.
	c1985c2: replace a few CLAMPs by PA_CLAMP_UNLIKELY
	0149031: remove PA_CLAMP_LIKELY macro because it doesn't really make sense.
	7bd3c03: .la files for modules can probably be removed safely on all archs now
	7e0f547: add support for 32bit integer samples
	3c17c7d: fix CLAMP_LIKELY/UNLIKELY definition
	ecf349d: add missing #include
	42ef051: add a few missing macro definitions
	cb66762: add PA_CLAMP_LIKELY and PA_CLAMP_UNLIKELY macros
	c8cdb06: add support for likely()/unlikely() type macros

2007-11-08	Lennart Poettering
	14b974a: parse the pasuspend argument like any other boolean in PulseAudio
	a2121d5: strip most comments from the default configuration files, since the man page is now more elaborate and we don't want to maintain those docs redundantly at two places
	4459912: add remaing man pages

2007-11-07	Lennart Poettering
	1ef4baf: warn if the sound server is not local
	1821f1f: add man pages for padsp, pabrowse, pasuspender

2007-11-06	Lennart Poettering
	5dbab0b: complete pactl man page

2007-11-05	Lennart Poettering
	0eb011b: minor cleanups of --help texts
	7fdc1ee: add a couple of more man pages
	bff4ca4: add a man page for the pulseaudio binary. More will follow.

2007-11-04	Lennart Poettering
	961ce33: fix two alignment issues found by the debian buildd gcc on sparc
	faf1fd7: pa_boolization
	0184d70: add eventfd syscall nr for arm; patch from Sjoerd Simons; Closes #150
	9ac9328: Properly terminate pa_readlink() strings. Patch from Sjoerd Simons. Closes #149
	95af1e6: Add linker version script to hide non-ABI stable symbols in the client

2007-11-01	Lennart Poettering
	bc161b4: comment the library versions a bit
	cb0d7ff: add missing pthread libs
	81233c1: make disallow-module-loading config option work again (original patch from Diego Petteno)
	7bfd1b2: make rtprio and nice level actually configurable
	641d1fa: drop rt scheduling before we start our helper process
	41ea3b2: add new option --realtime
	005ed41: save and restore errno in sig handler
	44d7c9a: add nice and rtprio resource limit support; make rtprio and nice level to use configurable; some minor updates
	e706f7b: pa_boolize the client config
	65a6bff: more pa_boolization
	b343497: make the bool config parser actually parse bools
	cecd8d4: fix comment
	38a1525: add new function pa_yes_no()

2007-10-30	Lennart Poettering
	5058a1e: save and restore errno in the sig handler
	111b759: bump sonames
	0f0e729: make sjoerd happy: include ChangeLog built from svn logs in tarball
	099e690: make make distcheck pass
	b03b574: rename 'length' parameters in the API to 'bytes', to make their unit clear
	b84489d: handle tcp4: prefix for server specs correctly. (Closes #136)
	72817f9: rename stream names too, when the sink name changes
	201dff7: ignore updates not relevant to us
	1e0454e: rework the tunnel naming scheme, and make it follow the description changes of the underlying devices; never check for tagstruct eof, to ease later extensions
	bb2e1af: initialize userdata struct with 0
	0991a1b: remove libltdl from SVN
	2d265a9: deal properly with signals interrupting us when we wait for data from gconf helper

2007-10-29	Lennart Poettering
	f1be931: keep track of configured tunnels and make sure to unload them when they disappear from zeroconf again
	e406bba: don't announce monitor sources
	5ef242c: don't try to send pause request before our stream is properly set up
	33c238b: ignore network sinks/sources
	625a872: make gcc shut up a bit more
	1dae2e6: we don't want to include assert.h anymore
	43b5c65: reverse server order for PULSE_SERVER x11 property, to follow order in which modules are loaded
	cc88385: add new API pa_strlist_reverse()
	87be856: add new module module-zeroconf-discover
	9f44659: publish dns-sd subtypes to allow distinction of virtual, hardware and monitor sinks/source
	9ca7ed1: export pa_namereg_is_valid_name()
	0ce32bd: fail on name clash
	ac83631: bring back module-tunnel, yay!
	9ccbd86: downgrade a few log messages
	6e1f7bd: properly deal with time pausing
	a46804a: use real path of binary instead of /proc/self/exe to execute ourselves
	27d6b7b: make use of new pa_readlink() where applicable
	ca98c54: add new pa_readlink() API
	1c06907: make speex-float-3 the default resampler

2007-10-28	Lennart Poettering
	c6a7f06: add missing dependency on socket-util
	a67c21f: merge 'lennart' branch back into trunk.
	575541d: Merge r1502 from trunk: Move pthreads detection as it gets confused by things in LIBS.
	f096ca4: Merge r1504 from trunk: Solaris hides inet_ntop in nsl
	c6071b0: Merge r1505 from trunk: Make sure we link to the core to get all symbols.
	9eb840c: Merge r1503 from trunk: Make -no-undefined actually work (and fix up error found by it).
	d8976a2: Merge r1473 from trunk (mixer ioctls on /dev/dsp)
	b718d18: fix error handling
	daa2863: don't use errno on EOF

2007-10-27	Lennart Poettering
	94cf167: port module-esound-sink to new core
	66dc0b4: don't use SIGRTMAX, for compatibility with valgrind which apparently uses this signal
	98d363c: minor cleanup
	87faa54: minor fix to make gcc shut up
	56804de: minor fixups, to make the test more deterministic
	581e7f1: add ability to "pause" the input time temporarily. don't accidently overwrite variables we still need.
	55e4a3e: modernize pa_iochannel a bit, add pa_iochannel_get_send_fd()
	c4d9a2b: add missing pa_smoother destructor
	b4bb747: add pa_rtclock_usec() API
	ca744a4: add pa_timeval_load() API

2007-10-26	Lennart Poettering
	ce5250e: hide smoother test

2007-10-25	Tanu Kaskinen
	7ccf40e: Add "support" for plugins that have control output ports, i.e. don't crash on them anymore (the plugins correctly assume that every port is connected to a buffer, so we connect them to a dummy buffer that isn't used anywhere).
	81ed6e6: A couple of comment typo fixes.

2007-10-24	Lennart Poettering
	0d84e4c: fix alsa mmap initialization bogosity, discovered by Jyri Sarha

2007-10-23	Lennart Poettering
	dc987e9: add better time interpolator: use linear regression to determine gradient from
	9464b9b: add definition of PA_USEC_PER_MSEC
	65b570c: properly copy error string

2007-10-22	Lennart Poettering
	498a156: also port over JACK source to new core
	02adb5f: enable jack sink in Makefile
	468c13e: Port JACK sink module over from old core
	4029504: minor fixup
	925eadd: add interleaving/deinterleaving APIs

2007-10-17	Lennart Poettering
	1900817: Properly handle if ALSA sends us an POLLERR event, this should allow us to survive a system suspend cycle better

2007-10-15	Lennart Poettering
	2385efe: fix url

2007-10-07	Lennart Poettering
	b0bce20: add missing poll.h inclusion
	215cac8: add missing poll.h inclusion
	a687c31: add missing poll.h inclusion
	3736246: s/timespec/timeval
	2198c2e: fix build
	efc81a8: add new API function pa_timeval_store()
	d74fa66: Fix build; change return value of pa_rtclock_hrtimer() to pa_bool

2007-10-04	Lennart Poettering
	87cc073: fix poll.h check, bad boy ossman broke

2007-10-03	Pierre Ossman
	cb40087: Don't call pa_rtsig_configure() when we lack the necessary defines.
	60a935b: module_ladspa used libltdl so make sure it links against it.
	586ef22: Platform dependent semaphore implementation for Windows.
	cef6563: Assorted minor Windows compatibility fixes for recent code updates.
	ce74146: Add stubs when RT signals aren't available.
	8dcc1fa: Adapt rtpoll and friends to Windows by replacing timespec with timeval and
	ef8812e: Replace all references to sys/poll.h with poll.h as that's what POSIX defines.

2007-10-01	Lennart Poettering
	7c1768d: update native protocol to make use of pa_memblockq_pop_missing
	2e780e8: Move request size handling into pa_memblockq, function pa_memblockq_pop_missing()
	d6a2203: Fix race condition between IO thread creation and pa_sink_put(). Move activation of rtpoll fds when we change the state INIT->IDLE.
	9d34a1e: fix trivial typo
	abd692e: fix silence initializer for alaw and ulaw

2007-09-30	Tanu Kaskinen
	dbcd086: Fixed PA_GCC_CONST definition.

2007-09-28	Pierre Ossman
	bdf9746: Update module-solaris to new structure.
	6d8aea7: Incorrectly used str2sig() instead of sig2str().

2007-09-28	Lennart Poettering
	67b899a: treat timer_enabled like a real, grown-up boolean variable
	33f2f49: rework module-combine once again. We now run the data generation always in a seperate thread. This should help use to avoid all the awful race conditions we had in previously
	229afb5: Move the poll() call outside the #ifdef checking for ppoll, since we want the poll in all cases. Prior to this change the check for negative return values of poll/ppoll was never actually executed when ppoll() was available
	f8c1786: use the full range of RTSIGS for our stuff
	3cdff5f: Allocate rtsigs from back to front, to avoid clashes with other libraries makeing use of rtsigs
	df33b4c: only do IO if we are RUNNING or IDLE, but not when we are in INIT
	584ca61: don't free silence memblocks that don't exist
	107f12a: speed up semaphore allocation with an flist

2007-09-26	Lennart Poettering
	008c709: Use Linux eventfd() if kernel supports it
	e99bc33: fix build with compilers that lack __thread

2007-09-25	Lennart Poettering
	a9e667b: make sure when can shutdown PA cleanly without segfault
	5fe1589: work around newest open() magic in fedora glibc
	1687226: fix make dist

2007-09-24	Lennart Poettering
	86ec421: fix suspending in module-combine.c
	609ad12: * decouple suspending of monitor sources and their sinks
	0e3e9e2: only post data into the monitor source when it is not suspended
	f0f9df9: * add new state changed hook for streams
	ac86fa1: fix IDLE vs. RUNNING state handling of sinks/sources when changing cork status for streams
	3c75d35: rework zeroconf service publishing, to use synchronous hooks instead of asynchronous subscription events. Don't push autoload entries anymore.
	e37fa01: add hooks for name/description changes of sinks/source and streams
	ef020c6: fix stream corking: ignore pa_sink_input() when we are in corked state
	55651ec: don't count streams using the monitor source in pa_sink_used_by(), because this would disallow suspending a sink ehn an rtp stream is connected
	ba322a4: drop the PA_SOURCE_CAN_SUSPEND and PA_SINK_CAN_SUSPEND flags, since they were a bad idea in the first place. All sinks/sources are now *required* to handle suspending in one way or another. Luckily all current sink/source implementations handle it fine anyway.

2007-09-23	Lennart Poettering
	77ed60c: instead of using the mixer ioctl()s on the dsp fd, open a seperate fd for the mixer. This allows us the keep the mixer fd open while closing the dsp device while suspending.
	fc00eaf: use O_NOFOLLOW when creating lock files, too
	2860685: use O_NOFOLLOW when creating PID file, to avoid symlink vulnerability

2007-09-23	Tanu Kaskinen
	de079ac: Added an assertion for the case when the sink programmer hasn't installed the thread_mq properly.
	7bcbf16: Comment typo fix.

2007-09-22	Tanu Kaskinen
	ecad937: Fix the assignment of control values by using the right variable for indexing.
	1c44be2: Correct the parameter positions with the pa_cvolume_set() call.

2007-09-22	Lennart Poettering
	e04a857: minor optimization
	6cfb096: include the name of the master sink in the name for piggy-backed virtual sinks
	c6b43bf: prefix by order macros with PA_
	6683400: rework a couple of sample type converters, to actually work
	78a9ad3: - rework volume adjustment code to not require fp
	d7a0876: fix selection of working format
	9db4267: make use of byte swap builtins of gcc if they are available
	f26de80: add test program for the resampler

2007-09-21	Lennart Poettering
	c34a263: allow _unlink() functions to be called as many times as people want, even before _put() was called
	1fc168b: clamp sample data to -1 .. 1, before passing it to the plugin; if a control port data specification is left empty, initialize with the default value of the plugin
	29d25ec: add CLAMP macro

2007-09-20	Lennart Poettering
	e205bb2: don't segfault when the master changes
	3b2835d: properly detach/attach when moving sink inputs
	f3f44da: rework module-combine again
	c40c168: maintain the attach status in a boolean variable 'attach' accessible from the IO thread for sink_inputs/source_outputs

2007-09-19	Lennart Poettering
	75647bc: render new data always in the master sink's thread, fixing missing locking
	a8a9ee4: make sure we initialize thread private data before we move our ghost sink to the rt thread, not after
	42b71ff: fix trivial typo
	d716e3c: fix check for lrintf, make resample2.c again identical to upstream ffmpeg
	75f799a: make O_CLOEXEC, O_NONBLOCK and socket low latency fd ops more uniform: always return void, name them similarly, only pass a single fd
	0fcad97: copy free_cb into a temporary variable first, to avoid compiler warning

2007-09-18	Lennart Poettering
	ac66b6a: fall back to plughw:, if hw: doesn't work, in the alsa source, too
	781cf49: properly release memblock always abd as soon as possible
	1fd9afd: make use of pa_bool_t on a few places where applicable; really start work_cb
	b3093d8: lower SO_PRIORITY priority to 6, since this is the best we get without being root
	ef8df41: make rtp send socket low delay
	f44ddd1: add new pa_socket_udp_low_delay() API
	6b2fd23: add two missing header file inclusions
	eb23601: bug fixes for module-rtp-recv
	8fdf054: make sure we don't call pa_source_post() for a monitor source after it was unlinked
	ca71764: If PTHREAD_PRIO_INHERIT mutexes are not available fall back to normal mutexes
	a558e93: port module-rtp-send.c to lock-free core
	08d4b23: actually close the alsa device before we try to reopen it as plughw

2007-09-18	Pierre Ossman
	4ed41f3: strtof() is a rather recent addition to C. Fall back to strtod() if it isn't
	aff22cf: NSIG seems to be more common than _NSIG.
	03d9863: Emulate lrintf with simple truncation if it isn't available.
	31dfb31: Make sure the header file is only included on linux (as this is a linux-only
	df1d347: NSIG is not defined by neither C99 nor POSIX so we can't rely on it.

2007-09-17	Lennart Poettering
	4cde507: add LADSPA sink than can be piggy-backed ontop of another sink
	7b4f981: print a message when we fall back on plughw
	8ff7d56: add a locale-independant pa_atof() implementation
	4cdf2ce: hide sig2str-test
	1ae473b: fall back to plughw: if hw: doesn't work
	26a1ae7: Rename pa_strsignal() to pa_sig2str(), since we return the symbolical signal name, not a human readable string. This follows the Solaris API of sig2str() a bit. Also, add all remaining signals to the list of signal names.
	d3b8985: drop a couple of WARNING prefixes in log messages, since we have pa_log_warn anyway for marking warnings especially
	19eb7eb: once.c is no longer POSIX specific. Since it is now considerably more advanced than it used to be, use it on windows, too
	7f9fea7: on Linu disable lazy binding altogether
	a1526f1: add missing initialization
	061e806: Add a special ltdl .so loader that avoids lazy frelocations during runtime
	2741685: use priority inheritance on mutexes where applicable

2007-09-16	Lennart Poettering
	61b90a0: add proper boolean type pa_bool_t
	116ddaa: use gcc const and pure function attributes wherever applicable
	35483ee: add a new module module-remap-sink which can be used to remap the channel maps of an already existant sink. one use case is to create a virtual sink that redirects stereo data to the rear speakers of a surround card.
	1d1eda6: add a "length" argument to the seek functions, as an optimization to request a certain block size if any data needs to be generated. this is merely a hint.
	5df7a85: split memblocks into multiples of the mempool tile size
	ac1ee4e: add new API pa_mempool_block_size_max() to query the maximum tile size
	fce8507: * add a new resampler "copy" which is does not change sample rates but copies data unmodified from input to output. 
	d079b48: properly define MAX/MIN macros
	87795b0: add missing header file changes for frame alignment apis
	e17fbf0: be a little bit more elaborate on the reason why we drop to software volume control if hw is not featureful enough for us
	0469c84: add frame alignment APIs; don't require memory to be writable when silencing it (required of the mmap modes drivers where the hw data needs to be silenced, although it is not writable to others)

2007-09-15	Lennart Poettering
	298d239: trivial typo
	8389264: count corked streams per sink/source and make pa_sink_used_by() return only the number of streams that are not corked. Introduce pa_sink_linked_by() returning the number of streams connected at all. This will allow suspending of sinks/sources when all streams connected to a sink are corked.

2007-09-14	Lennart Poettering
	5ae4eed: Move attaching/detaching from a pa_rtpoll into pa_sink proper, remove it from module-combine
	3396b65: simplify rt loops a bit by moving more code into pa_rtpoll. It is now possible to attach "work" functions to a pa_rtpoll_item, which will be called in each loop iteration. This allows us to hide the message processing in the RT loops and to drop the seperate sink_input->process hooks. Basically, only the driver-specific code remains in the RT loops.
	f0b9dce: explicitly destory TLS data before destroying TLS
	bf274cb: add two new macros PA_ONCE_BEGIN and PA_ONCE_END which allow usage of pa_once without declaring a function to be called
	04ed0f9: call dbus_shutdown() before exiting, to make valgrind output more useful
	8775309: fix two typos in reference count handling
	9be0d70: make newer gcc shut up

2007-09-12	Lennart Poettering
	ef83a19: extend rtpoll API to allow registration of arbitray functions to be executed in the event loop. Add priority system for specifying the order of these functions.
	cf3e9da: add missing config.h inclusion
	03f311a: reindent, and s/assert/pa_assert/g
	4137865: change pa_modargs_get_channel_map() to take an extra argument for specifying the name of the modargs attribute to parse
	d9c4c95: add new pa_pipe_close() API to close two fds at the same time
	7f92542: consolidate close() calls to pa_close(), and make sure on every occasion that we handle failures of close() sensibly

2007-09-11	Lennart Poettering
	54506ab: on systems where we know that POSIX shm is mapped to /dev/shm, add the ability to cleanup stale SHM segments. (Right now only Linux)
	d5bedbc: remaining s/assert/pa_assert/ and refcnt.h modernizations
	2988c3d: Rework core-error.c on top of PA_STATIC_TLS_DECLARE, the windows specific parts need to be moved to thread-win32.c
	abb18d9: explcitly initialize tls memory to NULL
	9c523e0: more modernizations, s/assert/pa_assert/g
	27f13b3: finish modernizations in pulse/, s/assert/pa_assert/g
	038e560: More s/assert/pa_assert/ modernizations
	391d09c: add 'wait' parameter to pa_rtpoll_run(), if zero pa_rtpoll_runn will only update the struct pollfd but not wait for an event
	597a1c4: port client libs to refcnt.h
	55d9fcb: add globally defined PA_PATH_SEP macro, replacing private per-file macros
	6ac66e4: add missing config.h includes
	e2e2ce7: Instead of including config.h from header files, check whether PACKAGE is defined and if not, fail (thus using PACKAGE as a check for inclusion of config.h)
	848a4d7: more s/assert/pa_assert/ modernizations

2007-09-10	Lennart Poettering
	9b0ab39: unify static TLS support, make use of gcc __thread attribute if available
	3d122d0: s/assert/pa_assert/ modernizations
	de21b54: add new API pa_threaded_mainloop_in_thread(), update test case for it
	a6f8b81: simple modernizations: s/assert/pa_assert
	6629886: make sure we send each memblock only once when recording, not twice
	d5caa02: minor cleanup
	a77158e: make the memchunk writeable before silencing it
	841fcb4: beef up comment
	98f9bd6: make sure that the device volume is properly read before we call pa_sink_put() and thus make the pa_sink available
	69ece66: add pulseaudio logo with text
	44e514c: update todo file a little
	6c1682c: hide a couple of files
	27c3bd4: document that the native amd64 atomic ops implementation is incomplete
	06db921: don't call pa_source_process_msg() for PA_SOURCE_MESSAGE_GET_LATENCY, since it makes querying the latency always fail

2007-09-10	Pierre Ossman
	d9b3c0e: posix_madvise and posix_fadvise aren't present on all systems.
	9630e8d: Remove mkdir_p again...
	028632f: TIOCINQ isn't present on all systems.
	e176601: Monotonic clock is optional so treat is as such.
	717b164: POSIX realtime clock functions are in time.h so make sure to include it.

2007-09-09	Tanu Kaskinen
	dfdf1d7: Changed PA_SAMPLE_S16_NE to PA_SAMPLE_S16NE in the example code in the Simple API Doxygen documentation.

2007-09-06	Lennart Poettering
	b41dbfd: fix an assert when runnig module-oss in record only-mode. optimize allocation of memblocks on playback
	d60940d: install libpulsecore again, since libtool otherwise links it statically into every single module
	e4eefb8: fix copynpaste error
	45ba711: downgrade realtime group membership warning to 'info' at be a little bit more elaborate
	3b2cf1a: update default config:
	b1fd53b: explicitly test for the availability of dbus_watch_get_unix_fd() before using it. The previous version-based check didn't work anyway since the constants checked for weren't set.

2007-09-04	Lennart Poettering
	a0d19c0: update libltdl copy
	a4757a1: add native amd64 atomic int implementation
	984ef82: detect whether gcc atomic builtins are available
	4c31ff9: fix a couple of compiler warnings
	2dbe137: if available, use native gcc atomicity builtins
	31c04a9: create config.rpath to fix build on fedora
	ac5f978: add a few missing files for make dist
	738f7d7: drop initial libtool_lock() call since this is a debian-specific borkage
	d1927c7: initialize libltdl for multi-thread support
	65ac0ea: When in PA_STREAM_AUTO_TIMING_UPDATE mode, delay completion of initialization until we have the first timing data

2007-09-03	Lennart Poettering
	c029038: actually add source code of module-default-device-restore
	11bf380: add a new module module-default-device-restore which automatically saves and restores the selected default device. Enable it by default.
	1d3e70c: header file cleanup
	104feb0: only list supported resampling methods when --dump-resample-methods is executed
	c9a0df3: add new API function pa_resample_method_supported() which tests whether a resampling method is supported. Fix building with libsamplerate enabled
	5bc1221: actually define HAVE_LIBSAMPLERATE with AC_DEFINE

2007-09-02	Lennart Poettering
	b2c4779: make libpulse-core a noinst lib, because it does not have yet a stable API and won't get one anytime. Also, don't install its header files
	b6bfaa9: add missing configure.ac part of the libsamplerate patch from r1753, re #125
	2e8244b: Allow compilation without libsamplerate; based on patch from Marc-Andre Lureau; re #125
	cc8c499: fix dbus version check for dbus_watch_get_unix_fd()
	011dfa5: make argument to pa_memchunk_will_need() const
	68981e5: fix build for dbus < 1.1.1, re #126, patch from Marc-Andre Lureau
	ca059ab: Don't set RLIMIT_MEMBLOCK to 0 on startup. Retain 4 pages
	3e188b1: make use of pa_memchunk_will_need() before handing sample cache audio to the RT threads
	7dbabc4: add new pa_memchunk_will_need() API, similar to pa_memblock_will_need()
	f36ca79: add new API pa_memblock_will_need() and make use of PA_PAGE_SIZE macro
	2f7b6fe: add new pa_will_need() API for paging in memory
	8cf822a: make use of new PA_PAGE_SIZE macro
	b54e71a: make use of new memory page alignment macros, reindent
	fe1f55b: add a couple of macros for memory page alignment

2007-08-31	Lennart Poettering
	1df817c: add pa_channel_position_to_pretty_string() to header
	718b1d2: add pa_channel_position_to_pretty_string() for usage in pavucontrol/pavumeter
	02811bf: make sure that we make include paths absolute before calling chdir()
	a132226: minor reformatting
	6eb2f88: add two new functions pa_make_path_absolute()/pa_getcwd()
	c627871: replace a pa_assert() by an pa_assert_se()
	f59dd18: - fix suspend handling

2007-08-30	Lennart Poettering
	241ad04: port module-combine to new core
	4d623f0: Lots of assorted minor cleanups and fixes:
	b552541: reorder initialization of pa_core variables
	ca72adf: modernize and make use of a static flist for allocating idxset entries
	821eb8e: move queue processing code into pa_thread_mq
	687f1f1: add new function pa_memblock_ref_is_one()
	c2e4328: fix pa_memchunk_make_writable(), make memchunk functions return the memchunk they modify
	bfe69ce: add an assert()
	6817987: add pa_timespec_reset()
	747b01b: make passing a code pointer to pa_asyncmsgq_get() optional
	ee97c42: add new PA_SINK_CAN_SUSPEND/PA_SOURCE_CAN_SUSPEND flag

2007-08-26	Lennart Poettering
	d88514c: drop check for gid < 500, since this isn't really a security improvement, re: #111

2007-08-25	Lennart Poettering
	0362350: Add option --dump-resample-methods to list available resampler implementations
	782d5a5: make floating point speex resampler the default
	89fcd51: enable -ffast-math for gcc
	f82067f: lower suspend timeout to 1s
	f4e2d23: include ffmpeg resampler in build
	9439e81: make ffmpeg resampler actually work

2007-08-24	Tanu Kaskinen
	6687dd0: Corrected a bogus comment.

2007-08-24	Lennart Poettering
	f0dbbe9: add makefiles to speex/ and ffmpeg/ to easy compilation from emacs
	640ae04: Copy resampler from ffmpeg into our sources

2007-08-23	Lennart Poettering
	f754a24: make speex resampler the default
	ed4dc16: big resampler rework: support integer-only resampling, support speex resampler
	4eb9bb0: fix a bad memory access when destructing pa_memimports
	c1cdcfd: a couple of modernizations; parse RE sample types properly
	c72d4c6: add a small speex wrapper so that we can include both the fp and the fixed-point resampler in the same binary
	fdead57: build speex resampler tiwce, once for fixed point, one for floating point
	5ff891c: add a copy of the speex resampler to our sources

2007-08-22	Lennart Poettering
	b3b382d: fix minor typo
	9d38159: port remaining sinks to pa_rtpoll
	1bfa180: minor cleanups
	0ff2afd: support absolute, relative and periodic timers in pa_rtpoll
	53b872c: port alsa driver to make use of new pa_rtpoll object
	79d3ddd: reverse hrtimer check, add missing #include
	b937009: add convenience functions to hook up pa_fdsem and pa_asyncmsgq to an pa_rtpoll; add pa_rtpoll_item_get_userdata(), on EINTR/EAGAIN, reset revents; automatically destory left over items
	7490977: add missing include
	0449966: make pa_make_power_of_two() and pa_is_power_of_two() inline functions
	190648a: add missing #include
	0da65cf: add message about hrtimers, and initialize pa_core::high_priority
	0af0fb8: hide rtpoll-test from svn
	7fca890: check pa_core::high_priority before becoming rt thread
	b302946: add new option to pa_core stating whether we are running as high prio process
	3546198: add check for ppoll()
	8568f70: add rtpoll, rtclock, rtsig to Makefile
	dc9d803: add test program for pa_rtpoll
	78c362c: add new realtime event loop abstraction which precise time keeping by using hrtimers on Linux, if they are available
	8972d06: add facility for managing realtime signals
	ef2bc41: add monotonic clock abstraction pa_rtclock
	6bfeef1: rename a few things in a macro to make name collisions less likely
	531cc3c: make use of new public function pa_is_power_of_two()
	b7b119a: add pa_is_power_of_two() and pa_make_power_of_two() functions
	a0ad42a: add macro for creating static TLS objects
	b0b06b0: add more PA_PTR_TO_XXX macros
	fa7fc31: modernizations

2007-08-20	Tanu Kaskinen
	eaafb79: Modified the JACK sink heavily:

2007-08-16	Lennart Poettering
	2d292be: use realtime scheduling for ALSA and OSS driver threads
	876e682: never stay root after startup, even if we don't have capabilites
	5e93816: seperately get high nice level and acquire realtime sched
	d5cbf4f: Keep CAP_SYS_NICE not only in PERMITTED but also in EFFECTIVE capset
	843dcce: only suspend device when server is local
	39d1e65: truncate service names if necessary, include user name in service string
	03b0b1d: add pa_truncate_utf8() function for truncating a string and guaranteeing it stays valid UTF8 afterwards

2007-08-15	Lennart Poettering
	81cdb37: add fedora-snapshot target
	c0d6684: fix an awful race condition when handling data requests
	1ff4786: don't fail if no pa is srunning
	a96c5f8: add new tool pasuspender which temporarily suspends all sinks and resumes them later again
	33c6f9d: set CLOEXEC on more fds
	5679de5: add new commands suspend-source, suspend-sink
	d2d0978: add protocol support for muting sink inputs and suspending sinks/sources
	0640615: bump protocol revision and soname of libpulse
	b20d204: use pa_source_suspend_all/pa_sink_suspend_all for suspending all sinks/sources
	a74e804: fix muting for sink inputs
	3d92990: actually mute sinks when asked for i, add new function pa_sink_suspend_all
	6f714d9: actually mute sinks when asked for i, add new function pa_sink_suspend_all

2007-08-13	Lennart Poettering
	44f91cf: load module-x11-xsmp from a /etc/xdg/autostart file, to make sure it is loaded when we have XSMP
	80f5abf: add load-module and unload-module commands to pactl
	8a663d4: a couple of build fixes

2007-08-12	Lennart Poettering
	1d5e9f0: deactivate module-x11-xsmp by default, due to a deadlock when pa is being started from gnome-session
	e381dd9: 64 bit fixes and minor gcc shut ups
	5e96d5d: yet another new glibc build fix
	3cbcb98: build fix for newer glibc
	e6714e1: make make distcheck pass
	db7fdf6: make make dist work
	55f3d34: ship full libltdl tree in SVN to make sure we can build this crack on fedora
	b16d8e2: bump soname and stuff for fedora pre-release

2007-08-11	Lennart Poettering
	1cecd46: Resurrect ability to move streams between sinks
	79a586d: add comments describing the context these functions are called from
	3d81dde: modernize pa_play_memblockq() and add a new function pa_memblockq_sink_input_new() which allows creation of memblockq streams without activating them immediately
	14d93fc: minor cleanup
	45e4954: fix latency reporting for oss and alsa modules
	06f2799: minor modernizations
	57734ec: hook into move operations for resuming/suspending devices appropriately
	44b82a1: Add 'via DMA' to sink/source description if device is accessed with mmap()
	e71a347: restore the ability move record streams between sources
	50e014e: use single array for storing pa_core hook lists, add sink state changed hook, drop NO_HOOKS flags for sink inputs/source outputs, listen for resume events in module-suspend-on-idle.c
	a3cd800: port oss driver to make use of the default fragment sizes as defined in pa_core: store in the sink/source description whether mmap is used; if mmap() fails, fall back to UNIX read/write mode instead of bailing out immediately
	b71dde0: make sure that the device access event sound is only generated once
	447c4a5: deal with messages properly which are recieved after destruction of a stream
	107b23d: fix module-hal when no api= argument is specified
	c1c59b4: add proper refcounting to pa_asyncmsgq objects, to allow destruction from the dispatched callbacks
	f7b707b: allow destruction of pa_fdsem object that are still in 'poll' state
	e1100b5: modify alsa drivers to make use of new global fragment setting variables
	793f750: fix default device naming and fix api selection code
	a7a5f43: modernization
	e2a10de: allow setting the default sample and fragment settings from the config file
	b44ce9e: add default fragment settings variables to pa_core
	59c9ed5: move pstream item allocation to pa_flist

2007-08-10	Lennart Poettering
	d2fed9d: make revoke/release thread safe in the native protocol
	ff4814c: add callbacks for the revoke/release stuff, so that we can make this thing thread-safe
	4e145b6: if no thread-mq is attached to the current thread, return an error, don't hit an assert
	3eae903: make use of pa_thread_mq everywhere
	b3f1a13: minor update
	f7171e8: Wrap two pa_asyncmsq in a new pa_thread_mq object for bidirectional, lock-free communication between a main loop and a thread
	aff77c1: update thread test to use pa_once instead of pa_once_t
	27f75a5: Rename pa_once_t to pa_once
	d4cb042: move pa_queue to an implementation based on pa_flist
	ac49cc2: do not acces playback pa_messagq from main thread
	72840ab: minor cleanliness fixes
	357c0e4: fix closing of fds in gconf module
	ffa1708: * drop redundant pa_core argument from module initialization functions
	e621071: fix minor memory leakage
	10b135a: avoid duplicate loading of modules
	1e5ca51: handle ACLAdded messages for previously unknown devices identically to a really new device
	3b078b2: Avoid a race condition when one PA instance gets HAL's ACLAdded message before the previous owner instance has given up access to the device, and thus the device is blocked

2007-08-09	Lennart Poettering
	d9e44c5: Add X11 XSMP module for hooking into the X11 session manager, for being notified about X11 disconnects before they actually happen, so that we are not killed by the bloody xlibs
	5831677: modernize
	3dfdb21: don't assume that sink/source is already unregistered from namereg when disconnect hook is called
	1c7b842: play ACL event sound only when gained access, not when losing it
	b751f3a: s/login.wav/startup3.wav
	02bf2f2: update default configuration
	0f15574: protect memimpors with a recursive mutex to avoid deadlock when shutting down
	e76efa9: forgot to actually add the new suspend-on-idle module source code
	bb46da3: add new module-suspend-on-idle module which suspends sinks/sources which are idle for more than 5s (or any other configurable time). Power saving, here we come\!
	9c89f37: if we get access to a device we don't know yet, add it to our tree instead of ignoring it
	30ccf9a: add a couple of additional hooks for modules to use
	ed01e1a: don't hit an assert when we cannot resume a device
	eaddc01: by default, store esd socket in /tmp/.esd-`id -u`/socket, instead of /tmp/.esd/socket, to allow multiple simultaneous esd instances. this is only compatible with a patched esd, which however ubuntu and fedora ship now. other distros need to patch their esd as well, or may pass socket=/tmp/.esd/socket to module-protocol-esound-unix
	33cd5e2: listen for HAL ACL events; play an event sound on hw coldplug, hotplug and ACL access
	0c29a2f: add new function pa_scache_play_item_by_name
	23ba125: fix bug in handling of defer events

2007-08-08	Lennart Poettering
	a69f470: modernize module-hal-detect.c and check for ALSA pcm_class != modem
	26a0246: modernize dbus-util.c
	e4e9a06: be more verbose when device does not support sampling parameters
	fedca91: Remove warning when client is too slow to handle our data
	df9522c: properly reinitialize pollfd array after resume
	54b9f55: properly reinitialize pollfd array after resume
	981d5fa: don't print error on socket read/write failure

2007-08-07	Lennart Poettering
	366d1d3: reinitialize sw params after resume
	0a6f9af: add global suspend command to cli

2007-08-06	Lennart Poettering
	1f9ce59: port esound protocol to new lock-free core
	243f2fc: minor fixes and cleanups
	74b3b6d: fix playback status querying
	455ff8d: fix a memory leak
	62790cc: fix playback over native protocol
	c306b83: initialize 'length' properly

2007-08-05	Lennart Poettering
	6775386: make sure to handle disconnecting our own connection properly
	41d67c4: minor optimization for cacheing in of samples by using posix_fadvise
	872951c: use posix_fadvise to avoid page faults when reading audio files from disk
	9d1eb1b: play memchunks completely
	bd0782e: initialize method pointers properly
	241a9e1: follow rename of pstream_close() to pstream_unlink()
	55e0866: typesafe casts
	23d01bb: Modernize pstream.[ch], reintroduce defer event to make things actually work
	36dd781: modernize play-memchunk and port it to the new core
	34e4165: minor cleanups

2007-08-04	Lennart Poettering
	81760ad: merge compat changes from trunk
	5ecaf31: compat with automake 1.10
	7455571: jack driver build fix which became apparent on fedora

2007-08-03	Lennart Poettering
	95fab18: Don't stop hardware on buffer underruns. Instead continue playing to guarantee that our time function stays as linear as possible.
	a6c44c0: Remove unnecessary snd_pcm_hwsync()
	9a4e84a: On recommendation of Takashi Iwai prefer Master volume control over PCM and don't control Mic control

2007-07-31	Lennart Poettering
	d3eca28: rename pa_source_output_new_data::corked to start_corked to match pa_sink_input_new_data::start_corked
	0defdfb: A lot of updates, all necessary to get the native protocol ported:

2007-07-28	Lennart Poettering
	a82505e: port module-alsa-source to new lock-free core
	13a4327: minor cleanups
	6afbbba: fix suspending logic
	81aa8ea: drop data from inputs only when in running state
	1615450: It is now allowed to call pa_sink_get_volume() from thread context
	8aee345: Fix suspending/resuming
	5fbb8e1: add PA_SINK_OPENED/PA_SOURCE_OPENED macros for easier checking for _IDLE or _RUNNING states
	10cb048: restore proper mixer volume control
	9dac60c: reload OSS volume after unsuspend
	dd40020: bring back alsa fd list managemet, since we need it for proper mixer change notification
	787f935: port module-alsa-sink to new lock-free core. also add mmmap'ing support while doing so.
	c7df4ba: minor modernizations

2007-07-26	Lennart Poettering
	8e4660a: Disable memory mapping if we open the device in O_WRONLY. Unfortunately we cannot do mmap() in Linux without opening the device for reading as well.
	c936e53: Fix channel remapping in resample; other modernizations
	4cc0d0a: remove some log messages
	86abfbf: remove debug messages; don't queue request messages like nothing when send file is finished
	bbb347f: properly free memblocks when skipping over them
	042cb09: make valgrind shut up regarding non-freed ident strings. other modernizations
	bc17b8e: reverse order flist destruction and mempool allocation warning
	222a6d2: Increase ref counter of sink input as long as it is included in the sink idxset
	d80fd10: properly deref sink_input/source_output objects when removing them from a sink/source
	58af737: Add fdsem to makefile
	8cdde28: reverse order of printf and push to make output more readable
	bc36932: port asyncq to make use of new fdsem object
	6ad165c: add abstracted file descriptor based semaphore object that is lock-free in the best cases

2007-07-25	Lennart Poettering
	8836396: Store strings directly in strlst elements, other modernizations
	98d36ef: fix some alignment issues and modernize file a little bit
	929526d: Convert most snprintf() calls to pa_snprintf()
	8e83838: Modernize things a little bith more
	2a43bbf: Modernize things a little
	2380ad9: add our own implementation for pa_snprintf() because NUL termination is apparently not guaranteed on windows and a couple of other libcs
	9e9dc0b: Simplify implementation of pa_assert_se()
	068f5d5: drop chunk argument from various drop() functions, since it doesn't make any sense if we want to guarantee always monotonously increasing read pointers; a couple of other fixes
	9cc20b4: update static free list usage in asyncmsgq
	e339d4b: update static free list usage in hashmap
	f42e443: destruct freelists properly, by using gcc destructors. we do this only to make valgrind shut up, not because it would have any real value during runtime
	279b1b3: wrap destructor gcc attribute in macro
	a094923: change order of munmap and freeing of memblocks

2007-07-14	Lennart Poettering
	c76d035: Fix a couple of typos in the resampler code

2007-07-13	Lennart Poettering
	2a19c46: Fix typo in pa_memblock_release() call; s/assert/pa_assert/
	65d54d6: s/assert/pa_assert/g; make use of static flist for memblock allocation where applicable; properly initialize length value in pa_memexport_put()
	0e84f04: Minor clarification
	f2c98d7: Make use of static flist for hashmap entry alllocation
	69bfa35: Actually make the static flist static
	3b912ac: Port module-sine to the new lock-free core
	8442926: Reenable a couple of more modules
	59faa5d: Remove a superfluous pa_memblock_release(); properly handle buf4 allocation
	63c231e: Fix concurrency bug when turning memblock into a local memblock
	481b425: Fix off-by-one in mixing code
	ca5874d: Replace a couple of assert()s by pa_assert()s
	ac1387d: Remove module-oss-mmap, since it is now merged into module-oss
	a42c19e: Merge module-oss-mmap into module-oss and make suspending working properly
	295e1c8: Make pa_sink_render_* and pa_source_post work only when in RUNNING state, to fix handling of monitor sources when their sink is suspended

2007-07-12	Lennart Poettering
	0a095f6: Properly initialize all revents on EINTR
	1a84664: Make sure pollfd[POLLFD_ASYNCQ].revents is properly initialized on signal
	683fc4c: fix segfault when recording with module-oss.c

2007-07-10	Pierre Ossman
	b0f692c: Make sure we link to the core to get all symbols.
	a228a51: Solaris hides inet_ntop in nsl.
	689fd70: Make -no-undefined actually work (and fix up error found by it).
	405d675: Move pthreads detection as it gets confused by things in LIBS.

2007-06-25	Lennart Poettering
	eec2fbe: Port module-oss to the new lock-free core
	6312938: remove pa_memblockq_is_writable() (because it is stupid and not used anywhere anyway, and replace all assert()s with pa_assert()s
	a482b9f: make sure we don't free the same connection twice

2007-06-24	Lennart Poettering
	6776678: Limit silence buffer size for pa_sink_render()
	de02c74: Track the 'missing' variable safely between the threads
	d873731: rework the logic of pa_asyncq
	77ebe70: Make sure the returned pa_msgobject object has a valid refcnt before returning it
	099f3f2: Include assert.h, since we use assert() for our pa_assert() macro
	a9fcd59: Fix length calculation in pa_silence_memblock_new() and make use of pa_assert() everywhere instead of assert()
	fdd3ac9: Make use of dbus_watch_get_unix_fd() instead of dbus_watch_get_fd() because of deprecation of the latter

2007-06-23	Lennart Poettering
	bb3ad9d: Update OSS driver for new lock-free core
	013a55a: remove underrun condition in pa_sinks. Instead return silence in pa_sink_render() when necessary. This is required to guarantee that the time functions in connected sink inputs stays linear
	780f736: don't handle underrun special
	f061636: drop silence generation from sink drivers
	fff9081: fix a typo and some minor optimizations
	1c9bd20: minor cleanups and optimizations
	e24c8de: Fix minor typo

2007-06-14	Lennart Poettering
	deb523e: Port module-pipe-source to the new threaded design
	94f6ab5: Fix another ugly typo, which made source outputs unusable
	e279778: use pa_memblockq_push_align() instead of pa_memblockq_push() to deal with unaligned data coming from clients
	1d7096b: Show memchunk length in debug output
	1c62ce6: Fix a nasty typo in pa_asyncq_pop
	572c77f: Remove anotify.[ch], since it is now entirely replaced by pa_asyncmsgq
	5e72ac3: rework sink input/source output state machine
	260dd1e: Make debug message more useful
	1b99fd2: Move a few things between the threads
	111dcd5: trivial cleanups

2007-06-13	Lennart Poettering
	be4a882: A lot of more work to get the lock-free stuff in place

2007-06-13	Pierre Ossman
	0694d2a: Make sure mixer ioctls work on /dev/dsp aswell.

2007-06-11	Lennart Poettering
	6911568: make untabify
	590ae20: Add new untabify makefile target
	a4fed0f: make eolspace
	00da37f: Merge HUGE set of changes temporarily into a branch, to allow me to move them from one machine to another (lock-free and stuff)
	6aeec56: add a new private branch

2007-06-11	Pierre Ossman
	14cbbe1: Support stat() and friends as some programs (audacity) likes to check if

2007-06-04	Pierre Ossman
	13a4c52: Add support for the poorly documented SNDCTL_DSP_GETTRIGGER.

2007-05-29	Lennart Poettering
	1e12e0e: Kill spaces on EOL
	e4d63d0: add target "eolspace" to makefil to remove trailing newlines from all source files

2007-05-29	Pierre Ossman
	5530d32: We now use gid unconditionally, so make sure it's defined.

2007-05-28	Lennart Poettering
	67cb775: build fix for systems lacking capability suppoort. (Problem identified and original patch supplied by Diego Petteno

2007-05-27	Lennart Poettering
	707def1: Bump revision of libs and package
	918cacb: Replace AO_xxx usage with pa_atomic_xxx and friends wherever it makes sense
	6a2dffd: unfortunately we cannot detect if a foreign thread is still running. Thus sucks. But what can we do? U. Drepper thinks our use case is invalid.
	872018e: Minor optimization: read log level character code from array

2007-05-26	Lennart Poettering
	d949983: Add a new meta command ".ifexists" to the CLI language, to execute commands only if a specified file exists. Original patch from cjvdb. Closes #36

2007-05-25	Lennart Poettering
	4d88fcd: when called with the setid bit change euid to uid sooner to make sure that we can access our own files even when we dropped most capabilities. (Closes #21)
	65e8761: fix suid Makefile target

2007-05-23	Lennart Poettering
	0032642: only browse for ipv4 pa servers for now. Needs better fixing which however is not trivial and probably breaks the API
	79c94db: Fix another DoS vulnerability that has been identified by Luigi Auriemma. (Finally closes #67)
	30c52e5: add a missing initialization that causes a crash when parsing invalid volume restoration tables (Problem identified by Luigi Auriemma, re #67)
	33304ba: Fix a DoS with allocating overly large silence buffers. (Identified by Luigi Auriemma (re #67)
	4a05bc9: don't allow excessively high sample rates
	cf925b1: Fix yet another DoS vulnerability, also identified Luigi Auriemma (re #67)
	c3b5de7: fix minor typo
	f903395: Fix another DoS vulnerability, also identified Luigi Auriemma (closes #67)
	407a1b6: fix a DoS vulnerability (re #67), originally identified by Luigi Auriemma
	8e738ed: fix a few obvious copynpaste errors when handling volumes
	0e53f93: Treat empty :0.0 identically to unset :0.0 when trying to find a PA server. (Closes #87)
	312c326: Fix module-oss for devices that return EAGAIN when we don't expect it. (Closes #66)

2007-05-22	Lennart Poettering
	01ddb54: show socket directory when we fail to create it. (Closes #85)
	960b5cb: Fix build and only load OSS xor ALSA modules if both are available
	e41b91e: drop unused variable
	16dd5f7: fix comment

2007-03-07	Pierre Ossman
	9ee3981: Add support for SNDCTL_DSP_SETTRIGGER. (closes #56)

2007-03-06	Pierre Ossman
	f6023cb: Fix some instances where we printed a string without first checking that
	e042a90: Pulsecore should be linked into all modules.
	0b14c02: Don't fail if hal doesn't currently contain any devices. (closes #55)

2007-03-02	Pierre Ossman
	2b82336: Handle suspended alsa devices. Based on patch by ranma. (closes #26)

2007-03-01	Pierre Ossman
	19b17ff: Revert stuff from commit 1431 that wasn't supposed to be there.
	bb81243: Handle when ALSA tweaks our sample spec so much that the frame size changes.
	6ba21d4: Add some debugging output from sample cache subsystem.

2007-02-14	Pierre Ossman
	df47c7b: Add a wrapper around close() to work around Windows' ass backwards way of
	8bf7943: Allow a formatted string in the validation warning.
	3016c75: Prefix log lines with a character indicating level.

2007-02-13	Pierre Ossman
	06211b7: Add copyright notices to all relevant files. (based on svn log)

2007-02-12	Pierre Ossman
	1d0e8e4: Make sure we get proper host identifiers.
	de7a883: Allow specification of device number.

2007-02-05	Pierre Ossman
	f65ab1b: Don't abort config loading when the user specific cannot be loaded.

2007-01-19	Pierre Ossman
	4171f25: Make sure we report success for SNDCTL_DSP_SETDUPLEX.

2007-01-04	Pierre Ossman
	4c0a481: Report IO error on ioctl() when we're in a fatal error state.
	c992ed9: Free stream objects when they've been invalidated.
	19bd914: Fix error messages for failure connecting streams.
	521daf6: Huge trailing whitespace cleanup. Let's keep the tree pure from here on,

2006-12-04	Pierre Ossman
	1a460ee: Fix silly copy-and-paste error. (closes #45)

2006-11-24	Pierre Ossman
	68bcbd2: Fix incorrect assert.

2006-11-10	Pierre Ossman
	7933cba: Add atomic.h as a dependency at relevant places.
	86f4c21: Make sure we package version.h.in.

2006-11-09	Pierre Ossman
	0a37ec2: Yet again try to fix the creation of necessary directories when srcdir !=

2006-11-08	Pierre Ossman
	0ef2d7e: Support reversed endian floats. (closes #28) (closes #35)
	55c25c6: Check correct variable for return value. Closes #37.

2006-11-06	Pierre Ossman
	d4ca81f: Fix some missing line breaks.
	8dc6214: Revert r1404 and keep it on a development branch until it is fully tested.
	d664492: Create branch for lock free memblock implementation.
	6ca8193: The OSS spec is unclear what should happen when a reset is requested. Let's
	9776596: Handle when threaded mainloop is freed before it is started.

2006-09-26	Lennart Poettering
	d210ebb: rework memory block management to be thread-safe and mostly lock-free.
	5ad143b: upgrade refcnt.h to make use of our new pa_atomic_xxx() API
	736de36: add asynchronous inter-thread notification API

2006-09-20	Lennart Poettering
	f1021b9: enable module-hal-detect in the default configuration file only if HAL support is enabled (closes #30)
	bf83a96: rename default realtime group from "realtime" to "pulse-rt", since it is pulseaudio specific. you may still pass --with-realtime-group=realtime to configure to get the old behaviour

2006-09-19	Pierre Ossman
	71a6ceb: Revert r1398 as it broke the srcdir != builddir patch. New fix that doesn't
	534eeb1: No need to create these dirs as they're part of the source tree.

2006-09-14	Pierre Ossman
	29ab939: Stop using x86-isms and use ISO C (oversized shifts are undefined).
	5f828c2: Fix debug output for SNDCTL_DSP_SETFRAGMENT.

2006-09-11	Pierre Ossman
	7726459: Fix up build structure for platform dependent modules. Also add implementation
	a85b3e2: Use platform independent sleep.
	7c6088d: Fix typo.

2006-09-09	Lennart Poettering
	fc08db2: ignore flist-test in the correct dir
	6b1794d: ignore flist-test
	9358d28: update Makefile
	0e96d8b: make pa_mutex_new() and pa_cond_new() succeed in all cases. Similar behaviour to pa_xmalloc().
	3ae98db: add pa_once testing code
	d0dcde0: rework pa_once once again, because the once function needs to have terminated before pa_once returns, regardless whether the local call executes it or another thread does.
	6d53202: update for newer APIs: replace direct usage of libatomic_ops by usage of our own atomic.h; remove pa_once implementation; always use our pa_once implementation instead of the POSIX version
	3426a39: implement trival pa_once API based on atomic operations
	c89cb6a: add static initializer PA_ATOMIC_INIT()
	b93fedd: add a test program for the free list
	ee40a34: implement a simple lock-free free list

2006-09-08	Lennart Poettering
	bfaa358: add a tiny wrapper around libatomic_ops: pa_atomic_int_t and pa_atomit_ptr_t.

2006-09-07	Lennart Poettering
	791bbd8: don't maintain a list of allocated mempool slots, we don't use it anyway
	1728e3a: make pa_stream thread-safe: use new refcounting system, protect access using mutexes
	0669c99: add missing channel names (fixes a segfault when parsing invalid channel maps)
	40f18d9: fix alsa-sink example

2006-09-06	Lennart Poettering
	40ecf86: don't hit an assert in the client if posix shm is not available
	ead67cd: fix indentation
	66ec460: fix a bogus debug line
	6569199: implement a few more ioctl()s, including a subset of SNDCTL_DSP_GETOPTR. Just enough to make JavaSound work.

2006-09-04	Lennart Poettering
	e00ba02: remove yet another occurence of pthread_yield() by pa_thread_yield()
	6bbfb43: add accessor functions for the userdata attached to a pa_thread object
	3be920d: fix pa_thread_is_running() for foreign threads; fix a memory leak for foreign threads
	813e95f: port the threaded mainloop to our new abstract mutex/thread API
	8e7c2a3: make pa_thread_self() return a sensible pointer on foreign threads

2006-09-02	Lennart Poettering
	6db6c83: add missing g_type_init()
	2536ba9: rework handling of srcdir != builddir (patch from Flameeyes)
	e504e80: include PTRHEAD_LIBS in pkg-config file (patch from Flameeyes)
	b01fabf: update acx_pthread.m4
	6528b6b: allow building when srcdir != builddir (patch from Flameeyes)
	a00c3cb: fix a few autoconf warnings (patch by Flameeyes)
	11b6c45: fix esdcompat for non-gnu systems
	161c2c0: make esdcompat executable
	5fa9cdb: Merge FreeBSD compatibility patch (from Flameeyes)

2006-09-01	Pierre Ossman
	647ef18: Fix call to pa_mutex_new().
	f84c65e: Add pthread_once() equivalent support.
	3571bf1: Thread implementation for Win32.

2006-09-01	Lennart Poettering
	97202d1: fix a race condition with stream connection vs. latency measuremtn (found by theBear)

2006-08-31	Pierre Ossman
	6e3de3d: Make sure libatomic_ops.a isn't included in win32 builds as libtool doesn't
	6e9706b: Also wrap yield functionality so that it can be platform independent.

2006-08-31	Lennart Poettering
	0f6098b: work around bug in firefox which apparently misuses access() as NULL pointer test. Original patch by "alon". (Closes #27)
	aee4a37: define AO_REQUIRE_CAS in the Makefile instead of each source file, effectively reversing r1348
	7ce39d3: update todo

2006-08-30	Lennart Poettering
	2f6cc4f: fix handling of "running" variable

2006-08-30	Pierre Ossman
	ad0535b: Add AO_REQUIRE_CAS as we do.
	a6b99d5: Make sure the libatomic_ops lib is included.
	c4e47c6: Remove check for libatomic_ops library as some systems have no (zero, nada)
	078420a: We need to have a callback when changing volume or we might deadlock.

2006-08-29	Lennart Poettering
	b2c341f: add a threading primitive API
	5264d23: make pa_mempool_stat thread-safe/lock-free
	327e0cd: modify memory block reference counting to use the new reference counting API
	9948cb0: add lock-free reference counting macros, based on libatomic-ops
	91d8025: add libatomic-ops to hard dependencies

2006-08-28	Lennart Poettering
	a633944: fix an misdesigned assert()

2006-08-28	Pierre Ossman
	5ecbd9e: Add PulseAudio logo to tree.
	cd47673: update todo

2006-08-27	Lennart Poettering
	1ed3347: increase operation timeout

2006-08-26	Lennart Poettering
	bc87a58: bump version and sonames
	b8ea488: fix module-combine when used on top of a tunnel sink

2006-08-25	Lennart Poettering
	93e005a: update module-tunnel to latest protocol
	8ead68f: activate HAL in the default config

2006-08-24	Pierre Ossman
	aec3888: Add missing header.

2006-08-23	Lennart Poettering
	8f5b86b: fix handling of "mtu" module argument (patch by "theBear")

2006-08-23	Pierre Ossman
	2575b44: fix typo
	79c4a68: Make the recording a bit more chunky so that we can fit in the pool and have

2006-08-22	Pierre Ossman
	b27ffbe: Remove silence generation in solaris module.
	d194604: Remove silence generation in waveout module.
	095f357: Proceed with connect even when no cookie is loaded. Allows you to connect
	306aea7: Fix memory leak in waveout module.
	0249651: Log when there is a problem opening the waveOut/waveIn device.
	7bf2540: Fall back to creating a "normal" memory pool if unable to get a shared one.
	26bfce6: Improve error messages a bit.
	cf7b401: Fix up portability of memory pool handling a bit.
	10bbc4b: Fix detection of shared memory support and proper fallback.
	568c8ea: Fix typo.
	eeabf63: Add missing header.
	b5ef414: Fix call to pa_memblock_new().
	d964459: Fix detection of page size for non-POSIX systems.
	7bc7110: Fix missing header for timeval helpers.
	1c320fe: Fix calls to pa_memblock_new().
	6e3d8af: Add header for pa_cstrerror().
	8a16c73: Fix call to pa_pstream_send_tagstruct().
	25c0640: Add an ifdef for when we do not have creds.

2006-08-22	Lennart Poettering
	fef4a20: update todo
	22d8e0e: fix typo

2006-08-21	Lennart Poettering
	26201b2: fix pactl output (sink drivers and names where switched)

2006-08-19	Lennart Poettering
	3d32b96: update todo
	3dbc4ae: restore the sink/source for a client in addition to the playback volume. This changes the file format of the table file. To avoid parse errors ~/.pulse/volume.table has been renamed to ~/.pulse/volume-restore.table
	bffde5d: If a client leaves the sink/source for a stream unspecified by passing NULL as
	bf62e77: fix a bad memory access
	ce11b1f: update todo
	c0b3e8b: when transferring large memory chunks of a pa_pstream, split them up
	79b2628: update todo
	84d1d3e: update todo
	b642325: check for posix_memalign and friends
	3e0f00f: if MAP_ANONYMOUS is not supported use posix_memalign if possible to allocate the memory pool
	d50c56a: update todo
	c6ca9a8: print per-type memory block statistics on "stat"
	57f0b08: generate per-type memory block statistics
	16ff83f: update todo
	af87c7d: rework the resample to allocate temporary memory with pa_memblock_new() instead of pa_xrealloc()
	521d15b: fix a memory leak
	1b7fff3: update todo
	47c7a14: add --disable-shm command line option to the daemon
	a8519d5: add "disable-shm=" to default daemon configuration file
	dbc658d: add new "disable-shm" server config option
	c9b6d55: add default "disable-shm" option to client.conf
	d785b8f: add new "disable-shm" option to client.conf
	206ac6f: allow importing of external shm data blocks unconditionally, even when local SHM support is disabled
	046bdd9: deal properly with pa_mempool_new() failing
	8c9bdb8: fix allocation of anonymous memory
	c2db5f8: fix a memory leak

2006-08-18	Lennart Poettering
	c979b87: update todo
	40875d6: enable SHM support on the client side only if both the client and the server run as the same user and the server supports it
	e33abc3: activate SHM support on the server side only when new client supports it and when client and server have the same UID.
	c313b23: one s/0/NULL/
	7ac7909: remove export/import objects when SHM is disable for a pa_pstream object
	fd3fe96: add new function pa_mempool_is_shared() to test whether a memory pool is suitable for SHM data transfers
	7e01b1c: hide memblock-test
	e385d93: remove all occurences of 
	1bc62d5: rework logging subsystem, to implicitly include __FILE__ in pa_log() calls. In addition we now record the line numbers and function names of pa_log calls. However, those are only shown If $PULSE_LOG_META is set.
	666eca3: update todo
	8ebef4d: look for shm_open in -lrt
	35caf0c: add new test memblock-test for testing SHM import/export
	c3fc2ea: update tests for new memory manager
	0e436a6: Rework memory management to allow shared memory data transfer. The central idea
	ff48681: add abstracted shared memory API
	20d0823: fix a bad type cast
	dfa17b9: cleanup hashmap.[ch] a little: use hash/compare func prototypes defined in idxset.h, add pa_hashmpa_{get,steal}_first
	8be0cf6: cleanup idxset.[ch] a little: define proper types for the hash/compare funcs, do ptr->int/int->ptr conversions with clean macros

2006-08-17	Lennart Poettering
	c3df1ce: fix a PA_LLIST_HEAD_INIT invocation
	a847f74: add missing #include
	d890660: modify pa_bytes_snprint() to return the string we just wrote to. This should be binary compat with older versions which returned void
	99db067: make PA_LLIST_HEAD_INIT thread safe

2006-08-15	Lennart Poettering
	1c3bfc4: use the description field of sinks/sources to name the zeroconf services, instead of the logical name

2006-08-14	Pierre Ossman
	6c39af7: update todo

2006-08-13	Lennart Poettering
	5d8d916: update todo
	2bf4653: extend module-rescue-streams to move also source outputs when a source dies
	3334814: fix a segfault when registering a service with avahi fails
	cdb173f: create rtp source output on correct source
	d182a0b: minor optimization
	a75e1ed: implement hook_source_ouput_new. For this I modified the pa_source_output_new constructor to take a struct similar to what I already did for pa_sink_input_new()
	e0f7e86: split a validity check into two
	79cb80c: implement hook_source_disconnect
	8f91b1f: define new hooks: hook_source_output_new, hook_source_disconnect
	a09a49e: update todo
	a7b9a7d: Load module-rescue-streams by default
	dd87061: implement new module "module-rescue-streams" which moves sink inputs away when their sink is removed.
	8180832: properly implement a pa_sink_disconnect() hook
	87e64d5: Clean up module description a little
	abbabd8: ignore if we recieved a memory block for an invalid stream, since this might happen unwillingly due to the asychnronous nature of the protocol
	72cf211: remove pa_sink_input::variable_rate field since it has been folded into pa_sink_input::flags
	3beef50: hide hook-list-test
	b37ad1f: modify module-volume-restore to change the initial volume of a sink input from a hook instead of an asyncronous subscription event.
	a621d90: allow hooking into the process of creating playback streams. To implement this I modified the pa_sink_input_new() signature to take a pa_sink_input_new_data structure instead of direct arguments.
	b5cbea9: fix bad printf()
	db3f561: rework hook list stuff once again: change the callback prototype to recieve three data pointers: one to the data for the hook, once for the slot and once for the call
	281125c: rework hook list stuff again, and replace macros with real functins. We loose type safety but things are much cleaner now

2006-08-12	Lennart Poettering
	2622b0c: update hook list test
	82a913d: reall add type safe hook list
	80d73dd: implement typeafe hook chain
	7f70ca3: extend maximum sink/source name length, because HAL UDIs can get ridiculously long
	17964dd: update todo
	02e083c: test if sink->monitor_source is set before making use of it
	dbe6bdd: make use of pa_sink_used_by()/pa_source_used_by() wherever applicable
	b5207fc: add pa_sink_used_by()/pa_source_used_by()
	b45c392: categorize todo file
	28f86ea: name the sink/source after the device file, just like we already do for the non-mmaped driver
	bf79e97: generate default sink/source names from the device files they belong to
	0050176: update todo
	4c9c426: handle hot-remeving of OSS devices properly
	3cfed30: print the device capabilities after opening the device
	fbeeb8b: when the requested sample format is not available for OSS devices, print a nice warning and take what we can get instead
	0547b0f: there's no need to queue subscription events if noone is listening, hence don't do it!
	c86890d: * only load an OSS driver for the first device of a sound card, similar to what is done for ALSA. 
	7fa0744: fix a segfault in module-oss
	2d70271: fix pa_gettimeofday() return value testing
	adfa76c: update todo
	365ceec: update todo
	3aba099: clean up event generation a little: suppress unnecessary events and generate new ones on owner change
	47d009a: rework subscription code: try to drop redundant queued events 
	f8e5f47: fix a compiler warning
	e9d9356: add new macro PA_LLIST_INSERT_AFTER
	1e12c75: update todo
	8da9b94: allow setting the null sink description by a module parameter

2006-08-12	Shahms E. King
	bb96156: increase module argument buffer size to prevent truncating names

2006-08-11	Lennart Poettering
	bfa6604: don't set the sink/source descriptions manually, use the new functions pa_{sink,source}_set_description() instead
	af1b031: comment which values in pa_{sink,source,sink_input,source_output} structures may be NULL
	c90dd53: * introduce new functions pa_sink_set_description() and pa_source_set_description() for changing the description of a sink/source
	0aebc03: update todo
	bfff23d: shorten sink/source device descriptions a little
	1d7b8e1: use the HAL UDI for naming input/output devices
	539612a: do not export name validity checking routes and apply them only to sink/source names, not sample names
	e1316f5: fix bad memory access and a leak when detructing ALSA fd lists
	576c4dd: rework name register a litle to only allow "valid" names.
	bf854c4: Build HAL support only when either OSS or ALSA is available
	dcd3acc: remove OSS specific code from module-hal-detect if HAVE_OSS is not set. Same for ALSA
	7a4e1c9: ALSA: handle write()/read() errors properly by unloading the driver module. This should fix problems when removing USB audio device while pulseaudio is running.
	b0b968d: change order of the ALSA event dispatch code to make sure that the code survives if the event dispatcher frees the ALSA client
	59f1a67: use the copied udi string as hash key for the device table, because the temporary one is freed when the function exits

2006-08-08	Shahms E. King
	7ee7a23: add HAL support for OSS devices and capability changes

2006-08-07	Shahms E. King
	b382df5: clean up hal patch to use pa_xnew and timeval compatibility wrappers

2006-08-07	Lennart Poettering
	5d8ccfd: try to reduce volume updates in the ALSA sinks/sources: only touch the shadowed hw volme if necessary

2006-08-06	Lennart Poettering
	d953870: * add SVN $Id$ tags
	050b739: merge HAL support from Shams E. King

2006-08-03	Lennart Poettering
	f74e5ef: update todo
	ad95c96: implement "pactl move-source-output"
	e52436b: implement pa_context_move_source_output_by_{name,index}()
	5fdc39d: wrap pa_source_output_move_to() in the native protocol
	1c45061: add new CLI command move-source-output as wrapper around pa_source_output_move_to()
	2d00de5: Implement pa_source_input_move_to() for moving record streams between sources
	ddc69fc: - don't call pa_sink_notify in pa_sink_input_new() because the virtual methods are not yet initialized at this time

2006-08-01	Lennart Poettering
	7f93d08: bump API and protocol version. Return PA_ERR_NOTSUPPORTED if pa_context_move_sink_input_by_*()is called for servers that don't support it

2006-07-31	Lennart Poettering
	bc30e2d: add new "move-sink-input" command to pactl
	bb9b087: wrap PA_COMMAND_MOVE_SINK_INPUT for libpulse
	785477b: add new native protocol function for moving sink inputs between sinks
	304fcbb: add new commands opcode for moving sink inputs and source outputs
	ccf67d2: deal properly with recursive module unloading
	e2e94ca: fix bad memory access if a non-existing entry shall be removed from a pa_idxset by index

2006-07-29	Lennart Poettering
	d7ee1bc: fix module-gconf initialization
	646deea: don't hit an assetr if there are operations outstanding when the pa_context is destroyed
	a7cf5e0: fix two typos (pierre, have you been sleeping? next time please the comments wrong but the code right, not the other way round! ;-))
	a1e8b09: add new CLI function "move-sink-input" as wrapper around pa_sink_input_move_to()
	5e92950: * implement "hot" moving of playback streams between sinks (pa_sink_input_move_to()). 
	4dd3b31: free the memblockq if we decide not to play it
	f15b4c7: if the memblockq is empty, return -1 in all cases
	9310a2e: fix calculation of pa_usec_to_bytes, to make sure that it never returns fractions of a frame size
	b325e07: handle EOF correctly if it is read before the stream was created

2006-07-28	Lennart Poettering
	d1db037: for the playing field of pa_timing_info use pa_sink_input::state == PA_SINK_INPUT_RUNNING. This means that this variable will now refer to the current state and not to the expected future state, which is probably more what clients expect. 
	f1c4611: fold the seperate variable pa_sink_input::playing into pa_sink_input::state as state PA_SINK_INPUT_DRAINED. The following mappings hold:
	12aa842: introduce pa_play_memblockq() which creates a playback stream and passes the data from the memblockq to it. after that is done, frees the memblockq

2006-07-27	Lennart Poettering
	ecd4655: update todo
	c21f88c: load module-gconf in default install
	0dea223: introduce three virtual sink/source names: @DEFAULT_SINK@, @DEFAULT_SOURCE@, @DEFAULT_MONITOR@. Especially the latter is useful for connecting to the monitor source of the default sink.
	fec7e9b: if possible do not unload already loaded modules when the gconf settings change. instead try to reuse already loaded modules as much as possible
	87d4f0b: because gconf doesn't provide real transactions we emulate our own with a "locked" gconf key
	6afb61e: remove superfluous code

2006-07-26	Lennart Poettering
	358e577: remove two superfluous lines
	0d7be31: mainloop fixes: when disabling time events when dispatching them, make sure to adjust the cache time event and enabled time event counters
	b2ad9a9: add some protection that the gconf helper process will be killed when the daemon process dies. make sure the gconf helper process doesn't keep open file descriptors belonging to the daemon; if gconf helper path
	f5d29ac: add missing configure.ac checks for module-gconf
	cc1d821: add new module "module-gconf" which reads configuration information from gconf. this will be used in my upcoming paconf module

2006-07-25	Lennart Poettering
	61ce8bb: add new command line option --no-cpu-limit. This is useful when running PulseAudio in valgrind's massif or callgrind tools
	563fab9: Results of profiling PulseAudio with valgrind's callgrind module: rework the default event loop implementation to use PA_LLIST_xxx instead of pa_idxset; don't generate weakeup events if we aren't in STATE_POLLING; minimize dispatching of io events; cache next time event instead of traversing the list of time events on every event loop iteration; other optimizations
	216bdd4: split a few asserts
	32444f0: split a few assert()s
	c41d749: add a few more g_assert()s and change all assert()s to g_assert()s

2006-07-24	Lennart Poettering
	675bf2f: add autogen.sh for jhbuild (for you, elmarco!)
	0f8f5bc: bump version and sonames

2006-07-23	Lennart Poettering
	3aac893: add massif target to Makefile
	c85351b: as a result of memory profiling with valgrind/massif: decrease default hash table size from 1024 to 127. the hashtables are sparsely filled most of the time, so there is no point in allocating to much memory by default.
	95eee87: update todo

2006-07-22	Lennart Poettering
	07a1c45: fix horribly broken glib timeout event handling

2006-07-21	Pierre Ossman
	b345af2: Use proper @libdir@ in pc.in files to handle x86_64 machines.

2006-07-21	Lennart Poettering
	a84a2f9: raise the default value for RLIMIT_NOFILE to 200 since 25 is apparently too small if every single GNOME apps thinks it needs to create its own server connection!

2006-07-20	Pierre Ossman
	09e01af: Get ACL:s to work on Win32.
	4a59581: Fix incorrect call to nonexistant pa_log_warning().
	0762af2: Only warn when running as root and not --system.
	f3d4924: Centralise check if we're running as root.
	57d8a31: Move check for SUID into the caps functions.
	8d2dc9c: Handle user switch in a more platform independent manner.
	b12f29d: Make sure parse_rlimit is only used when rlimits are supported.
	246e30a: Add missing header.
	a3e7595: Make -1 mean "current group/user" so that some platform dependent calls
	7ba93eb: Protect platform dependent headers with ifdefs.
	2ad6938: Remove unneeded headers.

2006-07-20	Lennart Poettering
	40b4089: remove access group setting from default client.conf
	55e97b8: fix a few @@ replacments
	6ad1f33: even more FreeBSD portability (thanks Flameeyes, again!)
	90b521d: add missing #ifdef HAVE_CREDS (thanks, Flameeyes)
	2683f25: some more FreeBSD compat from Flameeyes
	b3d3d16: bump release and sonames
	da1ec27: remove configurable client access group, since can never work on Linux anway, since SCM_CREDENTAILS doesn't allow sending supplementary GIDs
	dd5fd8d: update todo
	44beeaa: implement "auth-ip-acl=" in the native and esound protocols
	db75f68: actually ship src/pulsecore/creds.h in the tarballs
	30ada90: add IP address ACL subsystem
	2409f1a: add support to set resource limits for the daemon and set some of them to some sane values
	0ff247d: undo r1111 in some way: include sys/socket.h and sys/un.h but wrap it in #ifdef

2006-07-19	Lennart Poettering
	703bb49: add a few comments
	a382492: * add new function pa_check_in_group()
	340803b: use access group dedclared in ~/.pulse/client.conf instead of PA_ACCESS_GROUP
	2b31a90: update @@ tokens according to recent Makefile.am change
	45a9a8b: fix sed scripts according to #define renames
	9c87a65: * add new --system command line parameter to the daemon for running PulseAudio as system-wide instance

2006-07-18	Lennart Poettering
	9db7068: remove glib 1.2 adapter. It started to bitrot and wasn't used by anything anyway.
	d7cdaf2: add two more \since
	f4ec7d4: fix module-detect on FreeBSD (patch from Diego "Flameeyes" Pettenó)
	2c2abbb: turn the glib adapter into a single GSource instead of creating a bunch of seperate GSources for each event
	ddd5acf: define proper typdefs for callback prototypes

2006-07-17	Lennart Poettering
	64d87ac: change licensing blurb form "Library GPL" to "Lesser GPL" on request of Loic Minier. Effectively this means using the same license blurb like in all other source files.

2006-07-17	Pierre Ossman
	f5afb7b: Forgot to protect one access to with_creds with an ifdef.
	4b352e5: Restore SIGPIPE warning when the platform doesn't have MSG_NOSIGNAL.

2006-07-16	Lennart Poettering
	ba31adc: make pulseaudio compile again on FreeBSD (patch from Diego "Flameeyes" Petteno)
	e45b1dc: todo
	9ced7f6: show summary after "configure" has run (closes: #22)
	3b2843d: show value of PA_SINK_HARDWARE/PA_SOURCE_HARDWARE in pactl
	b91dd23: set is_hardware flag for a few hw plugins
	494fa68: add new PA_SOURCE_HARDWARE/PA_SINK_HARDWARE flag
	6e38949: add a new boolean variable is_hardware to pa_sink/pa_source to denote wether the specific device is a hardware device or virtual/software

2006-07-15	Lennart Poettering
	a537b01: update todo

2006-07-14	Lennart Poettering
	55a8db8: improve latency calculation of NULL sink
	d43bcb3: update todo
	b8f9ae0: remove checking for SIGPIPE blocking from client code. Because we use
	fc544a6: don't send SCM_CREDENTIALS on every sendmsg(), instead do it only on handshake
	3eeecdc: don't set MSG_NOSIGNAL for recvmsg(), since it doesn't make sense there
	860be2e: try to use send(,,MSG_NOSIGNAL) instead of write() wherever possible (which
	350a253: remove vi'ism
	dfd864a: update todo
	883ce83: add new test get-binary-name-test for testing pa_get_binary_name()
	a87c43d: Don't call pa_path_get_filename() anymore since it is implicitly called by pa_get_binary_name() anyway
	881d4dd: * fall back to prctl(PR_GET_NAME) in pa_get_binary_name() if readlink() fails

2006-07-14	Pierre Ossman
	82e680c: Make sure the win32 default conf gets shipped.

2006-07-13	Lennart Poettering
	5529604: support time events with NULL timevals which are OK in avahi, but not in PA. This makes padevchooser actually work on top of the new avahi browsing stuff
	7484b62: update todo
	ceb1b6f: remove avahi/howl item from todo list
	3f0f4f5: remove howl-wrap.[ch]
	6f24a9d: remove HOWL snippet from configure script
	1fd18d6: * add proper error handling to pabrowse.c
	d989c69: add browser.h to doxygen docs
	76f93a0: * port libpulse-browse to use the native avahi API instead of the HOWL cruft
	3a81620: update module-zeroconf-publish to make use of the native AVAHI API, instead of HOWL
	10f7a64: make sure gccmacro.h and cdecl.h may be included at the same time as those headers from the avahi project
	8162164: check for avahi in configure.ac

2006-07-10	Lennart Poettering
	3428f03: mark HAL for shams king

2006-07-08	Lennart Poettering
	9c96bdc: * remove doc/ directory
	f87f3c8: unhide a few files

2006-07-08	Pierre Ossman
	e12ead7: Remove some unused m4 files.
	eb4abb2: Fix typo.

2006-07-07	Lennart Poettering
	e16cdb5: remove all docs from tarball since they are now available on pulseaudio.org
	9a778bd: s/avahi/pulseuaiod/
	7fe5e5f: replace remaining ML refs to polyp
	81eb4a2: fix mailman URL
	9e45991: update readme for 0.9.2

2006-06-30	Pierre Ossman
	8b0d134: Make sure we print the file name we actually use.

2006-06-21	Lennart Poettering
	18b8b84: increase the maxium number of concurrent esd and native connections
	045b05c: include config.h in browser.c (closes #20)
	1710041: only interpolate when the last timing info told us the stream is indeed playing

2006-06-20	Lennart Poettering
	74e958c: bump version number
	84907e6: fix segfault when module-alsa-source fails to load

2006-06-20	Pierre Ossman
	320bedb: Fix handling of the io flags in duplex mode.
	1040b69: Warn when applications use SNDCTL_DSP_GET[IO]PTR even when they shouldn't.
	07edf59: Make fix_metrics() exit early so that it doesn't spam the output needlessly.
	1342999: Make sure we do not use pthread_yield() on platforms that do not have them.
	3b28358: Check for pthread_yield() as not all platforms have that.
	6ca46f4: Make interpol-test build on Win32 and non-pthread systems.
	3ff68bd: Fix the final few occurences of polyp.

2006-06-19	Lennart Poettering
	230f97a: s/POLYP/PULSE/g
	6654e98: update docs
	3cf1621: * more s/pulseaudio/PulseAudio/ replacements
	fe1dadb: update references to the pkg-config files in the docs
	0d97ac6: name the pkg-config files after the library names
	10b5e99: replace a few remaining uppercase "Polypaudio" occurences with "PulseAudio"
	955e33d: hide pulseadudio binary from SVN
	25f7969: rename polypaudio.h to pulseaudio.h
	f44ba09: big s/polyp/pulse/g
	dd21f11: unhide padsp
	f6d1154: hide interpol-test
	40494c3: * rework latency interpolation to make it smoother
	6eabab6: minor cleanups
	9f59b4e: add new test "interpol-test"

2006-06-19	Pierre Ossman
	c6d4cc0: Handle clients that just want to set fragment size (and not count).

2006-06-18	Lennart Poettering
	bd432f0: * add new argument 'exit_on_eof' to module-cli and make use of it if "-C" is passed to the daemon

2006-06-17	Lennart Poettering
	5e1127a: * implement volume adjusting and mixing for S16RE
	e26bd47: * make hw param settings easier to debug by splitting up long if

2006-06-16	Pierre Ossman
	8485a47: /dev/dsp should default to U8, not mulaw.
	e66b0e6: Creating a stream might take some time, so check that it's in the right state
	6684264: Record support.

2006-06-16	Lennart Poettering
	a529b28: if S16NE is not supported, fall back to S16RE. If FLOAT32NE is not supported, fall back to FLOAT32NE. If still nothing is supported, try everything else in order

2006-06-15	Lennart Poettering
	8e37d68: update todo

2006-06-15	Pierre Ossman
	3fa491d: Make debug output in padsp a bit less verbose. Specifying -d twice will give

2006-06-13	Pierre Ossman
	dd0f80e: Make a copy of the va_list as vsnprintf() is free to change it.
	0f13c43: Catch the access() system call as some applications do this to test if they
	b5a8815: Make sure our inet_ntop() implementation gets linked into the new users.
	9288479: Tweak the printing of client connections a bit so that it's more apparent
	7582f74: Handle pretty printing of IPv6 socket names.

2006-06-12	Pierre Ossman
	519aa9b: Use AM_ICONV to determine what needs to be done for iconv support. (closes #19)
	c32176b: Fix AC_CHECK_DEFINE so that we can look in different files for the same
	7c770e2: Also look in winsock2.h for INADDR_NONE. (solves #18)
	15a0b28: Properly escape the m4 macros and make the code a bit more readable.

2006-06-11	Pierre Ossman
	75ac45b: Add all the preopen libs to the polypaudio binary's dependency list as they

2006-06-03	Lennart Poettering
	d8dafa0: rework ioline EOF handling to actually work properly
	2fa08ba: fix pa_xstrndup() implementation to not access potentially uninitialized memory

2006-06-02	Lennart Poettering
	16a275a: actually build cpulimit support if SIGXCPU is available
	441362a: fix ugly access-after-free bug when doing asyncronous NS lookups
	8b0e6f6: update docs for 0.9.1
	e092336: bump version and soname
	7b961bd: Add new configure options to disable/enable specific modules at configure time. Original patch by ed@catmur.co.uk. (Closes #16)

2006-06-01	Pierre Ossman
	02bfa3c: update todo
	7a52eab: Try the ltdl mangled name ourselves so that .la files for modules are optional.

2006-05-31	Lennart Poettering
	8ca9568: remove superfluous prefixes from service names
	ac7213d: update TODO
	79b6c31: decrease maximum allowed sample frequency for ALSA devices to 5%, since 48000 would otherwise match with 44100

2006-05-30	Lennart Poettering
	9f2026d: downgrade a log message
	64fa5b8: * alsa-sink: if "PCM" is not found as mixer track name, fallback to "Master"
	bb820db: * if an ALSA device doesn't support the channel count requested, use what ALSA suggests instead
	821a49b: update todo
	73eedcb: load alsa modules with device string hw:0 instead of hw:0,0
	6140619: fix amd64 portability issues

2006-05-29	Lennart Poettering
	21cb51b: merge patch from Igor Zubkov, fixing linking of the HOWL modules
	ce04f0b: update svn:ignore to reflect the esdcompat name change
	632f5b4: drop the .sh suffix from esdcompat

2006-05-26	Lennart Poettering
	3a868be: update README for 0.9.0
	f5a8885: disable padsp for the polypaudio daemon itself by defining the __padsp_disabled__ symbol

2006-05-26	Pierre Ossman
	c8e9fa3: update todo
	12dc4c2: Fix the fix_metrics() function so that we don't get a tiny buffer by default.
	7d90e3a: Fix typos.
	6aeaaf9: Returned buffer attr is const.
	d142408: Explicitly check version number when determining which fields are in a stream

2006-05-25	Lennart Poettering
	099304a: update todo
	7d97534: * add new API function pa_stream_get_buffer_attr().
	f3b7259: really fix a superfluous warning when building padsp.c
	4413b89: * split pa_cstrerror() into its own file polypcore/core-error.[ch]
	f8aa55c: move modules to ${libdir}/polypaudio-${PA_MAJORMINOR}/modules/
	fc8a2c4: add item about moving pa_cstrerror() to TODO
	e07b262: update todo
	ae80ab3: read stream and client name from $PADSP_STREAM_NAME resp. $PADSP_CLIENT_NAME, if available
	2bbd7ba: add support to disable emulation of /dev/dsp,/dev/mixer,/dev/sndstat selectively by either passing an environment variable or by defining a symbol __padsp_disable__ in the process
	2bb05ea: fix evil, evil typo that cause all gtk2 based apps to crash
	59d00e2: * issue volume updates syncrhonously
	0fb63e7: update TODO

2006-05-25	Pierre Ossman
	b754d50: Wrong prefix used in the padsp script.
	d39740f: We only need the so for libpolypdsp.
	ea7995b: Fix padsp script so that it accepts parameters, setting relevant environment
	0387b30: Use only the basename of libpolypdsp.so so that it will work on multi-arch
	1799b7a: Move libpolypdsp in the makefile to avoid the libtool bug where it must come

2006-05-24	Pierre Ossman
	6a7172e: padsp needs dlsym & co so make sure we get that lib included.
	3fa19ab: Fix warnings.
	2843b1a: Remove the exceedingly anal warnings. It's impossible to write a non-trivial
	c4328cd: Fix stray \

2006-05-24	Lennart Poettering
	ca08e57: implement a /dev/mixer interface
	440b901: fix playback of small sound files

2006-05-23	Lennart Poettering
	46fee46: implement emulation of /dev/sndstat
	23b123d: - use pthread_atfork() to disable open sound streams in the child after a fork.
	e99afda: pass the binary name as client name to polypaudio
	1031549: add new padsp utility: a $LD_PRELOAD wrapper for using the OSS API with polypaudio
	8f111b0: change return type of pa_cstrerror() to "const char*"

2006-05-23	Pierre Ossman
	7906985: Cast size_t to long to be more compatible with 64-bit systems.
	1b72d02: Fix some warnings.

2006-05-22	Pierre Ossman
	d71dc9b: Fix TLS on Win32 to something a bit more safe and portable (compiler-wise).
	4e3dc7c: Wrap strerror() in a function that makes it thread safe and converts the
	bf09399: update todo

2006-05-22	Lennart Poettering
	97ec77c: add missing #include

2006-05-21	Lennart Poettering
	cc84fc9: add missing #include
	651e575: add new function pa_usec_to_bytes() as inverse of pa_bytes_to_usec()

2006-05-20	Lennart Poettering
	bc87137: doc update
	13329d3: fix long-standing buf that could cause polypaudio to eat 100% CPU: fix handling of event bits for pa_iochannel
	cc61b57: rename pa_simple_get_playback_latency() to pa_simple_get_latency() and allow its usage on capture streams

2006-05-19	Lennart Poettering
	acc6552: generate PA_MAJORMINOR properly - only from major and minor, not from micro

2006-05-19	Pierre Ossman
	a3fe39a: Fix some missing headers.
	a034b61: Fix which headers get installed for libpolyp.
	c811351: Sort source files.

2006-05-18	Pierre Ossman
	1dfe8f8: update todo
	1379831: Convert log text to current locale before passing it on to stderr or syslog.
	8359188: Make paplay convert names to UTF-8 before sending to the server.
	4981092: And functions for convertion to and from current locale and UTF-8.
	40d9f5d: Missing include of util.h.
	24a7819: Don't include util.h from core-util.h as it is not needed by many users.
	3ee2051: PATH_MAX needs limits.h.
	9ec9d28: update todo
	0796ead: Move timeval calculation functions into their own file.

2006-05-17	Lennart Poettering
	5f458db: update README for 0.9.0
	38cb138: modify lirc module to use pa_sink_mute() for muting and unmuting
	53a285e: fix include line for "core-util.h"
	40feedb: add C++ macros to utf8.h
	ee4d6b0: add C++ macros to xmalloc.h
	dc9151d: * add doxygen docs to header file
	6766a3b: add util.h to doxygen
	813868e: include util.h in polypaudio.h
	c47e937: split polypcore/util.[ch] into polypcore/core-util.[ch] and polyp/util.[ch]
	fbdb063: replace memory allocation function calls with pa_xXXXX() 
	43813dc: include more files in polypaudio.h
	41baddd: add doxygen docs for utf8.h
	56d8e56: * make pa_xfree() a real function
	6e9f2d7: add utf8.h and xmalloc.h to doxygen docs
	ee35a06: add new channel map argument to pa_simple_new()
	5f6d8c9: fix svn tag
	cdd3588: more sensible default.pa file
	1cfb01a: add proper locking when accessing the file match.table
	e0bf4a3: add proper locking when accessing the file volume.table 
	1267285: add documentation for module-volume-restore
	6d281a5: update todo
	db242e1: update todo
	fa53ed7: * support native ULAW/ALAW file streams
	b47b257: support loading ULAW/ALAW files into ULAW/ALAW memchunks
	e669553: * use S16NE for SF_FORMAT_PCM_S8 formats, too
	31a9d4f: when playing an ULAW or ALAW audio file, do not convert to S16NE unconditionally, instead use sf_read_raw() to read raw audio data
	106fb20: increase PA_CHANNELS_MAX to 32
	270a409: use PA_CHANNEL_MAP_OSS in module-oss, module-oss-mmap
	ed3606c: add new channel mapping standard PA_CHANNEL_MAP_OSS

2006-05-17	Pierre Ossman
	7ca25e5: Move utf8 to the public part (libpolyp).
	d9cc2cf: Move xmalloc to the public side (libpolyp).
	e767fda: update todo
	6ab4213: Update documentation to contain the UTF-8 requirement.
	d4d1e5e: Documentation for the threaded main loop API.
	71f681a: Set default channel map system for waveout module.
	c752e11: Add Microsoft's WAVEFORMWATEEXTENSIBLE channel mapping.
	05c1468: Use default channel map for Solaris module. There doesn't seem to be a standard

2006-05-16	Lennart Poettering
	4b6ab29: * modify pa_channel_map_init_auto() to take an extra argument specifying the standard to use (ALSA, AIFF, ...)
	c63cc7b: change version number from "0.9" to "0.9.0" to make version comparisons easier
	c2c8539: bump version number to 0.9
	5521559: * add new configure option --with-module-dir=
	9298990: update todo
	c12206b: * remove .a files from the modules directory after installation
	f272e59: tell svn to ignore the utf8-test binary
	56b685a: instead of kicking clients with invalid UTF8 stream names, filter invalid characters and use that instead
	5359593: add new test programme utf8-test.c
	bf58753: add svn:keywords property
	78b23cc: add double include protection
	e8cc63d: * remove "const" from return type of pa_utf8_filter() since it desn't make any sense
	23e7454: use the new latency update callback to be notified when latency data becomes
	724cd9d: downgrade a log message
	713637c: * fix segfault in pa_utf8_validate()

2006-05-15	Lennart Poettering
	19167a1: add notification callback which is called when new latency data becomes available
	7a92f36: undo r868
	147da3e: remove regex.h from include, since it is actually not used

2006-05-15	Pierre Ossman
	9c8661c: Add function to filter a string of any invalid UTF-8 sequences. User must
	e91740f: Clean up the UTF-8 validation code.
	9c38744: module-volume-restore uses regexp() so make sure it's only built on systems
	f468308: Include utf8.h for the validation function.

2006-05-14	Lennart Poettering
	3f42878: update TODO
	45bbb34: add utf8 validity checking to esound protocol
	d419d87: remove superfluous log line
	cfb082a: take the filename specified on the command line as default stream name
	a414cc2: check for valid utf8 strings 
	bf52fb9: add utf8 validity checking API
	b10f2dc: update todo
	b3e1655: add new module module-volume-restore which saves and restores volume of playback streams
	be05b18: * add new parameter to pa_open_config_file() to specify open mode
	e46f8f8: modify argument order of pa_client_new() to actually match how it is usually called

2006-05-13	Lennart Poettering
	682dfd7: fix esound sample cache names
	0f22d63: * set default fragment metrics depending on the sample specs of the device in OSS and ALSA
	0231e6e: first set buffer size, and afterwards period size
	c3b9c3d: don't hit an assert when trying to resample data for 6channel audio
	7abf17e: fix fragment size calculation for module-alsa-source
	b681202: use default alsa channel map for alsa devices
	afdec05: remove superfluous log message

2006-05-11	Lennart Poettering
	11782f0: fix hangup detection for recording streams
	eecc04c: fix iochannel for hangup signals
	f931486: update doxygen docs
	68b98f7: don't signal the accept_cond automatically when waiting for a signal event
	e929aab: split of signal releasing into its own function and name it pa_threaded_mainloop_accept()
	dbf62d4: add thread-mainloop.h to doxygen docs

2006-05-11	Pierre Ossman
	af54f9f: Windows support for the threaded API.
	3890f03: Remove some debug code that wasn't supposed to be committed.
	5328afe: pa_write() should use a const pointer.
	48d66cd: Handle pipes on platforms where they are non-existant of broken.
	12d4b5d: Include log header to get rid of warnings.
	18c5340: ANSI codes aren't supported on Windows terminals.
	6d2a936: Do WSAStartup() in the DLL entry routine instead of at context creation.

2006-05-09	Lennart Poettering
	2687017: fix handling of timing status requests
	9efc206: update todo

2006-05-09	Pierre Ossman
	4e71f20: Add stubs for the threaded main loop so that we can compile it on
	06e1867: Use pa_msleep() to get platform independence.

2006-05-06	Lennart Poettering
	df3306c: rework the simple API to make use of the new threaded mainloop implementation
	4b4c8fd: * optionally, make pa_threaded_mainloop_signal() wait until the main thread took over control
	5f9bbf0: add support for reading audio data from a file instead of plain STDIN in pacat-simple.c
	bb6c45d: remove bogus check that disallowed latency interpolation and stuff for record streams
	3f92e3e: allow signalling from event loop thread

2006-05-03	Pierre Ossman
	4cff5d3: update todo

2006-05-02	Pierre Ossman
	c2c9f25: Fix control flow in pa_oss_open(). Also fall back to half duplex when device doesn't
	27cee2e: We need to read the cookie in binary mode for things to work correctly.
	1438bd4: Windows doesn't have POSIX thread. ifdef out things for now.

2006-04-30	Lennart Poettering
	9e60bad: add new threaded main loop implementation (with test/example)
	f2fbceb: * make sure the wakeup fd is polled on wven when no other fd is registered for polling

2006-04-28	Lennart Poettering
	19c9dbf: fix date

2006-04-28	Pierre Ossman
	6060bff: When a control is removed, all bits are set so we need to test for that first.
	53930f4: Zero the fd list since we do a memcmp on it later.

2006-04-27	Lennart Poettering
	cd93661: ouch!

2006-04-27	Pierre Ossman
	22c679e: Clarify how the automatic channel map is generated.
	99612dd: Channel map argument support for solaris.
	0b95438: Channel map argument support for waveout.
	2c08180: update todo

2006-04-26	Lennart Poettering
	c29b3f1: doc update for 0.8.1
	dff0822: bump version number
	9564cef: fail if the channel map doesn't match the sample specs
	c27b140: allow the user to specify an alternative channel map in paplay too
	d78e466: fix volume range printed on --help
	7b83904: if a sample is not yet loaded, don't print rubbish about its channel map
	d4bad65: it was a bad idea to require that a channel map doesn't contain the same position twice
	c3cc141: allow specifying the channel map to use on the command line
	c478b0f: * make a validity check of parsed channel maps before rteurning theme
	185a57c: support new channel_map argument in sink/source modules
	fbb0d14: add support for parsing channel maps as module arguments
	292b237: don't allow channel positions to be specified twice in the same channelmap
	5f7cc0c: add new test 'channelmap-test'
	195e969: * add new function pa_channel_map_parse()

2006-04-26	Pierre Ossman
	31ad62f: update todo

2006-04-25	Pierre Ossman
	129853f: update todo
	69096f2: Fall back to software volume if hardware mixer cannot control all channels.
	f426b58: glibc <= 2.2 has a broken unistd.h, lacking setresuid().

2006-04-24	Lennart Poettering
	820c118: * rework reference counting in the client libraries: now refcounting goes

2006-04-24	Pierre Ossman
	d266213: chown() and chmod() aren't available on Windows.
	fade8b0: Undo invalid automake version requirement.

2006-04-23	Lennart Poettering
	b92344f: fix a segfault when uploading samples with esound
	3590ee7: * add validity checking for sample_spec, channel_map and cvolume structures
	286310a: small optimization
	9b52ac4: fix sample uploading
	e1ac42d: enforce maximum sample size in sample cache
	cdba052: * fix ref counting of pa_stream: strictly refcount from context to stream and never vice versa to make sure that we never loose memory
	193fb12: introduce a new error PA_ERR_TOOLARGE
	335e234: * when playing back a sample from the sample cache, just take a pa_volume_t and not a pa_cvolume_t as argument for the volume. Usually it is not known to the player of theses samples how many channels it has, hence it doesn't make any sense to allow him to pass a by-channel volume structure here.
	4e61ebb: fix multiplication of software pa_cvolumes
	b4ac6d0: allow recieving of invalid channel maps, volumes and sample specs. This makes handling of uninitialized data better, e.g. when sending info about lazy-load sample chache entries, where the channel mapping and sample spec is still unknown.
	8345063: * Merge build system patch from Igor Zubkov

2006-04-22	Lennart Poettering
	2bb8283: remove superfluous "set -ex" line
	985da9b: require automake 1.9 in configure.ac
	f6fc410: modify x11 modules to not cache the Display variable since pa_x11wrap_get_display() is now used as notification that the x11 output buffer needs flushing
	ec65ca6: when loading sound files, initialize channel map data properly
	5e50f84: fix x11 handling
	55e19cb: fix sample cache
	0e02e84: * for unix sockets: remove the right parent directory on shutdown
	a4fedcf: add new function pa_parent_dir()
	513df3b: first unlink the socket, the close it
	b0059c6: try to remove the directory where the PID file resides in after removing the PID file
	0cc2e04: chown() and chmod() /tmp/.esd/ before checking if everything is ok with it

2006-04-20	Lennart Poettering
	a7c5ed1: replace copy by symlink when installing homepage
	5f804cb: minor improvements to the LICENSE text
	9c06f5a: ship GPL and LGPL files with the tarball
	81381c4: add new explaining LICENSE file
	2decb6a: * rename "LICENSE" to "LGPL"

2006-04-20	Pierre Ossman
	1b46097: update todo

2006-04-19	Pierre Ossman
	e4b53b2: Tweaks for the solaris module. The sound system requires complete frames
	989fa58: Sun's documentation about SIGPOLL on EOF:s is wrong, so use a timer based
	1d51247: Minor fixes for the way Windows handles sockets.
	e1513ce: WaveOut needs to have rather large chunks. This is about as low as we can
	5342f3a: Win32 needs to have the socket subsystem initialised.
	6ae8511: Having constant deferred events isn't allowed and causes problems. Use timers
	4bb5822: Reverse order of IPv6/IPv4 binding to handle systems without IPV6_V6ONLY.

2006-04-18	Lennart Poettering
	494f602: make proper use of the muting facility of sinks in module-mmkbd-evdev
	746adcf: fix a couple of issues I found when compiling polypaudio with gcc 2.95
	60008cb: fix CFLAGS for jack modules
	9ad753e: fix "make distccheck" properly
	65fd9b3: fix make distcheck
	e454bb1: Documentation updates
	c35052a: add JACK module documentation
	a5100be: fix connecting of jack source in jack daemon
	a809129: build jack source
	768a6f2: fix code for pre-C99
	f8dbc2f: * fix pa_random_seet() function prototype
	abea726: add a jack source module
	cf85794: * allow the user to set the jack client name

2006-04-18	Pierre Ossman
	c22a0c1: Make the probe for RNG sources at runtime since the configure script isn't
	e4b2a47: Clarify that JACK libs are optional.
	074b7c1: More fixes caused by Sun's complete inability to follow any standard
	18055e4: update todo
	2d6ab01: We need to emulate sendmsg/recvmsg to support rtp on Windows. Will do
	c3087d0: Avoid including non-portable header sys/poll.h.
	8b99a06: C99 requires explicit marking of integer literals' size.

2006-04-17	Lennart Poettering
	4482e68: add new JACK sink

2006-04-16	Lennart Poettering
	40f171f: * add pa_mainloop_wakeup() calls for deferred events
	76296ca: add new API to replace the poll() function used by the main loop implementation
	a8bb073: properly initialize session counter
	7871f41: add documentation for the new RTP modules
	2f3fa42: limit number of concurrent RTP streams
	08397d9: fix typo in module description
	e1887b5: change default mcast address once again, to make sure our traffic doesn't leave the network by default
	68a6d61: ignore symdef file of module-rtp-send
	b04a4e6: rename module-rtp-monitor to module-rtp-send
	3b803e7: * make sure RTP ports are chosen to be even
	c999fe4: * deal properly with underruns, overflows and packet losses
	67b105b: * increase default MTU
	998affc: replace homegrown endswith() with pa_endswith() from util.h
	0990d8c: initialize random seed globaly from $RANDOM_DEVICE
	d50255a: * add new check for $RANDOM_DEVICE
	a176d77: todo update
	f1ddf05: * add RTP/SAP/SDP reciever module

2006-04-16	Pierre Ossman
	e75cc68: Fix ALSA fd handling to be compatible with blocking deferred events.
	e8d9a5d: Clarify behaviour of deferred events.

2006-04-15	Lennart Poettering
	1fec416: * change default multicast address
	71227de: correct some types

2006-04-14	Lennart Poettering
	e0e2b8f: * ignore some more files
	9522b44: add an RTP sender module
	86ad601: minor beautification

2006-04-13	Lennart Poettering
	9539dc4: minor doc updates
	c383a4c: * add a link to Cendio to the README
	d981ace: remove yet another item from the todo list! This means we are now read for 0.8!
	7e8d46e: unbreak module-tunnel
	d153fda: remove yet another item from the todo list
	010c049: include in-flux resampled chunk in latency calculations of playback streams
	c25c549: fix latency calculations of module-combine
	9854cfc: hmm, nothing important
	fe64b89: add code to allow polypaudio dump preloaded modules using "--dump-modules"
	d4b22f3: make --enable-force-preopen the default for SVN builds
	1f7a008: add new configure option to enable preloading even on architectures that support dlopen(). Useful for debugging
	df108af: update documentation for release 0.8
	5639b7e: doc updates
	20f4ae6: more documentation updates
	ceb09d8: Documentation updates

2006-04-12	Lennart Poettering
	b33ae79: remove yet another item from the todo
	7fa8323: include local record memblockq in latency calculations
	06bd27b: when storing recording data in file, create file with proper access rights
	4a8d318: yet anotrher fix for slow links
	0af582a: small fix to deal properly with slow links
	bf88854: * dispatch defer events in pa_mainloop_dispatch() and not already in pa_mainloop_prepare()
	853caf1: * fix latency calculation where a full playback buffer was erroneously taken as empty buffer and vice versa.
	0fa56f9: remove a bunch of log messages
	d427942: beefup pacat a little: 
	49b3150: * rename "latency correction" to "write index correction"
	77c2a1f: protocol change: don't send stream buffer size in latency update. This data is redundant, since it can be calculated from write_index - read_index anyway
	b5d177d: proper validity checking for pa_context_is_pending()
	a0c7ca0: when flushin a memblockq, set the write index to the read index
	64d0d9b: todo update

2006-04-10	Lennart Poettering
	268c857: unbreak fresh SVN builds
	b2668ca: return the error code and not just -1 when pa_context_is_pending() fails
	a81209f: validity checks for pa_context_is_pending()
	09589a7: update todo
	021744d: * Beef up latency calculation in module-oss-mmap
	8f2d9ae: minor cleanups for OSS module
	9332708: when using record mode, allow file to save data to to be passed on the command line
	6a3b8ae: todo update
	137f0a7: * implement PA_STREAM_AUTO_TIMING_UPDATE
	190a869: add new PA_STREAM_AUTO_TIMING_UPDATE
	4496954: Lennart is blind
	35ea8ac: update TODO
	f4119ad: unbreak last commit from ossman

2006-04-09	Pierre Ossman
	0d200ee: Use the modern Ki/Mi/Gi prefixes to clarify that 1024 is the base.
	a6ce5c4: Big documentation update. Describe the client API in a more tutorial like

2006-04-08	Lennart Poettering
	a742536: clip volume at PA_VOLUME_NORM for alsa devices
	025228f: add proper volume clipping support for OSS devices
	b4a5474: when doing software volume adjustments, don't use the volume value as linear factor, but pass it through pa_sw_volume_to_linear() first.

2006-04-07	Lennart Poettering
	107525c: remove another item from the todo list
	a546c76: * show flags value when dumping sink/source info in pactl. 
	f6d95b7: add new introspection data field for sinks/sources: a flags field which specifies whether the sink/source supports hw volume control and latency querying
	272ab20: todo update
	4af16e4: minor cleanups
	7261494: remove item from TODO list, since it requires the SNDCTL_DSP_GETERROR ioctl() which isn't supported by the Linux kernel
	2f918f0: todo update
	fdb48b4: * enable write_index correction and timing interpolation only for playback (and record) streams
	22558b5: fix pkg-config files
	e5a5b56: remove yet another item from the todo list
	a9f4896: hdie some more
	b8a729a: * update docs for reworked latency API
	c0592bb: update simple API for new latency API
	53a0056: update pacat.c for new latency API
	920f045: rework latency querying API (this needs more testing)
	cc302f2: remove queue length field from latency request (server side)

2006-04-07	Pierre Ossman
	add110b: Some memcpy arithmetic that wasn't removed when doing the redesign to update

2006-04-06	Lennart Poettering
	dd9605b: * really pass the ipv6 socket server to protocol_new in case of ipv6. 
	1be0017: change pa_gettimeofday() to return a pointer to the struct timeval*, instead of an int
	e872c75: s/index/idx/, to avoid gcc warning
	73035a8: * set IPV6_V6ONLY for IPv6 sockets, to avoid warning when both ipv6 and the ipv4 sockets try to bind to the same port
	ac3d11f: remove some GCC warnings introduced by improperly casting to (char*) instead of (const char*)

2006-03-31	Pierre Ossman
	acb96c9: Fix some warnings caused by size_t having varying size.
	3285403: Large file support. Polypaudio probably doesn't need it, but it causes warnings

2006-03-17	Pierre Ossman
	8d4af80: update todo

2006-03-11	Pierre Ossman
	dc5b2c5: We no longer guarantee that an operation object is returned. Need to tweak
	da90b05: Remember to store the struct with module info.

2006-03-08	Pierre Ossman
	3ef4970: We filled the volume with the wrong channel count (we used the input, not

2006-03-07	Pierre Ossman
	528d150: The extra stream ref actually did some good. Re-add it, but with some more
	b67963c: We've already set an initial reference count of 1 so don't count it up again.
	6457137: Trying to listen on an IPv6 socket by default and only do IPv4 if that fails

2006-03-05	Pierre Ossman
	90d6a91: update todo
	53c266f: Fetch sound card name into sink/source description.
	06eaebf: update todo
	7387342: Volume support in tunnel module.
	4e56725: It's safer to set buffer size than to try setting number of periods.
	f22d8ab: Return the proper error code so that we get a correct error message.
	7b6a9c3: Tried to get the volume information even upon init failure.

2006-03-04	Pierre Ossman
	dcd202f: Update module-tunnel to the new protocol.
	45baa69: Fix warning caused by missing return in main().
	ad7640b: update todo
	4e52294: Alignment safe protocol handling in esound module.

2006-03-02	Pierre Ossman
	bc97b29: Negotiate protocol version between server and client. Will allow smoother
	fbaaf5a: The tag argument is no longer unused.
	50268e0: Fix warnings on 64-bit systems.
	6cc11fb: Handle the new latency protocol. This is just a quick fix and does not
	7f04568: typo fix

2006-03-02	Lennart Poettering
	8cf9b97: protocol changes for new latency API (partial!)

2006-02-27	Pierre Ossman
	76f56ab: update todo
	5b9849e: update todo
	4756d18: We have both sink and source in this module.
	e8b3819: Catch volume update events.
	1bb14c3: 64-bit fixes.
	f59bc1f: Fix some signed/unsigned warnings.
	e37f008: Function prototype didn't match actual definition.

2006-02-26	Pierre Ossman
	0c65922: update todo
	1e68539: Get notifications about mixer changes from ALSA.
	ae07d5a: Handle ALSA file descriptors more correctly. This means a bit more overhead,
	c119996: Fix correct default device.
	b125e1c: Hardware volume support in ALSA modules.

2006-02-24	Lennart Poettering
	c5ec39d: move scatter/gather todo item to post-0.8, since it's impact on perfomance might not even be worth the effort.
	0d8da54: todo update
	4358977: * Add new "auth-group=" parameter to protocol-native-unix
	3f264b2: add support for authentication using SCM_CREDENTIALS
	b967aeb: todo update
	903b8c0: todo update
	c2304d6: add a few more validity checks to protocol-esound

2006-02-24	Pierre Ossman
	25bcc10: Do an explicit cast to shut up gcc.
	c3a2670: This wasn't supposed to be checked in.
	b418809: Wrong variable used for port.
	9f1b793: Tweak the handling of missing credential support so that we minimise non-POSIX
	a1f5573: Call correct function.
	c205ea6: Make local function static.
	9366ab9: Hardware sink mute support.
	3374df5: IGAIN is a better choice than IMIX for source volume.

2006-02-23	Pierre Ossman
	65736a2: Some new additions were mislabeled as '\since 0.9'.
	04c8926: Mute switch for sinks and sources. This is independent of the volume
	bd4ae44: update todo
	607b279: update todo
	79e8009: Hardware source volume support.
	4e8faa6: inet_pton expects in[6]_addr structures, nothing else.
	adad7dc: Add inet_pton emulation for platforms that lack it. Only support IPv4 at
	7050dbf: Update hardware volume to a correct initial value.
	f8aca21: Wrong function name.
	12e35c5: Make sure hardware volume gets a correct initial value.
	ce9b035: Hardware source volume support in OSS.

2006-02-23	Lennart Poettering
	c2290c5: update todo
	a4ab652: really ignore pabrowse
	2756117: ignore pabrowse
	4a64b0d: change pa_log() and friends to not require a trailing \n on all logged strings
	cb59817: simplify tagstruct creation
	5771335: fix source volume adjustment: copy memchunk before changing the volume of it

2006-02-22	Lennart Poettering
	708c650: enforce maximum memblockq length for clients
	bad8fd7: update todo
	ecd346f: add listen= parameter to tcp protocol modules
	8df72bc: todo update
	5c7ab77: pkg-config update
	7f68c91: revive howl support
	361f167: unbreak Makefile.am
	63165d8: todo test
	a99e46d: rework parameter validity checking in protocol-native server side
	f62b66a: todo update
	bf013f8: todo update - outline what i consider pre-0.8 and post-0.8 issues

2006-02-22	Pierre Ossman
	71fd26f: Wrong userdata used to init operation.
	cc2178e: Support for setting volume on sources.
	6cd2250: Remove polyplib-error and polyplib-mainloop for requirements.

2006-02-21	Lennart Poettering
	8d88264: add hw info to description for oss-mmap, too
	5014db9: include hw description gathered from /dev/sndstat in sink/source description string
	6169bd8: add new utility function pa_endswith()
	13b4213: remove left-over log line in protocol-esound.c
	9d3dcef: todo update
	a10257d: fix pacat
	36c8861: todo update
	8c80dd6: * Don't build seperate ipv4/ipv6 versions of the protocol plugins
	c07928a: todo update
	4f511bb: * Get rid of libpolyp-mainloop
	f1a0ee7: todo update
	893204f: add hw volume control for module-oss-mmap

2006-02-21	Pierre Ossman
	48b2e1a: update todo
	7e51237: Hardware volume support on Windows.

2006-02-20	Lennart Poettering
	86124ab: todo update
	cae2d80: disable SIGPIPE before calling pa_core_new(), this way the warning message is not printed
	1506c15: build defer() function in src/polyp/mainloop-signal.c only on win32
	9bcb413: fix snd_pcm_hw_params_set_rate_near() usage
	56ce62a: build dllmain.c only on win32 (makes gcc shut up a little more)
	f5e8953: todo update
	d48912b: improve error checking in simple API
	2bdc07e: add validity check for the "server" parameter of pa_context_connect()
	0858ef9: fix yet another pa_context_connect() occurance with regards to the flags parameter
	a8e85ba: remove a superfluous log line
	31a027b: change calls of pa_context_connect() to pass flags arugment correctly
	b008941: fix moddir
	71b3bff: * modify pa_context_exit_daemon() to return a pa_operation object
	98cb6aa: * a lot of doxygen updates
	71e063a: todo update
	ddd51e2: add doxygen docs for channel map
	3bc0902: minor doxygen fixes
	6d09602: replace "spawn" parameter of pa_context_new() with a proper flags parameter
	e078f08: explcitily cast strings to make gcc shut up
	4566d56: * Make typdefs for the pa_context callback prototypes
	b36ed4d: remove cdecl.h from doxygen docs
	081fb74: update TODO
	16285f9: make doxygen ignore PA_CDECL_BEGIN/PA_CDECL_END
	3044490: 1) Add flexible seeking support (including absolute) for memory block queues and playback streams

2006-02-20	Pierre Ossman
	7905e81: Add aligment fix in esound to todo.
	5d253cd: Fix some warnings by making sure we have the right signedness on things.
	502d3f5: Hardware volume support for Solaris.
	f2292ae: Fixes for the Solaris detection.
	5cc0d0e: Add mute switch to todo.
	6c2d414: Detect support for Windows' waveout.
	d1bc972: Detect support for Solaris (/dev/audio).
	0eed96d: Remove a debug fprintf that was left in.
	e9658bb: util.c uses some socket functions so we need winsock on Windows.

2006-02-18	Lennart Poettering
	0876b1b: update todo

2006-02-17	Pierre Ossman
	b26df7e: Properly clear members during init.
	d142c12: That's a delta parameter, not a size parameter.
	45700da: Have a memblock queue on the client side during recording. This makes the
	6f9a367: Ignore generated win32 binaries.
	162a95d: Module needs stuff in libpolypcore.
	2686857: Fix path to poll.h.
	c4cf7ad: Fix typo in #ifndef.
	da665d5: Integrate error routines into libpolyp. Not much point in having this as a
	1eae42f: Make sure that all polypcore headers are installed.
	5eda18b: Cleaned up the includes after the restructuring. Indicate which headers are
	c278bc6: Move the util libs to the modules section since they're in that directory.

2006-02-17	Lennart Poettering
	b951308: fix doxygen

2006-02-16	Lennart Poettering
	2e0dcc4: include header files in simple.h with <> instead of ""
	5ccf414: * rename polypcore/subscribe.[ch] to polypcore/core-subscribe.[ch] to avoid confusion with polyp/subscribe.[ch]
	b4cb249: shorten include list of utils a little
	19b5b71: * drop polylib prefix from #define
	45b1eee: fix compilation of simple API
	22c8ceb: drop polyplib- prefix from client library files
	f49b09d: make channel naming somewhat RFC2551 compliant
	4ad2926: add a bunch of simple Makefile in the subdirs, just to make compilation with emacs easier
	c75972f: move alsa-util.[ch], oss-util.[ch] and howl-wrap.[ch] to the modules directory since they are just helper source used exclusively by the modules
	b56b9e5: * svn:ignore some files
	5b881e6: add simple hardware auto detection module
	6ad876e: Add HAVE_ALSA and HAVE_OSS defines
	61fbafc: allow polypaudio to startup without any enabled module
	a9950d4: print ALSA error messages on failure
	cc3fe43: fix warning text

2006-02-16	Pierre Ossman
	e205b25: Reorganised the source tree. We now have src/ with a couple of subdirs:

2006-02-15	Lennart Poettering
	22e1f40: todo update

2006-02-14	Pierre Ossman
	0f0fc32: Fix api. Setting volume is done through a pa_cvolume struct, not a pa_volume_t

2006-02-13	Pierre Ossman
	f77d5e1: Add function to "wake up", i.e. interrupt, a running poll(). This is needed
	bbaf154: Split mainloop_iterate() into three, distinct parts. Allows for more flexible

2006-02-10	Pierre Ossman
	4ab432a: Fix some new alignment bugs in the tagstruct handling.
	8d91ffe: Install the new headers for channels and volume.

2006-02-03	Pierre Ossman
	d9bfd5b: Let's have just one endian conversion macro suite.
	5c01c10: Fix endian conversion macros and reformat them to be a bit more readable.
	d431e00: Use defines and not hard coded values for volume levels. Caused incorrect
	bbc6dd6: Volume adjustment must be done _after_ dropping the chunk since drop will
	c34f35a: Reverting an incorrect checkin.

2006-01-30	Pierre Ossman
	dd7b380: Fixes for the new infrastructure so that the waveout module compiles.
	7da06d3: Fixes for the new infrastructure so that the solaris module compiles.
	22db575: Breaks missing from conversion to a switch statement.
	f8808a2: Print an error message before aborting.

2006-01-28	Lennart Poettering
	db6dc13: * add variadic function pa_tagstruct_get() and pa_tagstruct_put() for parsing/constructing tagstruct records

2006-01-27	Lennart Poettering
	8580967: add support more for up to 16 auxiliary channel positions
	dd10c98: Mega patch:

2006-01-27	Pierre Ossman
	759721c: Remove the version number from the module directory. Makes life easier

2006-01-25	Pierre Ossman
	917d876: We get the -lcap through LIBS, so no need for CAP_LIBS.
	104797b: Use AC_SEARCH_LIBS instead of AC_CHECK_LIBS since it is a lot smarter and

2006-01-20	Pierre Ossman
	30bb5ce: Fix so that peer name can be determined on Windows. We do not support console

2006-01-19	Pierre Ossman
	60dbf8b: Open the device in non-blocking mode.
	0ca9a0e: Ugly hack to get around Solaris particularly brain dead sound system.

2006-01-16	Pierre Ossman
	719c377: We need a logical, not an arithmetic shift here. So use unsigned types when

2006-01-12	Pierre Ossman
	262c60f: Under win32 we freed the wrong pointer causing a segmentation fault.
	cb2a7ed: Some crappy hardware generate noise on the output when reading input. To
	289c914: Some drivers (via82xx) doesn't start recording until we read something.
	fc93e4b: Used 0 as an invalid fd. Changed to -1.
	f61be8b: If the card couldn't do duplex when required we would incorrectly return

2006-01-11	Pierre Ossman
	72316cc: Many (FSF and Sun at least) have interpreted the C99 standard in a way
	2623edc: Remove the old compiler flag test now that we have a new shiny one.
	70ac72e: Our makefiles work just fine on older automakes (1.7 tested). Let's keep

2006-01-11	Lennart Poettering
	1f09613: * remove a lot of compiler warnings introduced by using some new GCC flags

2006-01-10	Lennart Poettering
	6c512fb: build system updates, including support for some newer GCC options
	f7a99e9: Merge Pierre's changes

2006-01-10	Pierre Ossman
	34e81ff: Handle Windows paths when normalizing authkey path.
	29118f5: Make sure the caps header check can also be disabled.
	1015ea4: Store previous reported time in order to assure a monotonic clock.
	d429222: Accidental use of a swapped int.
	11c6cac: buf is needed on Windows aswell.
	abdf9b1: Add needed error code.
	0a9abdd: Unfortunately Windows has two different values for EBADF depending on
	ba06340: Add some required headers.
	357ab88: Make sure socklen_t is defined.
	5e5808a: Static libs bork the creation of dlls and AC_CHECK_LIB isn't very bright,
	ff4cc62: Move library checks to a separate section and make sure it's before
	f5a2cf1: getopt_long resides in libiberty on many platforms.

2006-01-09	Pierre Ossman
	76bc56c: Put inet_ntop() emulation in a seperate file.
	d3cb144: Update comment for pa_lock_fd() to reflect that locks are mandatory
	160d886: Merge with trunk.
	8258146: Generalise lstat fallback.
	5fcbf04: Condense winsock includes and defines into one header.
	9818d67: Make the tagstruct handling safe on machines with alignment restrictions.
	8a32357: Make sure the data gets endianness conversion.

2006-01-09	Lennart Poettering
	80ae72c: improve sync clock change
	794033a: fix synchronized clock change

2006-01-05	Pierre Ossman
	067c00f: Reversing incorrect commit.
	72795fc: Use autoconf detected define for getgroups() type.
	d5ce3ec: Ignore windows exe:s.
	1b472f7: Solaris support.
	6781628: The Windows sound interface module.
	19d9fcb: Port to Windows. This is mostly glue layers for the poor POSIX support
	2f74bb9: Protect pthread.h with an ifdef.
	bdc02f7: Protect sys/resource.h with an ifdef.
	67833c2: Protect sched.h with ifdef.
	57dccd2: Replace paths with defines.
	2c4d42e: ctime_r() is not available everywhere.
	e72bbdb: c was used before it was assigned.
	010476f: Protect getuid() with an ifdef.
	5ac2cb9: No regexp funtions are used in this file.
	ecaf8d8: PATH_MAX is defined in limits.h.
	983fdb3: Stub uses socket defines so include the header.
	7aba34b: config.h should always be included so that necessary fixes can take effect.
	2cf165d: ifdef-protect setpgid and setsid.
	08bbfd2: Make it possible to disable caps support since it breaks fully static
	be2ba90: Add option to select which modules get linked in during static builds.
	9550c8e: No need for conditional generation of symdef files.
	971e370: Add possibility for linking semi-static executables (libtools definition
	e2495c7: We need explicit actions here.
	268aebb: Protect sys/wait.h with an ifdef.
	8f3c364: Make sure all socket headers are protected by ifdefs.
	e28ce8c: Use pa_get_path_filename() instead of duplicating code.
	29a5b85: Emulate poll() through select() where needed.
	d3bc7b2: Fix test for mkfifo(). HAVE_MKFIFO is only generated as a config.h define by
	5cd8703: Remove ftruncate test since we're not doing anything with the result.
	a24102c: Fix indentation.
	e9be6fa: Handle platforms that do not support the UNIX user/group database.
	59aa6ca: There was a race condition here that caused latency calculation to fail
	ec87cb1: Fall back to signal() when sigaction isn't supported.
	3ed983c: SIGQUIT is an optional signal.
	b8859b4: Compiler warning about uninitialized variable.
	3728854: Make sure the array is never too small.
	b69d881: Fix printf string.
	7192238: Old kernel headers didn't define the input_id structure. Therefore we cannot
	c5bee95: Fix correct type.
	4deeaef: Don't include sys/socket.h in the header when we do not need to.
	14474ae: Esound latency should not include buffer length. This added an extra second
	f0e8c65: Two variables with the same name causing corrupt strings.
	4384d31: Fix warning.
	ff49e63: inet_ntop can't be found on all platforms. Do a stupid emulation when
	456e256: Fix some compiler warnings about unused variables.
	cd3691d: PIPE_BUF has nothing to do with the esound buffers.
	13496bb: Handle when the platform doesn't have UNIX sockets.
	3a3b4af: AF_UNIX and PF_UNIX is more portable than the _LOCAL equivalent.
	dbad54a: Remove any warnings about incorrect type to setsockopt() (char* vs void*).
	7dcf4e4: The standard declares some signals as optional. Make sure we handle
	eacffc3: To access the new pa_gettimeofday() we need to include util.h.
	8c5a75d: Syslog is not present on all platforms.
	3996c5f: SIXCPU isn't present on all platforms. Replace cpulimit with dummy functions
	2ce05b2: Glob is not present on all systems.
	70223ba: Fallbacks for systems that do not have getaddrinfo(). Does not handle
	3f2ac7e: We have a generic function for extracting the filename, let's use it.
	f6b0f87: Remove unnecessary dependency on timeval definition.
	687e2d7: Abstract the gettimeofday call into a utility function to ease porting.
	70710e1: Check for OSS by looking for its header. Win32 isn't the only platform
	11a4c67: Remove unused automake conditional.
	e8c71ed: Since README is generated conditionally we must make sure there are no
	1f11ee3: Big cleanup of the build structure.
	22f6694: Creating branch for patches from Pierre Ossman

2005-09-16	Lennart Poettering
	656cf87: fix alsa memory leak
	9177ef4: chance ALSA sink to use "default" as default alsa device
	3a61b36: initialize running_as_daemon 
	d50bfd8: increase number of allowed connections
	e4395c2: add new field running_as_daemon to pa_core
	48b2a87: add pa_sound_file_too_big_to_cache()
	668f3cd: handle float values in sound files sensibly
	652e000: print a nice message when libltdl is missing
	e0d0f1b: git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@352 fefdeb5f-60dc-0310-8127-8f9354f1896f
	6d9dffe: build fix
	c57cad9: bail out if no sink is defined

2005-09-15	Lennart Poettering
	b993e33: alter alsa periods number
	db4b25d: handle EOF in ioline.c
	fda09b9: remove esound protocol directory on unload of module-protocol-esound
	f1da8ad: fix start_timeout()
	b5f5707: add libsamplerate/libsndfile CFLAGS 
	e1f008f: commit liboil porting changes
	0c9873e: create a copy for liboil porting

2005-01-12	Lennart Poettering
	4daa0c1: * fix LIRC configuration
	f586ce0: * extend HTTP module
	4590f09: * make pa_sample_spec_snprint return point to written string

2005-01-11	Lennart Poettering
	32bf3a1: * new environment variable $POLYP_LOG

2005-01-09	Lennart Poettering
	5ab3064: * add new module module-mmkbd-evdev

2005-01-08	Lennart Poettering
	474b568: * todo update
	6911d7e: * increase timeout in pacmd
	c29c95d: * make lirc program name configurable
	fb4cba4: * add new module for LIRC volume control
	1e78a1d: change doxygen build stuff for better compat with moderm automakes
	9a59d01: update todo list
	9b0ec37: * add support for asynchronous name resolution

2005-01-06	Lennart Poettering
	fb11e45: minor fixes

2004-12-18	Lennart Poettering
	8199925: fix conditional X11 compilation

2004-12-16	Lennart Poettering
	47ab6bd: gcc 2.95 compat

2004-12-15	Lennart Poettering
	b1369d2: * fix error message when starting polypaudio while it is already running
	400dacd: cleanup zeroconf service names
	99e0779: * Publish server info in mDNS in addition to sinks/sources

2004-12-14	Lennart Poettering
	bc5b917: do mor daemonizing work
	a370e6e: * fix daemonizing
	fa48de8: * prepare polyplib-browse for installation

2004-12-12	Lennart Poettering
	e02be6c: * fix include file names in installed header files
	9a01cf4: * complete zeroconf publisher

2004-12-11	Lennart Poettering
	2d97e75: * fix alsa initialisation
	73eabec: * add first part of zeroconf publisher

2004-11-27	Lennart Poettering
	5be9641: * really fix integer only resampler
	7f3c92b: * fix autospawn lock file creation

2004-11-26	Lennart Poettering
	9a9309f: * use setresuid() instead of setruid() if available

2004-11-23	Lennart Poettering
	7586478: * install fix
	29ec9d3: * some fixes for MacOS X by Conrad Parker

2004-11-21	Lennart Poettering
	c827fca: prepare for release
	9f23c8f: Documentation updates
	4763ca1: Comment some more files
	2fb83d1: * make --help fit in 80 columns terminal
	82a3626: * update todo
	d45abba: calculate buffer sizes from sample spec
	4583c22: * create parec as link to pacat
	28d9744: * new tool pacmd
	c90409e: bump version number
	b03f390: * add some missing "static"s
	966c78c: fixes for bugs found when compiling with gcc 2.95
	92f73a7: * fix the trivial resampler
	f2b11db: * PID and lock file fixes
	fa751e5: some commenting
	6985eda: * some minor pid file fixes

2004-11-20	Lennart Poettering
	3c77c6e: * remove autospawn lock file usage
	acc8b78: option to use ALSA default fragment number and size
	5f647c8: * add µlaw/alaw support

2004-11-18	Lennart Poettering
	8641af3: * some iochannel fixes
	eef235d: limit the number of concurrent connections for all four protocols

2004-11-17	Lennart Poettering
	c57d5de: minor fixes for latency interpolation
	cd3a98a: todo update
	a58f248: fix module-tunnel.c
	ddf9970: update todo list
	5ea2783: * fix a long standing bug in ioline.c (large prints failed)
	0a2bbc5: * some commenting work

2004-11-14	Lennart Poettering
	f5f6605: todo update
	fa499da: Make the whole stuff LGPL only
	be6a1c2: * implement module-esound-sink
	d7d8529: * remove as superfluous assert() in polyplib-stream which broke the gstreamer plugin

2004-11-12	Lennart Poettering
	6de0cda: remove a debug message

2004-11-11	Lennart Poettering
	c005bd4: add username to runtime directory name in /tmp/

2004-11-09	Lennart Poettering
	dbaa83c: split out x11prop.[ch]
	3fcd7a4: use fqdn in module-x11-publish as well
	3916a66: export FQDN instead of hostname

2004-11-08	Lennart Poettering
	89e39f1: build pax11publish only when X11 is available
	4bb1483: implemented pax11publish.c

2004-11-07	Lennart Poettering
	b55923a: * Look for M4 in configure.ac

2004-11-04	Lennart Poettering
	5844a33: some commenting
	2aad9e3: compilation fix
	344ced4: add some more comments
	1f6a90c: fix client libaryr in case no latency interpolation is required

2004-11-01	Lennart Poettering
	cd3ba7d: Apply Joe Marcus Clarke's FreeBSD patches

2004-10-30	Lennart Poettering
	899788b: some updates for pa_hashmap

2004-10-29	Lennart Poettering
	4e5c44d: use setreuid() instead of setuid()/seteuid() when dropping root 

2004-10-28	Lennart Poettering
	e34c65d: require newer libsndfile

2004-10-27	Lennart Poettering
	c82105d: prepare next release 0.6
	1bcec3e: make autoload list use idxset
	f252edb: minor updates
	929104a: update todo
	19f2acb: add null sink
	49e16ff: latency calculation fix
	ee452b0: two latency interpolation fixes
	148202d: support for latency interpolation

2004-10-24	Lennart Poettering
	da45617: add user volume API

2004-10-12	Lennart Poettering
	a6471e2: gcc 2.95 fix

2004-10-11	Lennart Poettering
	6ede161: enlarge default buffers

2004-10-01	Lennart Poettering
	fde3d13: todo update

2004-09-29	Lennart Poettering
	68d50dc: add sample spec parameters to pacat
	66999e5: Add support for libwrap
	d092401: really fix API version API
	6dfab4e: renamed module-tunnel to module-tunnel-sink

2004-09-28	Lennart Poettering
	d8f700e: fix module-tunnel for to aborting when connection fails
	33c85ae: add latency measurement support to tunnel module
	6f59ae1: Add module-tunnel

2004-09-27	Lennart Poettering
	450ad85: try to use file sample type for cache entries and play-file playback
	f014d46: really fix cpu usage when using esddsp with polypaudio
	35148d8: add POSIX locking to authkey.c

2004-09-26	Lennart Poettering
	949014e: add new tool paplay
	5bac3c3: bum version number

2004-09-23	Lennart Poettering
	405fac5: bump version number and update documentation
	ed36241: allow high priority scheduling only for users in group "realtime"
	8176b3a: ignore default.in
	6d20544: place full binary path in default.pa's shebang line
	dfcd161: Fix a bug in the build system reported by Iain Fothergill
	9e3890a: OSX protability patches from Conrad Parker
	03ee5e2: add support for capabilities

2004-09-21	Lennart Poettering
	370ff1d: improve esound module
	12949d0: support for esd arguments: -spawnpid and -spawnfd
	3e1bdac: add noop implementation of standby/resume ESOUND commands
	df953a1: show which command is unknown in esound protocol

2004-09-20	Lennart Poettering
	7668418: add link to mailing list
	4d9af54: build updates
	2d87bd2: documentation update
	bb31eda: fix xmms spawn bug
	42bba49: update module descriptions

2004-09-19	Lennart Poettering
	b118982: remove obnoxious assert from module-combine
	70a3053: add new function pa_mainloop_deferred_pending()

2004-09-18	Lennart Poettering
	29653ab: add pacat command line parsing
	73125ad: work around gcc 2.95 limitation
	4e31feb: work around gcc 2.95 limitation

2004-09-17	Lennart Poettering
	9ad4aa3: minor stuff
	0b9bc03: change sysconf path
	61ec86c: add resample_method option module-combine
	0895356: add --resample-method argument
	95612b6: rename some more
	f077958: rename some stuff
	24f3781: make daemon.conf/client.conf autogenerated
	63b35d0: new configuration subsystem

2004-09-16	Lennart Poettering
	07d563d: update according to autoscan
	078f2aa: gcc 2.95 compatibility, take 2
	19294e4: fix two gcc 2.95 incompatibilities
	daf3938: add support for subscribing to autoload table changes
	f9e2058: add input latency measurement

2004-09-15	Lennart Poettering
	f5d47a2: work around C99/GCC incompatibility
	9ca72dc: remove auto-load-sample stuff
	8c110d9: correct autospawning

2004-09-14	Lennart Poettering
	935826f: make module-combine autoloadable
	6e01979: add refernce counting for sinks, sources, sink-inputs and source-outputs
	8c6593d: add module-combine

2004-09-13	Lennart Poettering
	829656c: new configuration subsystem
	fbefe67: correct latency calculation
	1231598: fix parsing of POLYP_SERVER environment variable

2004-09-12	Lennart Poettering
	b1ab686: fix public= on native and esound protocol
	b681622: build system update
	b772564: update simple API
	f05a4ac: extend pa_usec_t to 64 bit

2004-09-11	Lennart Poettering
	a9ca9c4: add modinfo support
	11f0aae: add version number to library names

2004-09-10	Lennart Poettering
	2512346: add support for module search path as command line argument

2004-09-08	Lennart Poettering
	0c99fb3: add FAQ to homepage

2004-09-07	Lennart Poettering
	5fc0cf2: date fix
	13248fd: documentation update
	7000717: implemented new CLI command: dump
	93c8fe6: change the way the default sink/source is selected

2004-09-06	Lennart Poettering
	0fa499d: add support for setting/getting default sink/source via native protocol
	3536be4: correct a recording bug in native protocol
	566e469: add module-pipe-source

2004-09-05	Lennart Poettering
	6c4fd62: implement proper logging

2004-09-04	Lennart Poettering
	57e473b: add support for automatic termination of the daemon after the last client quit

2004-09-03	Lennart Poettering
	fb962b6: add option to disallow module loading after startup
	4a9239f: add CPU load limiter

2004-09-01	Lennart Poettering
	c73a298: add total sample cache size to statistics
	5f52999: make use F_CLOEXEC wherever useful
	3487387: daemon auto spawn
	ee91cb6: add esd compatible startup script
	dfd440b: add sound file streaming
	50f592b: introduce sink input and source output limits
	0205fc5: add PA_MININFTY
	63c76bd: cleanup comment
	9939fba: add \since to dB functions
	9c4fd2a: add support for dB volumes
	fa19d6a: implement missing scache_get_id_by_name
	36550f4: remove most -W compiler warnings
	34fe8bd: add support for SCHED_FIFO

2004-08-27	Lennart Poettering
	9618aea: fix module path
	8c887ab: fix homepage script
	5020326: minor fixes
	b014340: readme update (licensing)
	4efa9d1: add LGPL/GPL to dist package
	41d8c13: relicense client library to LGPL
	8cb1cab: document every polyplib function
	761a895: minor cleanups
	92bf0a3: latency work

2004-08-23	Lennart Poettering
	b6b428e: minor documentation update

2004-08-22	Lennart Poettering
	41295bb: new features:

2004-08-20	Lennart Poettering
	ea4805a: add pkg config file glib12-mainloop
	5e8bb14: add support for glib12
	669452e: documentation update
	8c756d5: documentation update
	9b5ba2b: doxygen fix
	0b9f91d: readme update
	8f90450: Doxygen stuff
	6bc5340: build fixes

2004-08-19	Lennart Poettering
	f9b58fb: move sample cache to namereg
	e0fe68a: minor stuff

2004-08-18	Lennart Poettering
	befd734: add version routines to polyplib

2004-08-17	Lennart Poettering
	ac59518: add missing copyright headers
	e75b657: remove global memblock statistic variables in favor of memblock_stat objects
	81822a7: fix x11 build
	2d6d3e5: todo update
	711de8d: autoconf beefup
	ca2265f: Documentation work
	f693aa4: remove native-common-internal
	bee750b: create native-common-internal.h
	aff43dd: update todo file
	a0d54dd: make clitext to cli-text renaming complete
	e4be616: rename clitext to cli-text

2004-08-16	Lennart Poettering
	126fede: fix sink iunput and source output stuff
	369a908: add sink input/source output support to the native protocol

2004-08-15	Lennart Poettering
	efc3491: add support for volume manipulation
	c175451: proper ref counting for more objects

2004-08-14	Lennart Poettering
	22cb23e: implement proper refcounting in polyplib

2004-08-13	Lennart Poettering
	1c2ec47: rename polyplib-sample to polyplib-scache
	50b9fc2: add polyplib-sample.c
	56bcba9: add polyplib-sample
	821afd6: add internal header file for polyplib
	79a4e75: split polyplib.h
	7b52d5d: some preliminary cleanup

2004-08-12	Lennart Poettering
	cd5809c: todo fix
	886041a: add more subscription events

2004-08-11	Lennart Poettering
	cbfaf40: info and subscription work
	b297d0b: todo update
	3d374e9: add subscription subsystem

2004-08-10	Lennart Poettering
	fc618e9: compile fix
	37d930a: glib mainloop fix

2004-08-07	Lennart Poettering
	e9bed20: better mainloop test build system
	209c9dd: rename mainloop testing tool
	6f0936f: cleanup priority management in main loop

2004-08-06	Lennart Poettering
	68eb5dd: add mainloop test utility

2004-08-05	Lennart Poettering
	964bdfd: add initial glib mainloop adapter

2004-08-04	Lennart Poettering
	839f99f: forgot some files
	46091a9: introduce pa_xmalloc() and friends

2004-08-03	Lennart Poettering
	24291af: sample cache work

2004-08-02	Lennart Poettering
	e10b918: add support for querying sample ist with esound protocol
	8705af7: add new module "module-x11-bell"

2004-07-20	Lennart Poettering
	5a694fd: add a todo item 
	bb0b105: sample cache work

2004-07-18	Lennart Poettering
	527faf0: minor fixes

2004-07-17	Lennart Poettering
	8540718: readme update
	765d2f7: two simple fixes
	d6d50b0: some makefile fixes
	78a799e: make distcheck clean
	141ab85: make polypaudio run when installed
	6601d95: fix Makefile.am and configure.ac to match directory renaming
	41f6aea: rename src to polyp
	563201e: rename configuration file
	86f5b30: move todo file
	539eb02: ignore README
	7b8c329: add documentation

2004-07-16	Lennart Poettering
	3e379ca: add pkgconfig stuff
	cf965cb: add missing liecenses
	e0d510d: include copyright and svn tag in *.[ch]
	b5384e0: include config.h in every file
	dc812da: fix distcheck
	005cb3e: adjust file references due to renaming
	2a6ee77: rename a bunch of files
	00b53f3: make a symbol in module-ptorocol-stub static
	554b01b: make oss sample spec configurable
	74bbf31: implement alsa source
	f2e08d5: split PA_SAMPLE_FLOAT32 into PA_SAMPLE_FLOAT{LE,BE}
	b8eb0c0: add alsa sink

2004-07-15	Lennart Poettering
	b240564: optimize esound latency for xmms
	710233b: implement get_latency native command
	d8f1300: add pactl tool
	c36dadd: remove global exported variables:
	1a6fea2: implement daemonizing
	ed9bd5f: fix modargs memory leak
	1416fef: implement client side TCP support

2004-07-14	Lennart Poettering
	e83b710: update todo
	e61e924: complete implementation of the command line

2004-07-12	Lennart Poettering
	b69178b: add preliminary command line parsing

2004-07-11	Lennart Poettering
	d4e0d51: make module-oss-* use modargs
	216591d: make the protocol plugins make use of modargs
	a96ed34: rename hashset to hashmap
	ccfd554: add dependency script

2004-07-10	Lennart Poettering
	c7bd759: add description field for sinks/sources
	0253896: make memblockq merge chunks
	5ee3a59: forgot to add parec-simple
	5ea96e3: implement parec-simple and matching simple recording API
	70bb816: implement recording in native API

2004-07-09	Lennart Poettering
	cffc776: fix recording for simpel and esound protocols

2004-07-07	Lennart Poettering
	863fb90: add output stream draining
	e8d1185: draining ind native protocol

2004-07-06	Lennart Poettering
	f8cbde5: auth support in esound and native

2004-07-04	Lennart Poettering
	722c2c8: add kill_* and default_* commands to CLI

2004-07-03	Lennart Poettering
	e61c2dd: add pa_ prefix to all identifiers.
	a8a5ab1: fix minor typo
	3ac2437: add libsamplerate dependency
	253c540: forgot to add memchunk.[ch]
	741aa44: add resampling

2004-07-02	Lennart Poettering
	13b35a2: add resampler

2004-06-30	Lennart Poettering
	961fb44: latency

2004-06-29	Lennart Poettering
	d571be6: volume work
	e31bac0: extended esound protocol
	ef422fa: esound protocol

2004-06-27	Lennart Poettering
	a74cd2a: add name registrar
	0103786: make native playback work
	57dc427: many fixes

2004-06-24	Lennart Poettering
	1ad4ff1: some fixes

2004-06-23	Lennart Poettering
	a1b59db: make rename of oss.[ch] to oss-util.[ch] complete
	c050d72: rename oss.[ch] to oss-util.[ch]
	b9e0fa8: minor compile work
	3b50a7c: ignore some more stuff
	acb25b3: main part of the native protocol

2004-06-20	Lennart Poettering
	eecf602: partial implementation of native protocol

2004-06-19	Lennart Poettering
	a84f38e: mofiy keyword expansion
	81447ed: cli protocol
	6eddcc2: rename module-simple-protocol to module-protocol-stub
	787bf6c: minor work
	b4e3f5c: add simple ptorocol with unix
	56f8c95: some more work on the cli

2004-06-18	Lennart Poettering
	382e7ae: some more work
	993d1bc: basic cli interface

2004-06-16	Lennart Poettering
	eb946db: configure fix
	4b86ff0: got mmap oss output working

2004-06-15	Lennart Poettering
	a8f7881: fix mixing
	b24546b: cleanup
	78f386a: more work
	98f41f1: minor work
	1a50607: oss output works

2004-06-14	Lennart Poettering
	bfcde99: rename some more
	f78e9b6: commit some work and rename
	0575fc6: remove oss.c
	5ce2048: more cleanups
	c8cf0c1: a bunch of fixes

2004-06-11	Lennart Poettering
	edfad83: remove moddep files (since they are obsolete)
	7dfeb1f: make the whole stuff run and clean it self up again
	aae40dc: module dependencie foo
	8584356: ignore fix
	9e3ad23: autoconf

2004-06-10	Lennart Poettering
	a5daff7: make it compile