~ubuntu-audio-dev/pulseaudio/ubuntu

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
pulseaudio (1:4.0-0ubuntu14) UNRELEASED; urgency=medium

  * Removing 0201-ALSA-Add-extcon-Android-switch-jack-detection.patch,
    0204-Add-module-to-talk-to-the-Android-audio-hal-to-set-u.patch and
    Disable-tsched-for-Nexus-10.patch code migrated to the pulse droid module
  * Removing 0206-enable-module-switch-on-connect-ubuntu-touch.patch, as touch
    as its own script file now
  * 0206-module-bluetooth-discover-adding-module-option-profi.patch:
    - Adding module option 'profile' in module-bluetooth-discover
  * 0207-Enable-pulseaudio-droid.patch:
    - Adding pulseaudio-droid element (used by Ubuntu Touch)
  * debian/control: adding pulseaudio-module-droid

 -- Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>  Mon, 23 Jun 2014 03:23:51 -0300

pulseaudio (1:4.0-0ubuntu13) utopic; urgency=medium

  * 0206-enable-module-switch-on-connect-ubuntu-touch.patch:
    - Enable module switch-on-connect by default on Ubuntu Touch

 -- Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>  Mon, 16 Jun 2014 21:45:19 -0300

pulseaudio (1:4.0-0ubuntu12) utopic; urgency=high

  * No change rebuild against new dh_installinit, to call update-rc.d at
    postinst.

 -- Dimitri John Ledkov <xnox@ubuntu.com>  Wed, 28 May 2014 10:41:54 +0100

pulseaudio (1:4.0-0ubuntu11) trusty; urgency=medium

  * 0105-sink-source-Initialize-port-before-fixate-hook-fixes.patch:
    Fix volume/mute not restored in some cases (LP: #1285179, LP: #1289515)
  * 0106-module-switch-on-port-available-Don-t-switch-profile.patch:
    Fix profile incorrectly switched on startup (LP: #1256511) 

 -- David Henningsson <david.henningsson@canonical.com>  Fri, 04 Apr 2014 09:39:55 +0200

pulseaudio (1:4.0-0ubuntu10) trusty; urgency=medium

  * 0204-Add-module-to-talk-to-the-Android-audio-hal-to-set-u.patch:
    - Setting audio mode before shutting down output stream (LP: #1283818)

 -- Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>  Thu, 27 Feb 2014 22:37:56 -0300

pulseaudio (1:4.0-0ubuntu9) trusty; urgency=medium

  * 0205-suspend-on-idle-ensure-we-still-time-out-if-a-stream-remains-corked.patch:
    - Properly suspending sink/source if the stream started corked and remains
      corked (LP: #1284415)

 -- Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>  Tue, 25 Feb 2014 16:37:26 -0300

pulseaudio (1:4.0-0ubuntu8) trusty; urgency=medium

  * 0201-ALSA-Add-extcon-Android-switch-jack-detection.patch:
    - Only getting udev events from the switch subsystem (LP: #1284410)

 -- Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>  Mon, 24 Feb 2014 23:43:50 -0300

pulseaudio (1:4.0-0ubuntu7) trusty; urgency=low

  * 0204-Add-module-to-talk-to-the-Android-audio-hal-to-set-u.patch:
    - Refresh patch to use libhardware's pkg-config instead of looking for
      audio.h

 -- Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>  Fri, 20 Dec 2013 04:08:09 -0200

pulseaudio (1:4.0-0ubuntu6) saucy; urgency=low

  * Three crash fixes from upstream:
    0102-combine-Fix-crash-in-output-freeing.patch:
    - Fix crash in module-combine-sink (LP: #1228759)
    0103-resampler-Fix-peaks-resampler-s-channel-handling.patch:
    - Fix crash in peak resampler (LP: #1212019)
    0104-default-system.pa-Do-not-load-module-dbus-protocol.patch:
    - module-dbus-protocol is still crashy, unfortunately (LP: #1213369)

 -- David Henningsson <david.henningsson@canonical.com>  Mon, 30 Sep 2013 15:11:42 +0200

pulseaudio (1:4.0-0ubuntu5) saucy; urgency=low

  [ David Henningsson ]
  * Ubuntu phone: Suspend sinks/sources before tearing down voice calls
    (LP: #1226298)

 -- Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>  Wed, 25 Sep 2013 13:06:49 -0300

pulseaudio (1:4.0-0ubuntu4) saucy; urgency=low

  * debian/patches/Disable-tsched-for-Nexus-10.patch
    Add a workaround patch for Nexus 10 and only apply it on armhf

 -- David Henningsson <david.henningsson@canonical.com>  Thu, 12 Sep 2013 17:07:21 -0400

pulseaudio (1:4.0-0ubuntu3) saucy; urgency=low

  * Ubuntu Phone: Enable setting volume in voice calls
    Fix speaker phone mode on Nexus 4

 -- David Henningsson <david.henningsson@canonical.com>  Tue, 10 Sep 2013 12:32:10 -0400

pulseaudio (1:4.0-0ubuntu2+build1) saucy; urgency=low

  * No-change rebuild (updated android-platform-headers)

 -- David Henningsson <david.henningsson@canonical.com>  Mon, 02 Sep 2013 17:12:10 +0200

pulseaudio (1:4.0-0ubuntu2) saucy; urgency=low

  * patches/020*, control, pulseaudio.install.armhf:
    Add patches for Ubuntu Touch, make us detect Android jacks,
    and talk to the Audio HAL for voice calls

 -- David Henningsson <david.henningsson@canonical.com>  Tue, 27 Aug 2013 10:53:46 +0200

pulseaudio (1:4.0-0ubuntu1) saucy; urgency=low

  [ Luke Yelavich ]
  * New upstream test release
  * Drop all patches originally taken from upstream
  * 0022-inotify-wrapper-Quit-daemon-if-pid-file-is-removed.patch: Refreshed
  * Update symbols files
  * Update shlibs
  * Add/update lintian overrides from Debian package

  [ David Henningsson ]
  * 0019-disable-dbus-protocol.patch: Dropped, bug fixed upstream
  * 0007-handle-Master-Front.patch: Dropped. "Master Front" does not exist as
    of Linux 3.9 
  * Drop references to pulseaudio-module-udev, pulseaudio-rygel-media-server and
    pulseaudio-module-hal. We didn't have them in 12.04 and we don't support
    upgrades bypassing 12.04.
  * Ship new module-remap-source module and bash completion 
  * Add an build/run autopkgtest for libpulse-dev

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 26 Jul 2013 11:02:06 +1000

pulseaudio (1:3.0-0ubuntu9) saucy; urgency=low

  * debian/patches/0112-*, 0113-*: Add better support for machines with
    "Headphone Mic" and "Headset Mic" jacks, used in some newer hardware
    (LP: #1169143)

 -- David Henningsson <david.henningsson@canonical.com>  Wed, 24 Jul 2013 09:43:55 +0200

pulseaudio (1:3.0-0ubuntu8) saucy; urgency=low

  * debian/patches/0023-fixing_snd_mixer_poll_descriptors_count_when_zero.patch:
    - Avoid abort when poll descriptor is 0, such as when using it with the
      audioflinger bridge, like done in ubuntu touch (LP: #1092377)

 -- Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>  Mon, 10 Jun 2013 17:54:18 -0300

pulseaudio (1:3.0-0ubuntu7) saucy; urgency=low

  [ Martin Pitt ]
  * Add 0111-logind-check.patch: Check for logind, not for systemd init. Patch
    backported from upstream master.
  * Switch to logind for session tracking:
    - debian/control: Add systemd build dependencies for logind support. Move
      dependency from consolekit to libpam-systemd.
    - debian/pulseaudio.install: Install logind module instead of the
      consolekit module.

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 29 Apr 2013 15:13:12 +1000

pulseaudio (1:3.0-0ubuntu6) raring; urgency=low

  * 0022-inotify-wrapper-Quit-daemon-if-pid-file-is-removed.patch:
    Fix patch not to cause 100% CPU (LP: #1170313)

 -- David Henningsson <david.henningsson@canonical.com>  Thu, 18 Apr 2013 13:24:16 +0200

pulseaudio (1:3.0-0ubuntu5) raring; urgency=low

  * 0022-inotify-wrapper-Quit-daemon-if-pid-file-is-removed.patch: 
    Fix stale pulseaudio processes after logout (LP: #1167192)

 -- David Henningsson <david.henningsson@canonical.com>  Wed, 17 Apr 2013 16:13:04 +0200

pulseaudio (1:3.0-0ubuntu4b2) raring; urgency=low

  * Another no-change rebuild against libudev1 to pick up transitive
    dependencies.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Thu, 14 Mar 2013 10:23:58 +0100

pulseaudio (1:3.0-0ubuntu4b1) raring; urgency=low

  * No-change rebuild against libudev1

 -- Martin Pitt <martin.pitt@ubuntu.com>  Wed, 13 Mar 2013 07:02:09 +0000

pulseaudio (1:3.0-0ubuntu4) raring; urgency=low

  [ Kaj Ailomaa ]
  * 0108-module-jackdbus-detect-channel-config.patch
    0109-module-jackdbus-detect-channel-config-fix.patch
    Adds channel configuration to module-jackdbus-detect
  * 0110-module-jackdbus-detect-channel-config-default.patch
    Sets default channel config for module-jackdbus-detect to 2,
    as jack is not well adapted for anything beyond mono or stereo
    connections.

 -- David Henningsson <david.henningsson@canonical.com>  Fri, 01 Mar 2013 15:13:31 +0100

pulseaudio (1:3.0-0ubuntu3) raring; urgency=low

  * 0106-reserve-Move-get_name_owner-to-the-public-rd_device-.patch,
    0107-reserve-Fix-leaking-NameLost-signals-after-release-a.patch:
    Fix sound suddenly stops working, seems particularly frequent with VLC
    (LP: #1129990, LP: #1127872)

 -- David Henningsson <david.henningsson@canonical.com>  Thu, 21 Feb 2013 10:55:16 +0100

pulseaudio (1:3.0-0ubuntu2) raring; urgency=low

  * Update libpulse0 symbols
  * Pulseaudio should have a hard dependency on the binary version of libpulse0
    to guard against libpulsecommon ABI breakage.

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 18 Feb 2013 09:43:39 +0000

pulseaudio (1:3.0-0ubuntu1) raring; urgency=low

  [ Luke Yelavich ]
  * debian/control: Update Vcs-Bzr field for raring
  * Bump upstream version and rules/shlib files to 3.0.

  [ David Henningsson ]
  * New upstream release (3.0)
  * 0100-resampler-Fix-volume-on-downmix-to-mono.patch,
    0101-alsa-mixer-Remove-analog-output-lfe-on-mono.patch,
    0010-lp453966-handle-digmic-pt2.patch:
    Dropped, applied upstream
  * 0002-In-KDE-only-start-pulseaudio-from-the-KDE-specific-d.patch:
    Dropped, Debian dropped it and we got it from there
  * 0002-add-padsp-wrapper-check.patch:
    Dropped, makes no sense now that OSS is disabled in the kernel
  * 0008-delay-gnome-autostart.patch:
    Dropped per Martin Pitt's recommendation (incompatible upstream change)
  * 0101-alsa-mixer-Fix-the-analog-output-speaker-always-path.patch,
    0102-Call-change_cb-only-when-there-s-an-actual-change.patch,
    0103-Initialize-monitor-s-busy-status-to-false-if-we-own-.patch:
    Added from upstream stable-3.x tree
  * Other patches refreshed
  * debian/control: PulseAudio binary package is no longer 
    "Multi-Arch: foreign" (LP: #1078543)
  * debian/control, pulseaudio-module-bluetooth.install:
    Update for new bluetooth dependency (libsbc)
  * debian/watch: Change to .xz by default (because Debian does)
  * debian/pulseaudio.init: Don't claim to support reload (Debian BTS: #690736)
  * debian/rules, debian/pulseaudio.manpages: Fix installation of default.pa
    (Debian BTS: #690416)
  * debian/rules: disable hal compat module
  * debian/pulse-alsa.conf, debian/README.Debian,
    debian/pulseaudio-esound-compat.links, debian/pulseaudio.init,
    debian/pulseaudio.install: Sync with Debian.
  * debian/manpages/esdcompat.1: Remove, already upstream.
  * debian/control: Sync build-dependencies with debian, in particular,
    - add fftw3 development library
  * debian/control: Cosmetic changes (sync with Debian)
  * debian/pulseaudio.postinst: Remove ancient upgrade stuff - we won't support
    direct upgrades from 8.04 to 13.04+ anyway

  [ Luke Yelavich ]
  * 0104-alsa-ucm-Fallback-to-stereo-duplex.patch: Added from upstrea git
    stable tree to fix ucm related issues.
  * Disable use of UCM in PulseAudio for now.

 -- Luke Yelavich <themuso@ubuntu.com>  Thu, 14 Feb 2013 12:05:20 +1100

pulseaudio (1:2.1-0ubuntu4) quantal-proposed; urgency=low

  * 0101-alsa-mixer-Remove-analog-output-lfe-on-mono.patch:
    Fix muted audio on startup in Virtualbox VM (LP: #1016969) 
  * 0020-stream-Return-error-in-case-a-client-peeks-to-early.patch:
    Fix clients crashing when asking for data, but there is no data
    to hand out (LP: #1058200) 

 -- David Henningsson <david.henningsson@canonical.com>  Thu, 04 Oct 2012 14:43:27 +0200

pulseaudio (1:2.1-0ubuntu3) quantal; urgency=low

  [ David Henningsson ]
  * 0100-resampler-Fix-volume-on-downmix-to-mono.patch:
    Fix clipped audio on downmix to mono (LP: #416190)

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 11 Sep 2012 09:24:29 +1000

pulseaudio (1:2.1-0ubuntu2) quantal; urgency=low

  * Merge changes that were accidentally squashed from 2.0-0ubuntu2.

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 13 Aug 2012 15:14:32 +1000

pulseaudio (1:2.1-0ubuntu1) quantal; urgency=low

  [ David Henningsson ]
  * Remove the old 01PulseAudio pm-utils script, since it
    causes (LP: #665314) and is not recommended by upstream.

  [ Luke Yelavich ]
  * New upstream release.
  * Dropped patches, applied upstream:
    - 0621-Add-special-profiles-for-some-laptops-missing-speake.patch

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 13 Aug 2012 15:05:52 +1000

pulseaudio (1:2.0-0ubuntu2) quantal; urgency=low

  * deprecate pulseaudio.default.  Move it's helpful comments into the upstart
    script.
  * pulseaudio.upstart:
    - replace mkdir/chmod/chown by install
    - remove PULSEAUDIO_SYSTEM_START=0, and instead comment out the 'start on'
      with a comment explaining how to re-enable
    - remove started udev from start on - it's redundant with runlevel 2, and
      would fail in the case of switching to runlevel 1 and back to 2.

 -- Serge Hallyn <serge.hallyn@ubuntu.com>  Fri, 20 Jul 2012 12:30:47 -0500

pulseaudio (1:2.0-0ubuntu1) quantal; urgency=low

  [ Luke Yelavich ]
  * New upstream release.
  * Drop all patches which are now upstream, including jack detection.
  * Refreshed patches:
    - 0002-add-padsp-wrapper-check.patch
    - 0005-dont-load-cork-music-on-phone.patch
  * debian/pulseaudio.install: Point to module-role-cork.so
  * debian/rules: pulse-1.1 -> pulse-2.0

  [ Pali Rohár ]
  * Convert System V pulseaudio init script to upstart

  [ Luke Yelavich ]
  * debian/libpulse0.install, debian/libpulsedsp.install:
    - Point to new location of libpulsecommon.
  * Ship new modules:
    - switch-on-port-available.so
    - virtual-surround-sink.so
  * Ship new manpages.
  * Switch to package version 3.0 quilt.

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 08 Jun 2012 15:51:39 +1000

pulseaudio (1:1.1-0ubuntu16) quantal; urgency=low

  [ Luke Yelavich ]
  * debian/control: Update Vcs-Bzr field for quantal.

  [ David Henningsson ]
  * 0621-Add-special-profiles-for-some-laptops-missing-speake.patch:
    Add missing speaker/internal mic ports for some laptops (LP #946232)

 -- David Henningsson <david.henningsson@canonical.com>  Mon, 28 May 2012 11:14:08 +0200

pulseaudio (1:1.1-0ubuntu15) precise; urgency=low

  * 0125-alsa-sink-source-Really-set-volumes-on-port-change.patch:
    Fix volume not being correctly set on port change. With this fixed
    we can also drop
    0017-Hack-around-a-bug-in-the-core-causing-volumes-not-to.patch.
  * 0022-allow-analog-input-path-for-no-volume.patch:
    Allow inputs with no volume controls to still have ports. The lack of
    ports caused a problem for the new sound settings UI (LP: #978109)
  * 0126-alsa-sink-source-Make-sure-volumes-are-synchronised-.patch:
    Fix volumes not synchronised in guest session (LP: #915035)

 -- David Henningsson <david.henningsson@canonical.com>  Thu, 12 Apr 2012 00:24:20 +0200

pulseaudio (1:1.1-0ubuntu14) precise; urgency=low

  * 012*.patch: Cherry-pick bugfix patches from upstream git
  * 0620-alsa-mixer-Show-HDMI-ports-for-older-Nvidia-cards.patch (LP: #961286)

 -- David Henningsson <david.henningsson@canonical.com>  Fri, 30 Mar 2012 09:47:17 +0200

pulseaudio (1:1.1-0ubuntu13) precise; urgency=low

  * 0020-daemon-Initialize-dbus-to-use-thread-safe-mode-by-de.patch:
    Make sure dbus is thread safe to avoid crashes in pa_make_realtime 
    (LP: #937933)
  * 0111-protocol-native-Protect-against-clients-trying-to-se.patch:
    Don't crash if clients try to set a NULL port (LP: #951273)
  * 0021-Fix-input-device-for-M-audio-fasttrack-pro.patch:
    Probe two different input devices (LP: #569932)
  * 0112-module-loopback-Never-call-adjust_rates-after-teardo.patch:
    Don't crash on shutdown in module-loopback (LP: #946400)
  * 0619-module-switch-on-port-available-Do-not-switch-profil.patch:
    Prevent switching to HDMI profiles from analog profiles, as a result
    of discussion on the pulseaudio-discuss and ubuntu-audio-dev mailinglist.

 -- David Henningsson <david.henningsson@canonical.com>  Wed, 21 Mar 2012 10:47:33 +0100

pulseaudio (1:1.1-0ubuntu12) precise; urgency=low

  [ Luke Yelavich ]
  * debian/control: Demote pulseaudio-esound-compat to suggests (LP: #930703)

  [ David Henningsson ]
  * 0110-flist-Avoid-the-ABA-problem.patch:
    Fix occasional crashes in pa_memblock_free, pa_memblock_ref and drop_block
    (LP: #924416)

 -- David Henningsson <david.henningsson@canonical.com>  Fri, 09 Mar 2012 00:08:42 +0100

pulseaudio (1:1.1-0ubuntu11) precise; urgency=low

  * Cherry-pick a few crash-related patches from upstream git
  * 0616-alsa-mixer-Make-speaker-get-available-no-when-headph.patch:
    Don't remove paths if the state(un)plugged of the jack differs (LP: 933825)  

 -- David Henningsson <david.henningsson@canonical.com>  Wed, 29 Feb 2012 11:03:32 +0100

pulseaudio (1:1.1-0ubuntu10) precise; urgency=low

  * debian/pulse-alsa.conf: Update syntax, as this file was throwing
    errors when apps used the alsa pulse plugin.

 -- Luke Yelavich <themuso@ubuntu.com>  Thu, 23 Feb 2012 14:58:36 +1100

pulseaudio (1:1.1-0ubuntu9) precise; urgency=low

  * debian/pulseaudio.init: Don't tell the user pulseaudio daemon isn't
    starting when in per-user mode.  This is the most common case in Ubuntu
    and causing needless distracting text on the screen. (LP: #656426)

 -- Mario Limonciello <Mario_Limonciello@Dell.com>  Fri, 17 Feb 2012 16:32:52 -0600

pulseaudio (1:1.1-0ubuntu8) precise; urgency=low

  [ David Henningsson ]
  * Make sure we switch away from unavailable ports at 
    startup (LP: #928914)
  * 0020-Fix-Darth-Vader-panning-bug.patch: 
    Fix distorted sound when panned hard left (or right). (LP: #928757)
  * 0618-alsa-mixer-Don-t-use-dangling-pointers-as-port-hashm.patch:
    Fix inability to set port when options were used (LP: #932804)
  * Minimize margins for deferred volumes, as a workaround for volume 
    changes being dropped on port change.
  * 0610-Jack-detection-kcontrol-implementation.patch:
    Fix a bug in the headphone path

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 17 Feb 2012 07:28:23 +1100

pulseaudio (1:1.1-0ubuntu7) precise; urgency=low

  * Move the pulse.conf ALSA config file to the correct location, alsa.conf.d
    not conf.d, thanks to Pete Graner for teh heads up.

 -- Luke Yelavich <themuso@ubuntu.com>  Thu, 09 Feb 2012 08:22:04 +1100

pulseaudio (1:1.1-0ubuntu6) precise; urgency=low

  [ David Henningsson ]
  * 0103-alsa-mixer-Allow-speaker-port-to-control-Front-Speak.patch:
    - Control "Front Speaker" and a few more. From upstream git. (LP: #551441)
  * 0105-loopback-Fix-crashes.patch:
    - Fix some crashes on shutting down the loopback module, from upstream git.
  * 0104-alsa-Improve-well-known-descriptions-for-ports.patch:
    - Replace with upstream version.
  * 0018-module-tunnel-source-fixup-create_record_stream.patch:
    - Fix protocol error in module-tunnel-source (LP: #923661)
  * Fixup HDMI patch to make sure it does not affect M-audio fasttrack Pro
    (LP: #926911)
  * Add two more jack detection patches to make it work better with the 
    upcoming UI changes

  [ Martin-Éric Racine ]
  * Use --disallow-exit when running in system mode, as recommended
    by PulseAudio log file (LP: #922848)  

  [ Luke Yelavich ]
  * Move the main pulse ALSA configuration file, pulse.conf to
    /usr/share/alsa/conf.d, available in ALSA 1.0.25.
  * Disable the dbus-protocol by default, as there have been recent reports
    of crashes and race conditions, and upstream no longer finds the code
    trustworthy.

 -- Luke Yelavich <themuso@ubuntu.com>  Wed, 08 Feb 2012 15:58:41 +1100

pulseaudio (1:1.1-0ubuntu5) precise; urgency=low
 
  * Redo jack detection patches, so that they use the new jack detection
    interface and the upstream code whenever possible.
  * New patch better-well-known-descriptions.patch:
    - Simplify port names. This patch is to be committed upstream shortly
  * New patches from upstream git:
    - 0101-alsa-Ignore-the-virtual-thinkpad-acpi-card.patch:
      Ignore the dummy thinkpad-acpi soundcard (as it cannot playback or
      record sound anyway)
    - 0102-alsa-mixer-When-selecting-an-input-turn-off-boosts-o.patch:
      alsa-mixer: When selecting an input, turn off boosts of
      other inputs

 -- David Henningsson <david.henningsson@canonical.com>  Fri, 27 Jan 2012 13:56:46 +0100

pulseaudio (1:1.1-0ubuntu4) precise; urgency=low

  [ Daniel T Chen ]
  * Don't load module-raop-discover by default. (LP: #782860)

  [ Gabor Kelemen ]
  * Run dh_translations to generate translation template, add it as build-dep.
    (LP: #876866)

 -- Luke Yelavich <themuso@ubuntu.com>  Wed, 14 Dec 2011 10:50:16 +1100

pulseaudio (1:1.1-0ubuntu3) precise; urgency=low

  * Allow pulseaudio-module-bluetooth to build on armhf.

 -- Adam Conrad <adconrad@ubuntu.com>  Mon, 05 Dec 2011 12:57:06 -0700

pulseaudio (1:1.1-0ubuntu2) precise; urgency=low

  * No-change rebuild to drop spurious libsfgcc1 dependency on armhf.

 -- Adam Conrad <adconrad@ubuntu.com>  Fri, 02 Dec 2011 17:31:22 -0700

pulseaudio (1:1.1-0ubuntu1) precise; urgency=low

  * New upstream release
  * debian/watch: Update to new location
  * Dropped patches, as these were from upstream:
    - 0100-extended-Fix-doxygen-comment-style-typos.patch
    - 0101-sink-source-Avoid-unnecessary-call-to-pa_rtclock_now.patch
    - 0102-Always-return-a-three-part-version-number-in-API-cal.patch
    - 0103-module-jackdbus-detect-Avoid-double-free-of-modargs.patch
    - 0104-source-output-Do-not-use-unset-channel-map-in-pa_sou.patch
    - 0105-Fix-deferred-volume-not-being-applied-if-sink-is-clo.patch
    - 0106-sink-Move-updating-the-requested-latency-after-the-r.patch
    - 0107-n ull-sink-Set-latency-range-at-the-time-of-initializ.patch
    - 0108-Make-pulse-build-with-clang-again.patch
    - 0109-alsa-Give-compressed-formats-preference-over-PCM.patch
    - 0110-alsa-Better-error-handling-in-mixer-rtpoll-callback.patch
    - 0111-echo-cancel-Fail-if-loaded-between-a-sink-and-its-mo.patch
    - 0112-doc-Add-some-more-doxygen-tags-to-existing-comments.patch
    - 0113-alsa-Make-mixer-error-handling-more-robust-still.patch
    - 0114-echo-cancel-Don-t-crash-if-adjust_time-0.patch
    - 0115-echo-cancel-Close-debug-files-on-module-unload.patch
    - 0116-tests-Fix-calculation-of-memblock-size-in-resampler-.patch
    - 0117-filter-apply-Move-sink-source-unlink-callbacks-befor.patch
    - 0118-build-sys-Drop-libsamplerate-from-pulsecommon-deps.patch
    - 0119-build-sys-Provide-a-simple-CMake-Config-setup-simila.patch
  * Put libpulsedsp.so into its own package, so it can be built for
    multi-arch
  * debian/rules: Update for 1.1
  * Update shlib files

 -- Luke Yelavich <themuso@ubuntu.com>  Thu, 27 Oct 2011 12:36:17 +1100

pulseaudio (1:1.0-0ubuntu4) precise; urgency=low

  [ David Henningsson ]
  * Added patches:
    0103-module-jackdbus-detect-Avoid-double-free-of-modargs.patch:
      (LP: #867444)
    0104-source-output-Do-not-use-unset-channel-map-in-pa_sou.patch: 
      (LP: #864071)
    0105-Fix-deferred-volume-not-being-applied-if-sink-is-clo.patch,
    0017-Hack-around-a-bug-in-the-core-causing-volumes-not-to.patch:
      These two patches affect users not having their volume correctly
      set on port change (LP: #877954)

  [ Luke Yelavich ]
  * debian/control: Update Vcs-Bzr field
  * 0102-Always-return-a-three-part-version-number-in-API-cal.patch: Refresh
    the patch from upstrea git, to refer to the correct commit hash, and
    update the description
  * Pull some bug fixes from the stable-1.x upstream git branch:
    - 411af6b (sink: Move updating the requested latency after the rewind
               request when finishing a stream move.)
    - 87f70c6 (null-sink: Set latency range at the time of initialization of
               module.)
    - d71a291 (Make pulse build with clang again)
    - 4e5943b (alsa: Give compressed formats preference over PCM)
    - 867170a (alsa: Better error handling in mixer rtpoll callback)
    - c055c55 (echo-cancel: Fail if loaded between a sink and its monitor)
    - 8754e0c (doc: Add some more doxygen tags to existing comments)
    - 2c30c07 (alsa: Make mixer error handling more robust still)
    - 8a5e6e8 (echo-cancel: Don't crash if adjust_time = 0)
    - 7b13a79 (echo-cancel: Close debug files on module unload)
    - 6bf0489 (tests: Fix calculation of memblock size in resampler-test)
    - 93f55a4 (filter-apply: Move sink/source unlink callbacks before m-s-r)
    - b1dabfb (build-sys: Drop libsamplerate from pulsecommon deps)
    - 743a4d0 (build-sys: Provide a simple CMake Config setup (similar to
               pkgconfig))
  * Add liborc-0.4-dev as a build dependency to add orc support
  * debian/libpulse-dev.install: Ship cmake files

 -- Luke Yelavich <themuso@ubuntu.com>  Thu, 20 Oct 2011 11:36:43 +1100

pulseaudio (1:1.0-0ubuntu3) oneiric; urgency=low

  * debian/patches/0102-Always-return-a-three-part-version-number-in-API
    -cal.patch: Update to fix skype regression as well (LP: #865820)

 -- David Henningsson <david.henningsson@canonical.com>  Thu, 06 Oct 2011 10:39:49 +0200

pulseaudio (1:1.0-0ubuntu2) oneiric; urgency=low

  [ Matthias Klose ]
  * Drop build dependency on libatomic-ops-dev. Not needed on !ia64.

  [ Scott Kitterman ]
  * Add debian/patches/0102-Always-return-a-three-part-version-number-in-API
    -cal.patch to fix regression in pulseaudio version detection by
    applications depending on the three part version number previously used by
    pulseaudio (including phonon)
      - Cherrypicked from upstream

 -- Scott Kitterman <scott@kitterman.com>  Tue, 04 Oct 2011 22:06:39 -0500

pulseaudio (1:1.0-0ubuntu1) oneiric; urgency=low

  [ David Henningsson ]
  * Fix "Parse failure" error with remote sources/sinks,
    thanks to Martin-Eric Racine for reporting/testing! (LP: #852902)
  * Fix crash when dbus module does not load (LP: #855729)
  * Add more bug fixes from upstream git

  [ Daniel T Chen ]
  * debian/copyright: Update all shipped sources
  * Various xcb_*() bugs already fixed in Sep 2010 (LP: #642030,
    LP: #646583, LP: #646616, LP: #648104)
  * Passthrough is supported in 1.0 (LP: #448024)
  * PulseAudio + alsa-plugins route through PulseAudio by default
    (LP: #378382)

  [ Luke Yelavich ]
  * New upstream bugfix release
    - vala: Add has_type_id=false to all enums, structs and classes
    - module-switch-on-connect: Don't switch unlinked sink input and source
      outputs
    - alsa-mixer: Set "Front" control to 0 dB on headphone path
    - module-equalizer-sink: Use %z for printf of size_t variables
    - module-equalizer-sink: Use = in initialising variables
    - bluetooth/sbc: Use __asm__ keyword
    - module-equalizer-sink: Use correct limit in loop
    - Squash the last gcc warnings
    - Make gcc --std=c99 happy
    - device-restore: Simplify the migration of data to per-port keys.
    - stream-restore: Add in some variable sets that were missing from 9ffa93.
    - stream-restore: Add proper data validity checks to the legacy database
      entry read.
    - formats: The format code should be in libpulse, not libpulsecommon
    - formats: Export more functions needed for a clean build.
    - device-restore: Fix use-after-free error.
    - raop: Use the port supplied by avahi when connecting to RAOP devices.
    - loopback: New modargs: sink_input_properties and
      source_output_properties.
    - bluetooth: Bump DBus version to 1.3.0 and drop conditional code.
    - alsa: Tidy up argument descriptions
    - module-suspend-on-idle: Move vacuum code to core
    - alsa-mixer: Add support for the Microsoft Kinect Sensor device
    - modargs: Ensure modargs can be accessed in their raw form.
    - raop: Properly deal with the name coming from the device.
    - build-sys: Oops forgot to add the Kinect profile to the build system.
    - volume: Rename 'sync volume' to 'deferred volume'.
    - raop: Don't crash if fd is not open when trying to close it
    - doc: Update README with fresh links.
    - doc: Add info about running pulseaudio from the build dir
    - stream: Relax assert for extended API
    - def: Hide server-side sink/source flags
    - volume: Handle varying channel count for shared volumes
    - virtual: Make volume sharing on by default
    - equalizer: Use volume sharing by default
    - echo-cancel: Use volume sharing by default
    - sink,source: Avoid crash by not updating volume on shutdown
    - conf: Make sure module-dbus-protocol is loaded after
      module-default-device-restore
    - build-sys: bump soname
    - sink,source: Handle missing in the shared volume case
    - dbus: Don't crash if the module does not load
    - Fix crash in threaded message queues
    - build-sys: Switch to the tar-ustar format (as per a lot of GNOME stuff
      for 3.2) and distribute .xz files.
    - build-sys: bump soname
  * Dropped patches, all applied upstream:
    - 0017-Avoid-crash-by-not-updating-volume-on-shutdown.patch
    - 0018-RAOP-Don-t-crash-if-fd-is-not-open-when-trying-to-cl.patch
    - 0019-Make-sure-module-dbus-protocol-is-loaded-after-modul.patch
    - 0100-vala-Add-has_type_id-false-to-all-enums-structs-and-.patch
    - 0101-module-switch-on-connect-Don-t-switch-unlinked-sink-.patch
    - 0102-alsa-mixer-Set-Front-control-to-0-dB-on-headphone-pa.patch
    - 0103-module-equalizer-sink-Use-z-for-printf-of-size_t-var.patch
    - 0104-module-equalizer-sink-Use-in-initialising-variables.patch
    - 0105-bluetooth-sbc-Use-__asm__-keyword.patch
    - 0106-module-equalizer-sink-Use-correct-limit-in-loop.patch
    - 0107-Squash-the-last-gcc-warnings.patch
    - 0108-Make-gcc-std-c99-happy.patch
    - 0109-device-restore-Simplify-the-migration-of-data-to-per.patch
    - 0110-stream-restore-Add-in-some-variable-sets-that-were-m.patch
    - 0111-stream-restore-Add-proper-data-validity-checks-to-th.patch
  * Pull some post-1.0 fixes from upstream git master
    - 6878140 (extended: Fix doxygen comment style typos)
    - 6a9272f (sink,source: Avoid unnecessary call to pa_rtclock_now())
  * debian/rules: Modules are now in a 1.0 directory
  * Update symbols

 -- Luke Yelavich <themuso@ubuntu.com>  Thu, 29 Sep 2011 10:01:56 +1000

pulseaudio (1:0.99.3-0ubuntu5) oneiric; urgency=low

  [ David Henningsson ]
  * 0017-Avoid-crash-by-not-updating-volume-on-shutdown.patch:
    Fix typo in patch

  [ Luke Yelavich ]
  * Patch from David Henningssen to make sure module-dbus-protocol is loaded
    after module-device-restore (LP: #843780)

 -- Luke Yelavich <themuso@ubuntu.com>  Thu, 15 Sep 2011 09:59:20 +1000

pulseaudio (1:0.99.3-0ubuntu4) oneiric; urgency=low

  * Fix crash in jack detection patches (LP: #845468)
  * Fix crash when reading volume when sink/source is unlinked (LP: #841968)
  * Fix crash in RAOP (LP: #845286)

 -- David Henningsson <david.henningsson@canonical.com>  Mon, 12 Sep 2011 10:29:00 +0200

pulseaudio (1:0.99.3-0ubuntu3) oneiric; urgency=low

  * Jack detection support, second version, now with HDMI support

 -- David Henningsson <david.henningsson@canonical.com>  Mon, 05 Sep 2011 16:41:12 +0200

pulseaudio (1:0.99.3-0ubuntu2) oneiric; urgency=low

  * Dropped patches (applied upstream):
    - 0004-mute-iec958-optical-raw-for-audigyX.patch
    - 0011-lp451635-handle-dove-x0-line-hp-swap.patch
    - 0012-JACK-Load-module-jackdbus-detect-in-default.pa.patch

 -- David Henningsson <david.henningsson@canonical.com>  Mon, 05 Sep 2011 11:55:59 +0200

pulseaudio (1:0.99.3-0ubuntu1) oneiric; urgency=low

  [ David Henningsson ]
  * 0018-alsa-mixer-Set-Front-control-to-0-dB-on-headphone-pa.patch:
    Set Front to 0 dB for Headphones (LP: #836921)

  [ Luke Yelavich ]
  * New upstream bugfix release
    - source: Remove the PA_SOURCE_PASSTHROUGH flag
    - alsa: Don't always suspend/unsuspend on sink-input removal
    - formats: Use correct API to check for passthrough streams
    - alsa: Open iec958 device with NONAUDIO bit set in passthrough mode
    - formats: Fix bad passsthrough check
    - alsa: Fix bad function name
    - daemon: Fix compiler warning about missing function prototype
    - passthrough: We must not plug in a resampler on stream move
    - sink-input: Ensure no volumes are applied for passthrough streams
    - source-output: Ensure no volumes are applied for passthrough streams
    - Revert "device-restore: Make bools not be bit fields"
    - sample-util: Fix off-by-one in error check
    - sink: Add PA_SINK_SET_FORMATS macro
    - build-sys: Fix some LDFLAGS vs. LDADD usage
    - echo-cancel: Add multiple include protection for header
    - echo-cancel: Use pa_streq instead of strcmp
    - echo-cancel: Move speex preprocessing out of the main module
    - passthrough: Fix what volume we set sinks/sources to
    - passthrough: Fix setting volume to unamplified again
    - echo-cancel: Make save_aec modarg a bool instead of an int
    - echo-cancel: Don't allow streams to attach while unloading
    - echo-cancel: Get rid of annoying compiler warnings
    - equalizer: Comment out unused function
    - def: Add a new enum to allow differntiation between sinks and sources.
    - dbus: Use pa_device_type_t rather than an internal equivalent
    - device-restore: Change the API to include type information (sink
      vs. source)
    - device-restore: Split device restore database into two parts.
    - device-restore: Restore volumes on port change.
    - build-sys: bump soname
    - alsa-mixer: Mute IEC958 optical raw for several Audigy models
    - alsa-mixer: Add "Line HP Swap" element
    - JACK: Load module-jackdbus-detect in default.pa
    - Remove offensive part of error message
    - switch-on-connect: Don't switch to a monitor source
    - Fix spelling sucess -> success
    - Set better priorities on input paths
    - introspect: fix typo in default sink/source docs
    - pacat: make pacat respond to cork/uncork events
    - Spelling fixes in public headers
    - More spelling fixes
    - gitignore: Add Orc autogenerated files
    - echo-cancel: Use stream index in debug message
    - Remove extra ; s where they are not allowed in strict C99
    - sndfile-util: Check return value of sf_command for errors
  * Pull some further fixes from upstream git master:
    - fb107fc (vala: Add has_type_id=false to all enums, structs and classes)
    - c7bba24 (module-switch-on-connect: Don't switch unlinked sink input and
               source outputs)
    - 9636991 (alsa-mixer: Set "Front" control to 0 dB on headphone path)
    - fc3ddfb (module-equalizer-sink: Use %z for printf of size_t variables)
    - 918f168 (module-equalizer-sink: Use = in initialising variables)
    - 3d04a05 (bluetooth/sbc: Use __asm__ keyword)
    - 647048e (module-equalizer-sink: Use correct limit in loop)
    - dfd706d (Squash the last gcc warnings)
    - 9133c6c (Make gcc --std=c99 happy)
    - 47c9d8c (device-restore: Simplify the migration of data to per-port keys.)
    - e7b65d3 (stream-restore: Add in some variable sets that were missing
               from 9ffa93.)
    - 2b96fdf (stream-restore: Add proper data validity checks to the legacy
               database entry read.)
  * Dropped patches, applied upstream:
    - 0017-Make-dbus-error-more-polite.patch
    - 0018-alsa-mixer-Set-Front-control-to-0-dB-on-headphone-pa.patch
    - 0400-introspect-fix-typo-in-default-sink-source-docs.patch
    - 0401-source-Remove-the-PA_SOURCE_PASSTHROUGH-flag.patch
    - 0402-alsa-Don-t-always-suspend-unsuspend-on-sink-input-re.patch
    - 0403-formats-Use-correct-API-to-check-for-passthrough-str.patch
  * 0604-ALSA-part-of-jack-detection-and-a-small-policy-modul.patch: Refreshed
  * Update symbols files

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 05 Sep 2011 14:37:01 +1000

pulseaudio (1:0.99.2-0ubuntu2) oneiric; urgency=low

  * Build-depend on libxcb1-dev (>= 1.6) rather than libxcb-atom1-dev, in
    line with the packaging in Debian experimental.
  * Build-depend on libtdb-dev rather than tdb-dev.

 -- Colin Watson <cjwatson@ubuntu.com>  Thu, 18 Aug 2011 16:10:53 +0100

pulseaudio (1:0.99.2-0ubuntu1) oneiric; urgency=low

  * New upstream bugfix release
  * 0005-dont-load-cork-music-on-phone.patch: Refreshed
  * Dropped patches, applied upstream
    - 0400-Fix-crash-in-path-subset-elimination.patch
    - 0402-source-output-Fix-resampling.patch
    - 0403-stream-restore-Save-restore-source-output-volume-mut.patch
  * Pull some post 0.99.2 fixes from upstream git master:
    - 7ed177d (introspect: fix typo in default sink/source docs)
    - 2677911 (source: Remove the PA_SOURCE_PASSTHROUGH flag)
    - dde09c7 (alsa: Don't always suspend/unsuspend on sink-input removal)
    - adbdb62 (formats: Use correct API to check for passthrough streams)

 -- Luke Yelavich <themuso@ubuntu.com>  Thu, 18 Aug 2011 09:17:09 +1000

pulseaudio (1:0.99.1-0ubuntu3) oneiric; urgency=low

  * debian/libpulse-glib-mainloop0.symbols: Fix a typo in the package name
    which was made at the time of symbol generation

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 16 Aug 2011 15:20:47 +1000

pulseaudio (1:0.99.1-0ubuntu2) oneiric; urgency=low

  * Build for multiarch:
    - libpulse{,-mainloop-glib}0{,-dbg} and libpulse-dev are Multi-Arch: same.
    - pulseaudio itself should be Multi-Arch: foreign, since it's a daemon.
    - drop dh-buildinfo build-dependency, incompatible with multiarch and not
      relevant in Ubuntu where we have build logs for all builds.
    - LP: #825342.

 -- Steve Langasek <steve.langasek@ubuntu.com>  Sat, 13 Aug 2011 02:22:42 +0000

pulseaudio (1:0.99.1-0ubuntu1) oneiric; urgency=low

  [ Daniel T Chen ]
  * 0017-Make-dbus-error-more-polite.patch: Remove language that doesn't
    add anything to the error message (LP: #444400).

  [ David Henningsson ]
  * New upstream release, remaining patches:
  * Add build dependency on libjson0-dev
  * Dropped patches (implemented upstream):
    0001-Work-around-some-platforms-not-having-O_CLOEXEC.patch
    0009-lp533877-handle-digmic.patch
    0015-alsa-mixer-Add-workaround-for-some-USB-headsets.patch
    0200-gold.patch
    0201-alsa-mixer-Add-a-few-well-known-descriptions.patch
    0202-alsa-mixer-add-required-any-and-required-for-enum-op.patch
    0203-alsa-mixer-always-round-towards-0-dB.patch
    0204-alsa-mixer-Add-new-paths-for-Internal-Mic-Front-Mic-.patch
    0205-alsa-mixer-Fixup-Mic-Line-analog-input-paths-to-work.patch
    0206-alsa-mixer-Make-sure-capture-source-and-input-source.patch
    0207-PulseAudio-added-IT-block-to-fix-thumb-conditional-i.patch
    0208-alsa-sink-Fix-incorrect-work_done-value-to-prevent-expensive-update...
    _smoother-calls.patch
    0209-sndfile-pacat-Use-file-extension-and-fix-format-from-string.patch
  * Refreshed patches:
    0005-dont-load-cork-music-on-phone.patch
    0012-JACK-Load-module-jackdbus-detect-in-default.pa.patch
    0013-Load-RAOP-Zeroconf-by-default.patch
    0014-alsa-mixer-Add-separate-profile-for-Nvidia.patch
    0017-Make-dbus-error-more-polite.patch
  * Upstream has removed libpulsebrowse, replace with dummy packages for the
    time being.
  * Updated shlibs files and debian/rules with new version number
  * Add new modules to the pulseaudio package
  * Initial pulseaudio support for jack detection

  [ Luke Yelavich ]
  * debian/control: Remove the libpulse-browse0 package, and add set
    pulseaudio to replace that package until after the next LTS
  * Add symbols files for libpulse0 and libpulse-mainloop-glib0 and adjust
    other shlibs files as necessary

 -- Luke Yelavich <themuso@ubuntu.com>  Thu, 11 Aug 2011 14:30:44 +1000

pulseaudio (1:0.9.23-0ubuntu2) oneiric; urgency=low

  [ Daniel T Chen ]
  * Add the following patches backported from upstream git:
    - aa7bc32 (parecord: Automatically detect file format from extension)
      [series patch 0208]
    - 226ddb1 (alsa-sink: fix mmap_write() work_done) [series patch 0209]
  * Update debian/copyright to cover echo-cancel files.

  [ Michael Terry ]
  * 0016-nodisplay-autostart.patch:
    - Don't show in "Startup Applications" (LP: #803917)

 -- Michael Terry <mterry@ubuntu.com>  Fri, 01 Jul 2011 12:56:15 +0100

pulseaudio (1:0.9.23-0ubuntu1) oneiric; urgency=low

  * New upstream release, the following commits from the stable-queue branch
    are included in this release:
    - d4c9ad1 (streams: Fix the actual resampler method shown in debug
               messages.)
    - cc91a8f (module-combine-sink: Initialize smoother with offset
               pa_rtclock_now())
    - 8a437ee (module-combine-sink: Initialize smoother in paused state)
    - b54a43a (module-combine-sink: Check running flag before rendering in null
               mode
    - b3e4152 (pulsecore: Add a couple pa_asserts() on pa_tagstruct* calls.)
    - 22c0dcb (device-manager: Free a hook slot to prevent segv on unload)
    - c3bfcc9 (SSE/MMX: Fix problem with highpitched noise on i386)
    - 9ee4229 (build-sys: Add echo-cancel dummy Makefile)
    - f558189 (build-sys: bump soname)
  * Bumped shlibs
  * debian/rules: Exclude 0.9.23 modules from shlibs

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 24 Jun 2011 10:18:17 +1000

pulseaudio (1:0.9.22+stable-queue-69-gf8e8-0ubuntu1) oneiric; urgency=low

  * Merge from unreleased Debian git, remaining changes:
    - epoch (my stupid fault :S)
    - use speex-float-1 and change buffer and fragment size, depending on
      architecture
    - Add alsa configuration files to route alsa applications via pulseaudio
    - Move libasound2-plugins from Recommends to Depends
    - Add pm-utils sleep hook to suspend (and resume) users' pulseaudio
      daemons
    - Make initscript more informative in the default case of per-user
      sessions
    - add status check for system wide pulseaudio instance
    - create /var/run/pulse, and make restart more robust
    - indicate that the system pulseaudio instance is being started from the
      init script
    - check whether pulseaudio is running before preloading the padsp library
    - Add DEB_OPT_FLAG = -O3 as per recommendation from
      pulseaudio-discuss/2007-December/001017.html
    - Generate a PO template on build
    - the esd wrapper script should not load pulseaudio if pulseaudio is being
      used as a system service
    - add a pulseaudio apport hook
    - drop padevchooser(Recommends) and pavucontrol (Suggests)
    - add libudev-dev as a build-dependency
    - Fix initialization of devices with modem subdevices
    - Disable cork-music-on-phone
    - disable flat volume
    - Mute IEC958 Optical Raw by default
    - use tdd instead of gdbm
    - Add conflicts/replaces for pulseaudio-module-udev and
      pulseaudio-module-rygel-media-server
    - Add replaces for pulseaudio-module-hal to the pulseaudio package to handle
      upgrades from hardy
    - Load module-x11-bell in the start-pulseaudio-x11 script
    - added IT block to fix thumb conditional instruction build error messages
    - recommend instead of suggest rtkit
    - Ship the jackdbus-detect module
    - Ship extra quirks to mixer profiles for various x86 and ARM hardware, as
      well as USB hardware
  * New snapshot based on upstream git branch stable-queue:
    - 4f67775 (http: support HTTP HEAD)
    - 3bb6546 (vala: More vala fixes)
    - 7fd0771 (x11: Fix build errors with newest xcb-util.)
    - b72fc9b (x11: More XCB fixes.)
    - f8e8a03 (rtkit: use private bus connection in order to avoid threading
               issues when invoking pa_make_realtime())
    - c524b4c (memblockq: implement new call pa_memblockq_peek_fixed_size())
    - 1a8cf00 (make echo-cancel module that exposes a new sink and source)
    - 9fa71e7 (echo-cancel: take into account snapshot delay)
    - 7b972f5 (echo-cancel: use the phone media role)
    - de6cdf9 (echo-cancel: tweak the resync code a little)
    - 1c26694 (echo-cancel: improve debug)
    - b30bf12 (echo-cancel: keep frame_size a power of 2)
    - 6d8a907 (echo-cancel: Move the module into it's own directory)
    - 57c5983 (echo-cancel: Split out speex code from the core module)
    - 668f4e4 (echo-cancel: Pass arguments to the specific canceller module)
    - c975dfa (echo-cancel: Let AEC module determine source/sink spec)
    - 47e4dd1 (echo-cancel: Add alternative echo-cancellation implementation)
    - 4a9fa8c (echo-cancel: Allow selection of AEC method using modargs)
    - b6b8a7b (echo-cancel: Make blocksize a module-wide parameter)
    - 2923c5e (echo-cancel: Mark immutable parameters as const in vfunc)
    - 9f79c0e (echo-cancel: rework alignment code)
    - 56a4684 (echo-cancel: improve accuracy)
    - e936447 (echo-cancel: pause timer when echo canceling is off)
    - d39043c (echo-cancel: Fix make distcheck)
    - d8fab84 (echo-cancel: Fix out-of-tree build)
    - 1212a6f (echo-cancel: Ensure correct handling of endianness)
    - d866ade (echo-cancel: Use S16NE for adrian module)
    - f93b5e1 (echo-cancel: Fix source may_move_to function)
    - 6664650 (i18n: Update POTFILES.*)
  * debian/libpulse-dev.install: Ship vala bindings
  * Dropped patches, either they were previously backported, or are now
    upstream:
    - 0005-load-sample-dir-lazy.patch
    - 0090-disable-flat-volumes.patch
    - 0211-module-loopback-Add-adjust_time-to-valid-args.patch
    - 0212-Limit-rate-adjustments-to-small-inaudible-jumps.patch
    - 0213-module-rtp-recv-Use-new-algorithm-for-adjusting-samp.patch
    - 0214-module-rtp-recv-Average-the-estimated-real-sample-ra.patch
    - 0215-module-rtp-recv-Remove-smoother-from-write-index.patch
    - 0216-conf-Make-system.pa-use-udev-detect-and-not-hal-dete.patch
    - 0217-volume-Add-a-PA_VOLUME_UI_MAX-define-for-the-recomme.patch
    - 0218-vala-Some-bugfixes-for-the-vala-bindings.patch
    - 0219-vala-delegate-FreeCb-does-not-have-a-target.patch
    - 0220-vala-move-GLibMainLoop-class-into-separate-file-to-f.patch
    - 0221-vala-Fix-path-error-in-the-last-commit.patch
    - 0222-build-sys-Link-binaries-linking-libpulse-to-libpulse.patch
    - 0223-build-sys-Link-binaries-linking-libpulsecommon-to-li.patch
    - 0224-build-sys-Link-lirc-libraries-in-right-order.patch
    - 0225-module-jack-sink-source-protect-against-null-return-.patch
    - 0226-vala-ChannelMap-has-no-destroy-function.patch
  * debian/patches/series: Renamed and re-ordered some patches, and clearly
    identified distro specific patches and upstream/upstreamable patches
  * 0209-alsa-mixer-Fix-makefile-in.patch: Drop, as we use dh-autoreconf,
    which takes care of this for us
  * debian/pulseaudio.install: Add the echo-cancel module
  * 0003-Mention-speex-and-libsamplerate-in-pulse-daemon.conf.patch: Drop,
    upstream

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 27 May 2011 14:05:01 +1000

pulseaudio (1:0.9.22+stable-queue-24-g67d18-0ubuntu4) oneiric; urgency=low

  [ David Henningsson ]
  * Fix missing Internal/Front/Rear mics on Nvidia chipsets (LP: #771739)

  [ Luke Yelavich ]
  * debian/control: Update Vcs-Bzr field

 -- David Henningsson <david.henningsson@canonical.com>  Thu, 28 Apr 2011 10:31:42 +0200

pulseaudio (1:0.9.22+stable-queue-24-g67d18-0ubuntu3) natty; urgency=low

  [ David Henningsson ]
  * Add separate profile for Nvidia to make it easier to select the right 
    codec out of four (LP: #716371)
  * Add workaround to make it possible to control the volume of some
    USB headsets (LP: #749856, LP: #671560)

  [ Luke Yelavich ]
  * debian/control: Demote pulseaudio-module-raop to suggests, as it is
    causing various issues, including crashers, (LP: #742281, #743073)
    and re-opens (LP #688272)
  * Pull some bugfixes from the stable-queue branch:
    - 4fa7495 (vala: Some bugfixes for the vala bindings)
    - ea0a2a6 (vala: delegate FreeCb does not have a target.)
    - 64985aa (vala: move GLibMainLoop class into separate file to fix linker
               errors)
    - 9f52c10 (vala: Fix path error in the last commit.)
    - 1ade8df (build-sys: Link binaries linking libpulse to libpulsecommon too)
    - c25207f (build-sys: Link binaries linking libpulsecommon to libpulse too)
    - 4be49ae (build-sys: Link lirc libraries in right order)
    - fd5b282 (module-jack-sink/source: protect against null return in
               jack_get_ports) (LP: #733424)
    - 93e7a19 (vala: ChannelMap has no destroy function.)
  * debian/patches/0097-explicitly-link-libraries.patch: Dropped, applied
    upstream
  * debian/control, debian/rules: Add dh-autoreconf

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 11 Apr 2011 16:58:14 +1000

pulseaudio (1:0.9.22+stable-queue-24-g67d18-0ubuntu2) natty; urgency=low

  * Update to latest stable queue patches:
    - 09770e5 (module-loopback: Add adjust_time to valid args
    - 90c5520 (Limit rate adjustments to small, inaudible jumps
    - 4620039 (module-rtp-recv: Use new algorithm for adjusting sample rate
    - 2bfc032 (module-rtp-recv: Average the estimated real sample rate
    - 2ee4ec5 (module-rtp-recv: Remove smoother from write index (LP: #569378)
    - a8cd9d2 (conf: Make system.pa use udev-detect and not hal-detect.
    - b872254 (volume: Add a PA_VOLUME_UI_MAX define for the recommended max
               volume to show in UIs)
  * 0210-PulseAudio-added-IT-block-to-fix-thumb-conditional-i.patch:
    - added IT block to fix thumb conditional instruction build error messages
  * debian/rules: Remove CFLAGS that are specific to arm, the above patch
    makes those redundant (LP: #721498)
  * debian/control: Add a dependency on pulseaudio-module-raop

 -- Luke Yelavich <themuso@ubuntu.com>  Thu, 10 Mar 2011 07:15:02 +1100

pulseaudio (1:0.9.22+stable-queue-24-g67d18-0ubuntu1) natty; urgency=low

  [ David Henningsson ]
  * debian/patches/020x patches - add PulseAudio input mixer rewrite.
    This will cause several HDA chips to have better named and controlled
    sliders on the input side. 

  [ Luke Yelavich ]
  * New upstream snapshot based on stable queue:
    - 67d1888 (client: Don't update smoother while corked)
    - 6b280e9 (Fighting rewinds: Reduce calls to handle_seek)
    - 3aeb047 (Fighting rewinds: Seek and write data in the same message)
    - 1e1b299 (Core: Fix incorrect check of return value)
    - 4080725 (tunnel: Fix automatic names when source/sink_name argument is
              missing.)
    - ec5a785 (ratelimit: fix log levels of log suppression messages)

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 18 Feb 2011 13:50:30 +1100

pulseaudio (1:0.9.22+stable-queue-18-geb966-0ubuntu2) natty; urgency=low

  * Fix FTBFS with ld.gold.

 -- Matthias Klose <doko@ubuntu.com>  Wed, 19 Jan 2011 06:57:29 +0100

pulseaudio (1:0.9.22+stable-queue-18-geb966-0ubuntu1) natty; urgency=low

  [ Daniel T Chen ]
  * debian/control: pulseaudio-module-zeroconf Depends on avahi-daemon
    (LP: #689093)
  * debian/patches/0101-update-stable-queue.patch: Apply 84c8b23c to
    resolve incorrect header being used for libsndfile seen with pacat
    --file-format (LP: #660504)
  * debian/patches/0104-Load-RAOP-Zeroconf-by-default.patch: Follow
    recommendation by Martin-Éric Racine to conditionally load support
    by default for streaming to an Apple Airport Express (LP: #688272)
  * debian/pulseaudio-utils.links: Also add pamon(1) and parecord(1)
    (Closes: #599696)

  [ David Henningsson ]
  * debian/pulse-alsa.conf: Add name hint for default pcm device,
    indicating that PulseAudio is active.

  [ Luke Yelavich ]
  * New upstream snapshot based on the stable queue branch:
    - eb966f7 (build-sys: Make --disable-dbus actually work.)
    - 8f8d247 (build-sys: Mention dbus support in the summary)
    - b3ff4f4 (build-sys: Put in specific warnings when there is no udev or
              DBUS support)
    - 862bbee (console-kit: Console Kit support is dependent on DBUS and is
              thus optional.)
    - 7cb1401 (padsp: wrap __open_2 and __open64_2)
    - 6f870f5 (fix bug about get source-output status)
    - 4269b05 (Fix typos)
    - 1c83b03 (Further clarify src- and speex- references in pulse-daemon.conf)
    - 84c8b23 (Fix return value of pa_sndfile_format_from_string)
    - d963b86 (core: Fix variable "has_whined" value bug)
    - 52e3268 (trivial: Mention speex as a resampler reference in
              pulse-daemon.conf)
    - 3e6af07 (module-loopback: Prevent an infinite loop when rate adjusting
              is disabled
  * 0101-update-stable-queue.patch and
    #0102-autoreconf.patch:
    - Disable for now, since latest stable queue are roled into the snapshot
      tarball

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 14 Jan 2011 10:03:49 -0600

pulseaudio (0.9.22-2) UNRELEASED; urgency=low

  * debian/control:
    + Fix typo in long description of pulseaudio-module-x11, thanks to
      Sam Morris (Closes: #500038)
    + Clarify long description of pulseaudio-esound-compat. Many apps
      still in use require functionality from this package
      (Closes: #601725)
  * debian/libpulse-dev.examples: Apply patch from Mario Lang to include
    simple examples in the dev package. Thanks! (Closes: #561258)
  * debian/patches/
    0003-Mention-speex-and-libsamplerate-in-pulse-daemon.conf.patch:
    + Mention speex in the resampling section. Currently the Resampler
      section of "Programming with Speex (the libspeex API)" contains
      the relevant information (Closes: #541206)
  * debian/pulseaudio-utils.links: Also add pamon(1), parec(1), and
    parecord(1) (Closes: #599696)
  * debian/README.Debian: Clarify historical pulse-rt use and document
    current recommendation of RealtimeKit (Closes: #548363)

 -- Daniel T Chen <crimsun@ubuntu.com>  Sat, 18 Dec 2010 20:26:47 -0500

pulseaudio (0.9.22-1) experimental; urgency=low

  * New upstream release
  * debian/patches/0002-CVE-2009-1299.patch:
    + Dropped, fixed upstream
  * debian/patches/0003-Re-bootstrap.patch
    + Dropped, not needed anymore
  * debian/rules: Stop using -g0 on mips{,el} the toolchain has been fixed
  * debian/rules, debian/control: Update build-depends and force building
    with X11
  * debian/control: Suggest rtkit
  * debian/control: Prune unneeded depends of libpulse-dev

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 05 Dec 2010 12:01:37 +0000

pulseaudio (1:0.9.22-0ubuntu3) natty; urgency=low

  * debian/pulseaudio-module-jack.install: Ship the jackdbus-detect module

 -- Luke Yelavich <themuso@ubuntu.com>  Wed, 08 Dec 2010 17:57:18 +1100

pulseaudio (1:0.9.22-0ubuntu2) natty; urgency=low

  * 0101-update-stable-queue.patch, update to latest stable queue:
    - 205cad6 (jack: Add module-jackdbus-detect
    - e9deb97 (build-sys: Include the .version file in the distribution
               tarball)
    - a1f1255 (build-sys: Fix make distcheck failure due to udev rules
               fixed install path)
    - 675cc0a (build-sys: Replace dummy Makefiles with proper Makefile.am's)
    - bd769fa (rescue-streams: Fix segfault in some conditions)
    - f6574c8 (volume: Add explicit checks for ARMv6 instructions)
  * 0102-autoreconf.patch: Re-generate autotools pieces for the above update
  * 0103-JACK-Load-module-jackdbus-detect-in-default.pa.patch: Enable jackdbus
    module by default for now, hopefully longer term there will be a better
    way to turn this module on/off

 -- Luke Yelavich <themuso@ubuntu.com>  Wed, 08 Dec 2010 16:58:27 +1100

pulseaudio (1:0.9.22-0ubuntu1) natty; urgency=low

  * New upstream release, based on the stable-queue branch
  * Drop following patches, as applied upstream:
    - 0101-alsa-mixer-add-profile-for-Native-Instruments-Koreco.patch
    - 0102-intended-roles-Mark-devices-with-a-form-factor-of-he.patch
  * debian/rules:
    - Disable --as-needed due to a circular dependency for libpulsecommon
    - Adjust filenames/paths for 0.9.22

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 26 Nov 2010 13:44:10 +1100

pulseaudio (1:0.9.22~0.9.21+stable-queue-98-ga8d7-0ubuntu3) natty; urgency=low

  * 0101-alsa-mixer-add-profile-for-Native-Instruments-Koreco.patch: Also
    adjust src/Makefile.in, so that the new profile actually gets shipped

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 05 Nov 2010 14:27:34 -0400

pulseaudio (1:0.9.22~0.9.21+stable-queue-98-ga8d7-0ubuntu2) natty; urgency=low

  * debian/control: Update Vcs-Bzr field
  * Pull latest fixes from stable queue:
    - 8a30d4c (alsa-mixer: add profile for Native Instruments Korecontroller)
    - 848dd37 (intended-roles: Mark devices with a form factor of 'headset' as
               being appropriate for 'phone' streams)

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 05 Nov 2010 10:40:47 -0400

pulseaudio (1:0.9.22~0.9.21+stable-queue-98-ga8d7-0ubuntu1) natty; urgency=low

  * New upstream snapshot, based on the stable-queue branch
  * debian/patches: Drop the following patches as they are applied upstream,
    or were created to regenerate autotools files/package version
    - 0090-use-volume-ignore-for-analog-output.patch
    - 0093-backport-fixes-stable-queue-head.patch
    - 0094-add-missing-mixer-paths-and-rerun-automake.patch
    - 0095-cve-2009-1299.patch
    - 0097-regenerate-configure.patch
    - 0098-tarball-version.patch
    - 0192-stream-restore-Clear-the-save_sink-save_source-flags.patch
    - 0193-augment-properties-Search-for-.desktop-files-in-subf.patch
    - 0194-device-manager-Ensure-that-sinks-sources-populate-th.patch
    - 0195-SSE-MMX-ARM-Fix-high-frequency-noise-with-unusual-nu.patch
  * debian/control: Update Vcs-Bzr link
  * 0097-explicitly-link-libraries.patch: Patch to explicitly link pulseaudio
    tests binaries against pulseaudio libraries, due to gcc 4.5 and new
    binutils in natty enforcing explicit linking

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 29 Oct 2010 12:39:27 -0400

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu21.1) maverick-proposed; urgency=low

  * 0195-SSE-MMX-ARM-Fix-high-frequency-noise-with-unusual-nu.patch:
    - Pull fix from the upstream stable-queue branch a8d76e9 to Fix a high
      frequency noise with an nunusual number of channels, when either SSE,
      MMX, or ARM optimized volume scaling code is used. (LP: #445849)

 -- Luke Yelavich <themuso@ubuntu.com>  Thu, 14 Oct 2010 16:38:46 +1100

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu21) maverick; urgency=low

  * Add 0192-stream-restore-Clear-the-save_sink-save_source-flags.patch
    Clear the save_sink/save_source flags on apply_entry.
  * Add 0193-augment-properties-Search-for-.desktop-files-in-subf.patch
    Search for .desktop files in subfolders too.
  * Add 0194-device-manager-Ensure-that-sinks-sources-populate-th.patch
    Ensure that sinks/sources populate the device manager lists in order
    of their priority.

 -- Jonathan Riddell <jriddell@ubuntu.com>  Sun, 03 Oct 2010 20:38:24 +0100

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu20) maverick; urgency=low

  * 0093-backport-fixes-stable-queue-head.patch: Backport the following
    changesets from the stable-queue branch:
    + 2c564f2 (xcb: Ensure the XCB connection is valid before using it.)
    + 5c0bc09 (xcb: xcb_get_setup() can return 0, so make sure we check it before using)
    + 165cb87 (x11: Use the default screen for X11 properties.)
    (LP: #640127)

 -- Daniel T Chen <crimsun@ubuntu.com>  Sat, 18 Sep 2010 08:46:31 -0400

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu19) maverick; urgency=low

  * Removed packaging for a patch that was being tested locally, as the
    patch is not going into maverick. Fixes FTBFS

 -- Luke Yelavich <themuso@ubuntu.com>  Wed, 15 Sep 2010 14:38:38 +1000

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu18) maverick; urgency=low

  [ Emmet Hikory ]
  * Drop 0001-change-resample-and-buffering.patch
  * debian/rules: Add arch-specific build-time configuration patching system
    - set resample-method to speex-fixed-1 and fragments to 2 for armel
    - set resample-method to speex-float-1 and fragments to 8 for other arches
    - Closes LP: #623242

  [ Luke Yelavich ]
  * debian/rules:
    - Back up src/daemon/daemon.conf.in, restoring on package clean, allowing
      the package to be built more than once, and keeping the diff sane
    - Disable flat volumes via regular expression instead of a patch, to
      prevent the mess that goes with touching a file multiple times, and
      with multiple methods
  * 0093-backport-fixes-stable-queue-head.patch: Backport the following
    changesets from the stable-queue branch:
    + 6c8660a (alsa: Fix assertion on mmap_write (triggered via a52 plugin))
    + aaae99d (alsa: disable rewinds when using ALSA plugins)
    + 4a1072e (udev: fix hex decoding)
    + 2b88634 (x11: Partially convert to XCB.)
    + 9375019 (alsa: resume smoother after unsuspend)
    + 4fb02d8 (alsa: increase the smoother window)
    + e2ef3a1 (alsa: don't make use of tsched related variables when tsched is
               disabled)
    + 514fd1e (add rewind-safeguard parameter)
    + 8748ebd (alsa-sink: Get rid of a compiler warning regarding
               rewind_safeguard type.)
    + a65825f (alsa: Set the rewind safeguard proportionally to sample spec)
    + 3d9b710 (smoother: avoid losing precision)
    + 1503b8c (alsa-source: refactor smoother and device start)
    + 74c117f (alsa-time-test: make test usable for capture too)
    + 1c29f55 (alsa: work around slightly broken _delay implementations)
    + 1ff360c (alsa: make defines for smoother configuration)
    + 28f4aeb (alsa-mixer: add profile for Traktor Kontrol S4)
    + eef247b (alsa: Only set the 'first' flag to false when we actually call
               snd_pcm_start())
  * debian/control: Add libxcb-atom1-dev and libx11-xcb-dev to build depends
  * debian/patches/0090-disable-flat-volumes.patch: Drop, as per above
  * debian/patches/0097-regenerate-configure.patch: Refreshed
  * debian/patches/0098-tarball-version.patch: Ensure the version string for
    pulseaudio internally stays the same, in case the build process wants
    to regenerate autotools files
  * debian/patches/0094-add-missing-mixer-paths-and-rerun-automake.patch:
    - Remove the patch to Makefile.in, easier to do it all at once in a
      single patch later in the series

 -- Luke Yelavich <themuso@ubuntu.com>  Wed, 15 Sep 2010 13:57:55 +1000

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu17) maverick; urgency=low

  * No-change rebuild to pick up new j-a-c-k shlibs

 -- Luke Yelavich <themuso@ubuntu.com>  Wed, 21 Jul 2010 11:29:18 +0200

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu16) maverick; urgency=low

  * Include /usr/bin/start-pulseaudio-kde and its autostart file now that KDE
    will be using PulseAudio by default in Maverick (LP: #563250)
  * Also update 0057-load-module-x11-bell.patch to give its improvements to
    /usr/bin/start-pulseaudio-kde as well

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Mon, 07 Jun 2010 18:32:53 -0400

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu15) maverick; urgency=low

  * 0093-backport-fixes-stable-queue-head.patch: Backport the following
    changesets from the stable-queue branch:
    + bc7314f (name all threads for /proc/$PID/task/$TID/comm)
    + d519ca4 (prevent crash on jack server shutdown) (LP: #538815)
    + 65f89dc (fix bracketing in pa_rtp_recv())
  * debian/01PulseAudio: modify the ConsoleKit active seat checks in the
    pm-utils hook so that:
    - pre-suspend: all users' sink & source states are stored, then only
      the active seat's sinks and sources are muted
    - post-resume: all users' sink & source pre-suspend states are
      restored
    This resolves the issue where users' post-resume sink & source
    states don't correspond with their pre-suspend ones.
    (LP: #569395)
  * debian/01PulseAudio: fix broken quoting and misuse of su -l. Merged
    from lp:~hyperair/pulseaudio/fix-01Pulseaudio-quoting. Thanks,
    Chow Loong Jin! (LP: #572391)
  * debian/control: Update bzr branch for maverick.

 -- Daniel T Chen <crimsun@ubuntu.com>  Sat, 08 May 2010 11:08:56 -0400

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14) lucid; urgency=low

  * 0096-lp451635-handle-dove-x0-line-hp-swap.patch: Make the connector
    work as intended: if 'Analog Output' is selected in the dropdown,
    then 'Line HP Swap' is muted; if 'Analog Headphones' is selected,
    then 'Line HP Swap' is unmuted. This better fits existing speaker
    semantics and actually works. Many thanks to Tobin Davis for
    helping chase this one. Really closes (LP: #451635)

 -- Daniel T Chen <crimsun@ubuntu.com>  Fri, 26 Mar 2010 15:18:35 -0700

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu13) lucid; urgency=low

  [ Daniel T Chen ]
  * 0093-backport-fixes-stable-queue-head.patch: Backport the following
    changesets from the stable-queue branch:
    + a7c1778 (don't pick monitor sources automatically for role-based
               device selection).
    + e8b83fa (handle asyncns failure when IPv6 is not supported in the
               kernel).
  * 0096-lp453966-handle-digmic-pt2.patch: Raise the priority of the
    'Digital Mic 1' digital input source for newer Dell laptops.
    (LP: #453966)
  * 0096-lp451635-handle-dove-x0-line-hp-swap.patch: Add 'Line HP Swap'
    to the Headphone profile. (LP: #451635)
  * debian/control: Update Vcs-Bzr to point to new branch that uses pack
    repo format 2a.

 -- Daniel T Chen <crimsun@ubuntu.com>  Thu, 25 Mar 2010 21:58:46 -0700

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu12) lucid; urgency=low

  * debian/pulseaudio.init: Remove udev from Required-* LSB headers
    (LP: #432301)
  * debian/patches/:
    + 0095-cve-2009-1299.patch: Fix insecure temporary file creation;
      pulled from upstream stable-queue d3efa43; CVE-2009-1299.
      (LP: #509008)
    + 0096-lp533877-handle-digmic.patch: Prefer the built-in digital
      mic on newer Dells, e.g., XPS 1330. (stable-queue 29845be)
      (LP: #533877)
    + 0097-regenerate-configure.patch: Apply changes from stable-queue
      f9b31fe (gobject linking) and d3efa43 above.

 -- Daniel T Chen <crimsun@ubuntu.com>  Wed, 10 Mar 2010 18:53:51 -0500

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu11) lucid; urgency=low

  * 0093-backport-fixes-stable-queue-head.patch: Backport the following
    changesets from the stable-queue branch:
    + 522c44 (strip spaces from ALSA card/pcm names)
    + 195069 (use pa_strip())
    + dd682d (reset max_rewind/max_request in sink while suspending)
    + 30f28e (fix wrong counters by using pa_memblockq_pop_missing() for
      all request handling)
    + 0d1154 (rework how stream volumes affect sink volumes)

 -- Daniel T Chen <crimsun@ubuntu.com>  Mon, 22 Feb 2010 00:22:50 -0500

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu10) lucid; urgency=low

  * 0093-backport-fixes-stable-queue-head.patch: Backport the following
    changesets from the stable-queue branch:
    + dfe27f (don't complain about missing SHM segments)
    + 5ce18c (fix definition of INVALID_INDEX for vala)
    + 6bbdd2 (fix definition of the GLib mainloop adapter for vala)
    + 3f44bf (Use "Subwoofer" in channelmap)
    + 117c99 (fix wrapping of port setting calls for vala)
    + ddabaa (explicitly mention 'test' role in proplist)
    + 8adf53 (increase verboseness when not restoring sink)
    + 180589 (use sample name for unmodified fallback)
    + f9b957 (don't queue cached sample when sink is suspended)
    + b2e9fb (pass buffer_attr to recording streams)
    + a469d4 (make devices resume for corked state to fix latency
      miscalculation) (LP: #511558)
    + 4a3210 (improve buffer_attrs logging)
  * 0094-add-missing-mixer-paths-and-rerun-automake.patch has been
    merged upstream (047e16f in the stable-queue branch), but we'll continue to
    carry it until the next stable tarball is rolled.

 -- Daniel T Chen <crimsun@ubuntu.com>  Sun, 21 Feb 2010 22:37:37 -0500

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu9) lucid; urgency=low

  * 0094-add-missing-mixer-paths-and-rerun-automake.patch: Fix missing paths
    elements that broke volume control.

 -- Daniel T Chen <crimsun@ubuntu.com>  Thu, 18 Feb 2010 23:56:42 -0500

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu8) lucid; urgency=low

  * Back out 307bd1 until we can roll a new tarball. Applying it to the
    current source package requires all sorts of nasty hacks.
    (LP: #523716)
  * Drop 0094-autoconf.patch, as it's no longer needed

 -- Daniel T Chen <crimsun@ubuntu.com>  Thu, 18 Feb 2010 07:32:58 -0500

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu7) lucid; urgency=low

  * debian/control: Since JACK has been approved for promotion back into
    main, add its packages
  * 0093-backport-fixes-stable-queue-head.patch: Backport the following
    changesets from the stable-queue branch:
    + 19fa81 (always fulfill write requests from the server)
    + 96ec29 (store away fd type for pacmd)
    + 6e064d (don't enter busy loop when reading from stdin very early)

 -- Daniel T Chen <crimsun@ubuntu.com>  Wed, 17 Feb 2010 22:33:34 -0500

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu6) lucid; urgency=low

  [ Daniel T Chen ]
  * pulseaudio.default: More clearly describe the conditions for
    autospawn to function correctly given the recent login-speedup work.
    (As a side effect, it now also lists what one needs to do to disable
    PA.)
  * 0093-backport-fixes-stable-queue-head.patch: Backport the following
    changesets from the stable-queue branch:
    + a631be (PA_SINK_INPUT_IS_LINKED typo fix)
    + e8cb96 ('Desktop Speaker' handling)
    + 7d6bab ('Shared Mic/Line in', 'Analog Source' handling)
    + 0c836a ('Internal Mic' handling)
    + 307bd1 (default output port names)
    + f9b31f (gobject explicit linking)
    + ff2474 (padsp handling of /dev/audio)
    + 96592c (dbus timeout callback timer fix)
    + 5e2af2 (logging of eventfd read failures)
  * 0094-autoconf.patch: Rerun autoconf given explicit gobject link
    addition; readd version string.

  [ Martin Pitt ]
  * 0092-delay-gnome-autostart.patch: Push it out a little further; the X11
    bell is not crucial at desktop startup, and it keeps other programs from
    doing more urgent initialization.

 -- Daniel T Chen <crimsun@ubuntu.com>  Mon, 08 Feb 2010 12:42:02 -0500

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu5) lucid; urgency=low

  * Add bzr-builddeb configuration (merge mode).
  * debian/control: Prefix the Debian git Vcs-* fields with XS-Debian-*, so
    that debcheckout on Ubuntu will actually work.
  * Add 0092-delay-gnome-autostart.patch: Delay applet startup by two seconds,
    so that pulseaudio has started up enough to avoid starting it a second
    time through autospawn.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Mon, 01 Feb 2010 18:12:13 -0800

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu4) lucid; urgency=low

  * debian/01PulseAudio: Break from state (re)store in the correct
    place!

 -- Daniel T Chen <crimsun@ubuntu.com>  Sun, 31 Jan 2010 13:44:57 -0500

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu3) lucid; urgency=low

  * debian/01PulseAudio:
    + Fix su(1) -c quoting (LP: #515038)
    + Now that PA only stores mixer state for the active CK seat, and
      because the active ConsoleKit seat is the only one we care about,
      we don't need to save all PA users' mixer states.  Thus, we can
      stop (re)storing state as soon as we've finished processing the
      active ConsoleKit seat, thereby further optimizing the suspend/
      resume speed.

 -- Daniel T Chen <crimsun@ubuntu.com>  Sun, 31 Jan 2010 13:16:46 -0500

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu2) lucid; urgency=low

  * debian/01PulseAudio: Use su(1) instead of sudo(8)
    (LP: #489144, #498980).
  * debian/patches/series: To trim the startup time, don't lazy-load
    sounds by not applying 0005-load-sample-dir-lazy.patch.
  * 0091-dont-load-cork-music-on-phone.patch: Refresh.
  * 0057-load-module-x11-bell.patch: Don't explicitly load the daemon
    since it will autospawn if necessary, and if the system or user
    configuration has autospawn disabled it breaks that semantics
    (LP: #513120).

 -- Daniel T Chen <crimsun@ubuntu.com>  Fri, 29 Jan 2010 14:37:52 -0500

pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu1) lucid; urgency=low

  * New snapshot of stable-queue branch as requested by upstream
  * debian/patches/0099-back-out-8d3566.patch: Drop. Seeking is fixed
    in the latest snapshot.
  * debian/pulseaudio.default: Update instructions for using system
    mode.

 -- Daniel T Chen <crimsun@ubuntu.com>  Sun, 17 Jan 2010 22:51:57 -0500

pulseaudio (1:0.9.22~0.9.21+stable-queue-24-gfa64-0ubuntu1) lucid; urgency=low

  * Reroll actual stable-queue tarball (arrrg!)
  * debian/01PulseAudio: Rework pacmd bits (LP: #507941)
  * debian/patches/:
    + add:  0099-back-out-8d3566.patch (upstream says this commit causes
            regressions)
    - drop: 0099-change-configure-git-version-tag.patch (no longer
            relevant)
    + refresh: 0001-change-resample-and-buffering.patch
               0054-mute-iec958-optical-raw-for-audigyX.patch
               0090-disable-flat-volumes.patch
               0091-dont-load-cork-music-on-phone.patch
               0057-load-module-x11-bell.patch

 -- Daniel T Chen <crimsun@ubuntu.com>  Fri, 15 Jan 2010 19:06:15 -0500

pulseaudio (1:0.9.22~0.9.21+341-g62bf-0ubuntu1) lucid; urgency=low

  * New snapshot based on stable-queue git branch (testing requested
    specifically by upstream)
    - LP: #164745, #173212, #201391, #204536, #207796, #210016, #221038,
    - LP: #226342, #230408, #236423, #237443, #250059, #269585, #274304,
    - LP: #274577, #275474, #277532, #277566, #277932, #278025, #280534,
    - LP: #283049, #286816, #287036, #292732, #298011, #298301, #300290,
    - LP: #302038, #311497, #311853, #324062, #339448, #344057, #348979,
    - LP: #350829, #356206, #367379, #367544, #369822, #371897, #374846,
    - LP: #375570, #381801, #399515, #402950, #403786, #408169, #409322,
    - LP: #409723, #410326, #410446, #417695, #417976, #419271, #421072,
    - LP: #422774, #423979, #424655, #425028, #427016, #431072, #432660,
    - LP: #437640, #437996, #442191, #443306, #443389, #446719, #449762,
    - LP: #455417, #461532, #464652, #483191, #497537, #503780
  * debian/patches/:
    + add: 0099-change-configure-git-version-tag.patch: Match released
           upstream 0.9.21 for shlibs and LIBPULSE_VERSION_INFO
    - drop: 0004-set-tsched0.patch (no longer relevant)
            0050-revert-pacmd-poll-argv.patch (no longer relevant)
            0056-dont-bail-on-sound-class-modem.patch (merged)
            0056-ignore-sound-class-modem.patch (merged)
            0058-Backport-4c793.patch (merged)
            0059-Backport-978d3.patch (merged)
            0060-fix-implicit-func-decl-cpu-arm.patch (merged)
            0061-Backport-c5fdb.patch (merged)
            0070-dont-bail-on-sound-class-modem-devs.patch (merged)
    + refresh: 0001-change-resample-and-buffering.patch
               0090-disable-flat-volumes.patch
               0091-dont-load-cork-music-on-phone.patch
               0057-load-module-x11-bell.patch

 -- Daniel T Chen <crimsun@ubuntu.com>  Thu, 14 Jan 2010 20:33:05 -0500

pulseaudio (0.9.21-3) unstable; urgency=low

  * debian/rules: Compile with -g0 on mips{,el} to work around #519006 in
    gcc-4.4

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 03 Jul 2010 15:12:54 +0100

pulseaudio (0.9.21-2) unstable; urgency=low

  * Import NMU patches into pkg-pulse git, thanks to the security team for
    their work!
  * debian/patches/0003-Re-bootstrap.patch
    + Added. Update configure so we don't have to re-run autotools when
    building the package (Closes: #576457, #576546, #576769)
  * Install a KDE specific startup file and module-device-manager.
    Thanks to Daniel Schaal and Zsolt Rizsanyi for patches and tips.
    (Closes: #570487)
  * d/p/0004-In-KDE-only-start-pulseaudio-from-the-KDE-specific-d.patch
    + Added. When running KDE use the KDE specific autostart desktop file
    instead of the generic pulseaudio-x11 file
  *  Fix two typos in debian/pulseaudio.default, patch by Paul Menzel
    (Closes: #566332)
  *  Prepare the debian package for building on HURD again (needs some upstream
     fixes as well). Patch by Pino Toscano (Closes: #573339)
  * Use the pulseaudio.1 manpage from the source tree instead of the older (and
    outdated) debian specific one.

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 27 Jun 2010 20:27:23 +0100

pulseaudio (0.9.21-1.2) unstable; urgency=high

  * Non-maintainer upload by the Security Team.
  * Added autoconf, automake, and libtool in Build-Depends to regenerate
    configure and auto* files at build time, and fixed a regression introduced
    in previous NMU (Closes: #576457)

 -- Giuseppe Iuculano <iuculano@debian.org>  Mon, 05 Apr 2010 23:02:56 +0200

pulseaudio (0.9.21-1.1) unstable; urgency=high

  * Non-maintainer upload.
  * Fix insecure temporary file creation security issue (closes: #573615).

 -- Michael Gilbert <michael.s.gilbert@gmail.com>  Sat, 27 Mar 2010 14:32:13 -0400

pulseaudio (0.9.21-1) unstable; urgency=low

  * New upstream release
  * d/p/0002-Fix-makefiles-to-include-all-alsa-path-files-on-inst.patch
    + Removed, merged upstream
  * debian/copyright: Updated
  * debian/rules: Fix build on arm (slightly changes target name)

 -- Sjoerd Simons <sjoerd@debian.org>  Mon, 23 Nov 2009 23:51:16 +0000

pulseaudio (1:0.9.21-0ubuntu6) lucid; urgency=low

  * Backport fix from master HEAD:
    + 0061-Backport-c5fdb.patch (LP: #502992)
  * The following patches have been merged upstream, but we'll continue
    to apply them here until the next upstream snapshot:
    . 0056-ignore-sound-class-modem.patch
    . 0060-fix-implicit-func-decl-cpu-arm.patch

 -- Daniel T Chen <crimsun@ubuntu.com>  Tue, 05 Jan 2010 18:34:40 -0500

pulseaudio (1:0.9.21-0ubuntu5) lucid; urgency=low

  * Refresh 0060-fix-implicit-func-decl-cpu-arm.patch with more FTBFS-
    on-armel fixes (all submitted upstream).

 -- Daniel T Chen <crimsun@ubuntu.com>  Thu, 17 Dec 2009 00:01:49 -0500

pulseaudio (1:0.9.21-0ubuntu4) lucid; urgency=low

  * 0060-fix-implicit-func-decl-cpu-arm.patch: Fix FTBFS on armel.

 -- Daniel T Chen <crimsun@ubuntu.com>  Wed, 16 Dec 2009 22:45:25 -0500

pulseaudio (1:0.9.21-0ubuntu3) lucid; urgency=low

  * 0070-dont-bail-on-sound-class-modem-devs.patch: Fix parameter
    in function call. Thanks to Whoopie for spotting.

 -- Daniel T Chen <crimsun@ubuntu.com>  Wed, 16 Dec 2009 20:13:43 -0500

pulseaudio (1:0.9.21-0ubuntu2) lucid; urgency=low

  * Fix LP: #394500, #450222:
    + 0070-dont-bail-on-sound-class-modem-devs.patch:
      + Add pa_udev_get_sysattr() helper function so that we can
        retrieve pcm_class.
      + Add short-circuit in is_card_busy(). Currently there is an
        incorrect break out of the loop when an HDA modem is driven by
        slmodemd/hsfmodem. An HDA modem resides in device 6 and will
        not contain "closed\n" for
        /proc/asound/card.../pcm.../sub.../status.
  * 0058-Backport-4c793.patch: Use pa_stream pointers to hashmaps
    instead of dynarrays.
  * 0059-Backport-978d3.patch: Mark shared variables as volatile
    to supress compiler optimizations.

 -- Daniel T Chen <crimsun@ubuntu.com>  Sun, 06 Dec 2009 19:40:04 -0500

pulseaudio (1:0.9.21-0ubuntu1) lucid; urgency=low

  [ Daniel T Chen ]
  * New upstream bugfix release
  * debian/control: pulseaudio-module-raop must Depends
    pulseaudio-module-zeroconf (LP: #484870). Thanks, Dominic Evans!
  * Bump for 0.9.21:
    + debian/libpulse0.shlibs
    + debian/pulseaudio.shlibs
    + debian/rules
  * debian/pulseaudio.install:
    debian/copyright: Amend for addition of:
    + module-device-manager.so
  * debian/README.Debian: Update for Ubuntu 9.04+.
  * 0002-Fix-makefiles-to-include-all-alsa-path-files-on-inst.patch:
    Drop, fixed upstream.
  * 0051-fix-sigfpe-mcalign.patch: Drop, needs fixing in alsa-kernel
    and alsa-lib.

  [ Chow Loong Jin ]
  * debian/01PulseAudio: Add/modify functions to (re)store sink/source
    state for (resume/)suspend (LP: #404986, #483900)

  [ Luke Yelavich ]
  * Remove wrapper scripts and accessibility special case, to help with the
    desktop startup time. The accessibility case should be solved in
    speech-dispatcher by the time lucid ships.
    - debian/patches/0006-a11y-special-case-disable.patch: Removed
    - debian/70pulseaudio: Removed
    - debian/pulse-session: Removed
    - debian/pulseaudio.install: Re-add the xdg autostart desktop file
    - debian/pulseaudio.preinst: Instead of removing the xdg autostart desktop
      file on upgrade, remove the 70pulseaudio X Session script on upgrade

 -- Daniel T Chen <crimsun@ubuntu.com>  Wed, 25 Nov 2009 16:34:54 -0500

pulseaudio (0.9.20-1) unstable; urgency=low

  * New upstream release
  * d/p/0002-Fix-makefiles-to-include-all-alsa-path-files-on-inst.patch
    + Added. Make sure all alsa path configuration files are installed

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 14 Nov 2009 22:50:52 +0000

pulseaudio (1:0.9.20-0ubuntu3) lucid; urgency=low

  * drop the enforced switch to ARMv6 in debian rules (we build for cortex-a8
    by default now).
  * Make sure the arm specific assembler code builds properly with thumb
    support by adding -Wa,-mimplicit-it=thumb instead until it is added to
    the default compiler flags (fixes FTBFS).

 -- Oliver Grawert <ogra@ubuntu.com>  Wed, 25 Nov 2009 14:16:59 +0100

pulseaudio (1:0.9.20-0ubuntu2) lucid; urgency=low

  * Add 0002-Fix-makefiles-to-include-all-alsa-path-files-on-inst.patch
    from Debian unstable (thanks, Sjoerd Simons!)
  * Fix 0055-handle-Master-Front.patch to handle only front elements
    based on comments from Lennart. The patch now does the right thing
    despite linux still doing the wrong thing, but at least we handle
    cases where linux will do the right thing.

 -- Daniel T Chen <crimsun@ubuntu.com>  Sun, 15 Nov 2009 13:45:49 -0500

pulseaudio (1:0.9.20-0ubuntu1) lucid; urgency=low

  * New upstream bugfix release
    + Fix BT validation (LP: #437293)
  * debian/control:
    + pulseaudio Provides pulseaudio-module-hal, pulseaudio-module-udev,
      and pulseaudio-module-rygel-media-server for upgrades (really
      fixes LP #477382)
  * debian/patches/:
    - 0002-work-around-suspend-on-idle-source-sink-race.patch:
    - 0052-revert-sse2-optimize.patch:
    - 0055-backport-alsa-bt-position-fixes-b3592a1.patch:
      Remove; applied upstream
    + 0054-mute-iec958-optical-raw-for-audigyX.patch: Refresh
    + 0055-handle-Master-Front.patch: For new VIA-based HDA, handle
      this mixer control until we've fixed it in linux (LP: #478868)
  * Bump for 0.9.20:
    + debian/libpulse0.shlibs
    + debian/pulseaudio.shlibs
    + debian/rules

 -- Daniel T Chen <crimsun@ubuntu.com>  Thu, 12 Nov 2009 19:19:21 -0500

pulseaudio (1:0.9.19-2ubuntu2) lucid; urgency=low

  * debian/control:
    + Promote pulseaudio-utils to Depends for pulseaudio so that the
      pm-utils script is present (LP: #478182)
    - Drop obsolete Depends on pulseaudio-module-udev for pulseaudio
      (LP: #477382)
  * debian/01PulseAudio: Don't fail suspend/resume when system-wide
    daemon is running (LP: #476505)

 -- Daniel T Chen <crimsun@ubuntu.com>  Fri, 06 Nov 2009 18:37:36 -0500

pulseaudio (1:0.9.19-2ubuntu1) lucid; urgency=low

  * Merge from Debian unstable, remaining changes:
    - epoch (my stupid fault :S)
    - Don't build against, and create jack package. Jack is not in main
    - use speex-float-1 resampler to work better with lack of PREEMPT in
      karmic's -generic kernel config, also change buffer size
    - Add alsa configuration files to route alsa applications via pulseaudio
    - Move libasound2-plugins from Recommends to Depends
    - Add pm-utils sleep hook to suspend (and resume) users' pulseaudio
      daemons
    - Make initscript more informative in the default case of per-user
      sessions
    - add status check for system wide pulseaudio instance
    - create /var/run/pulse, and make restart more robust
    - LSB {Required-*,Should-*} should specify hal instead of dbus,
      since hal is required (and already requires dbus)
    - indicate that the system pulseaudio instance is being started from the init
      script
    - Install more upstream man pages
    - Link to pacat for parec man page
    - check whether pulseaudio is running before preloading the padsp library
    - Add DEB_OPT_FLAG = -O3 as per recommendation from
      pulseaudio-discuss/2007-December/001017.html
    - cache /usr/share/sounds/ubuntu/stereo/ wav files on pulseaudio load
    - Generate a PO template on build
    - add special case to disable pulseaudio loading if accessibility/speech
      is being used
    - the esd wrapper script should not load pulseaudio if pulseaudio is being
      used as a system service
    - add a pulseaudio apport hook
    - fix some typos in README.Debian
    - drop padevchooser(Recommends) and pavucontrol (Suggests)
    - drop libasyncns-dev build dependency, its in universe
    - add libudev-dev as a build-dependency
    - Fix initialization of devices with modem subdevices
    - Backport ALSA BlueTOoth position fixes from git HEAD
    - Disable cork-music-on-phone
    - Revert sse2 optimizations
    - disable flat volume
    - Handle div by zero attempts
    - Mute IEC958 Optical Raw by default
    - use tdd instead of gdbm
  * debian/control:
    - Dro packages, due to debian including the files in these packages in the
      main pulseaudio package: pulseaudio-module-udev,
      pulseaudio-module-udev-dbg, pulseaudio-module-rygel-media-server,
      pulseaudio-module-rygel-media-server-dbg
    - Add conflicts/replaces for pulseaudio-module-udev and
      pulseaudio-module-rygel-media-server
    - Add replaces for pulseaudio-module-hal to the pulseaudio package to handle
      upgrades from hardy
    - Remove rtkit from conflicts, and add it to recommends, as 2.6.32 has the
      needed patches

  [ Daniel T Chen ]
  * 0057-load-module-x11-bell.patch: Load module-x11-bell in the
    start-pulseaudio-x11 script (LP: #301174)

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 06 Nov 2009 14:07:19 +1100

pulseaudio (0.9.19-2) unstable; urgency=low

  * Built with normal old-style hal support on kfreebsd and the hurd
  * debian/patches/0001-Work-around-some-platforms-not-having-O_CLOEXEC.patch:
    + Added. Don't use O_CLOEXEC on platforms that don't support it.
      (Closes: #550826)
  * debian/pulseaudio.install: Install pulse udev rules so device profiles can
    be matched with the few devices that need special tweaks
  * debian/pulseaudio.install: Add the rygel media server plugin, such that
    pulseaudio sources and sinks can be exposed over UPNP via rygel.

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 25 Oct 2009 13:43:06 +0000

pulseaudio (0.9.19-1) unstable; urgency=low

  * New upstream release
  * Remove patches that were merged upstream:
    d/p/0001-tunnel-fix-parsing-of-sink-info-from-newer-servers.patch
    d/p/0002-tunnel-fix-parsing-of-source-info-from-newer-servers.patch
    d/p/0003-svolume-tweak-constraints-for-32-bits.patch
  * Only compile the ARMv6 optimized code with -march=armv6  (Closes: #546322)
  * Depend on udev (>= 143) for device detection (Closes: #548821, #549001)
  * Update various shlibs files to use 0.9.19

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 03 Oct 2009 18:22:56 +0100

pulseaudio (1:0.9.19-0ubuntu4) karmic; urgency=low

  * Remove 0053-fix-sigsegv-module-bluetooth-device.patch, as it did
    more harm than good (reopens LP #437293).
  * debian/01PulseAudio: Fix bashisms, and make suspend/resume actually
    work with sudo -H -u (LP: #432096, #450461).

 -- Daniel T Chen <crimsun@ubuntu.com>  Tue, 20 Oct 2009 10:29:04 -0400

pulseaudio (1:0.9.19-0ubuntu3) karmic; urgency=low

  [ Tony Espy ]
  * debian/control: Add a Conflicts for rtkit so we force removal, and
    hence get more testing coverage between now and Karmic final (LP: #452458).

  [ Daniel T Chen ]
  * debian/patches/0056-ignore-sound-class-modem.patch:
    + Apply patch from Whoopie to fix initialization of devices with
      modem subdevices (LP: #394500, #450222)

 -- Tony Espy <espy@ubuntu.com>  Thu, 15 Oct 2009 15:33:02 -0400

pulseaudio (1:0.9.19-0ubuntu2) karmic; urgency=low

  * debian/control: Drop rtkit from recommends, as the kernel patches have
    not landed in karmic, so rtkit is currently useless.

 -- Luke Yelavich <themuso@ubuntu.com>  Wed, 14 Oct 2009 12:02:50 +1100

pulseaudio (1:0.9.19-0ubuntu1) karmic; urgency=low

  * New upstream bugfix release
  * debian/:
    . {libpulse0,pulseaudio}.shlibs:
    . shlibs{,_pulseaudio}.local:
    . rules: Update for new release
  * debian
    + pulseaudio.dirs:
    . patches/0006-a11y-special-case-disable.patch:
    . pulse-session: Use a system-wide flag to assist in fixing
      alsactl store race.
  * debian/patches/:
    - 0060-backport-c194d.patch: Drop, subsumed by new release
    + 0053-fix-sigsegv-module-bluetooth-device.patch: Don't strcmp
      uninitialized memory (LP: #437293)
    + 0055-backport-alsa-bt-position-fixes-b3592a1.patch: Apply the
      following changesets from origin/master HEAD for fixes:
      40c1ca76c48147c7648e1f1a72cc2c747f3d0c9b,
      7b682c969025845f75cbc74a9f830ad2dec8a415,
      c96d2d1117a7e59b351358c8cdd79ef465ddbd49,
      b3592a160f0d2a28605048a81c0261bf7c45acbb
    + 0091-dont-load-cork-music-on-phone.patch: Disable for Karmic;
      it's confusing users (LP: #437638)
  * Previous uploads resolved Launchpad bug reports:
    - LP: #434003 (crashed with SIGILL in pa_smoother_translate() )
    - LP: #437638 (cpulimit.c: Received request to terminate)

 -- Daniel T Chen <crimsun@ubuntu.com>  Tue, 06 Oct 2009 18:40:38 -0400

pulseaudio (0.9.18-1) unstable; urgency=low

  * New upstream release
  * d/p/0001-tunnel-fix-parsing-of-sink-info-from-newer-servers.patch
    + Added. Fix parsing of the sink info when using module-tunnel
      From the upstream 0.9.18-stable branch
  * d/p/0002-tunnel-fix-parsing-of-source-info-from-newer-servers.patch
    + Added. Fix parsing of the source info when using module-tunnel
      From the upstream 0.9.18-stable branch
  * d/p/0003-svolume-tweak-constraints-for-32-bits.patch
    + Added. Fixes gcc and the inline assembly using the same register.
      From the upstream 0.9.18-stable branch
  * debian/control: Build-Depend on libudev-dev instead of libhal-dev.
    Pulseaudio now uses udev for device detection (Closes: #546721)
  * debian/control: Enable hal->udev compat module
  * Update various shlibs files to use 0.9.18
  * debian/pulseaudio.install, debian/rules: Add udev and loopback modules
  * debian/pulseaudio-utils.install: Add pamon and parecord
  * debian/pulseaudio.install: Add dbus configuration file for system-wide
      pulse instance (Closes: #529989)
  * debian/control: Bump libsndfile1-dev build-depend to >= 1.0.20.
    (Closes: #546734)
  * debian/rules: Add -march=armv6 to the CFLAGS on arm and armel
    (Closes: #546322)

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 27 Sep 2009 23:46:37 +0200

pulseaudio (1:0.9.18-0ubuntu3) karmic; urgency=low

  * debian/patches/:
    + 0052-revert-sse2-optimize.patch: Revert 3d5a57 causing audio
      anomalies (LP: #428619)

 -- Daniel T Chen <crimsun@ubuntu.com>  Tue, 22 Sep 2009 22:19:42 -0400

pulseaudio (1:0.9.18-0ubuntu2) karmic; urgency=low

  * Remove epoch again, fixes FTBFs.

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 21 Sep 2009 11:12:00 +1000

pulseaudio (1:0.9.18-0ubuntu1) karmic; urgency=low

  [ Daniel T Chen ]
  * New upstream bugfix release
  * debian/patches/:
    - 0052-backport-56b6e18030.patch: Drop
    - 0053-fix-output-element.patch: Drop, applied upstream
    - 0090-use-volume-ignore-for-analog-output.patch: Stop applying
      this patch. Too many people are confused as to why PCM isn't
      being changed when they adjust PA's volume.
    + 0060-backport-c194d.patch: Backport fixes from 0.9.18-stable
      branch (to changeset c194db71b0ff853b4f46df26e135edf63b215451)
    + 0090-disable-flat-volumes.patch: Many people seem uncomfortable
      with PA's new default volume adjustment routine, so disable it
      in favour of the existing behaviour known in previous Ubuntu
      releases. The downside is that the user again has many knobs to
      fiddle; the upside is that applications can no longer drop the
      volume floor. This addresses LP: #403859, #433209.

  [ Luke Yelavich ]
  * debian/pulse-alsa.conf: Expose the pulse device to the ALSA name hint API.
    Thanks to David Henningsson <launchpad.web@epost.diwic.se> for the patch.
  * Add epoch to shlibs version definitions.

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 21 Sep 2009 10:28:25 +1000

pulseaudio (0.9.17-1) unstable; urgency=low

  * New upstream release
  * debian/copyright: updated
  * Update various shlibs files to use 0.9.17

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 12 Sep 2009 10:27:46 +0100

pulseaudio (1:0.9.17-0ubuntu2) karmic; urgency=low

  * debian/patches/:
    + 0051-fix-sigfpe-mcalign.patch: Handle div by zero attempts
      (LP: #412224)
    + 0052-backport-56b6e18030.patch: Backport fixes from git HEAD
      (56b6e18030b5a467946bd0a5803ec119efccdc8a)
    + 0053-fix-output-element.patch: Fix misspelling of Surround
    + 0054-mute-iec958-optical-raw-for-audigyX.patch: Mute
      IEC958 Optical Raw by default (LP: #400629, #408370)

 -- Daniel T Chen <crimsun@ubuntu.com>  Thu, 17 Sep 2009 19:57:15 -0400

pulseaudio (1:0.9.17-0ubuntu1) karmic; urgency=low

  [ Daniel T Chen ]
  * New upstream release

  [ Luke Yelavich ]
  * debian/rules: refer to the 0.9.17 directory
  * bump shlibs

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 14 Sep 2009 10:01:24 +1000

pulseaudio (0.9.16-1) unstable; urgency=low

  * New upstream release
  * debian/copyright: updated
  * debian/control: Remove the liboil build-dep
  * debian/libpulse0.shlibs: Bump to >= 0.9.16
  * debian/pulseaudio.postinst: No longer make pulseaudio suid and no longer
    create the pulse-rt group. Setting realtime priorities is now handled by
    rtkit.

 -- Sjoerd Simons <sjoerd@debian.org>  Thu, 10 Sep 2009 21:53:15 +0100

pulseaudio (1:0.9.16-0ubuntu1) karmic; urgency=low

  [ Daniel T Chen ]
  * debian/patches/0090-use-volume-ignore-for-analog-output.patch:
    + Realign volume control behaviour with existing Ubuntu releases,
      i.e., disable volume = merge and use volume = ignore for
      analog output

  [ Luke Yelavich ]
  * New upstream release
  * debian/patches/0057-introspect-version-fixes.patch (LP: #426210),
    debian/patches/0056-alsa-rework.patch,
    debian/patches/0055-llvm-clang-analyzer-fixes.patch,
    0054-volume-libpulse-backported-fixes.patch,
    0053-add-input-sources.patch,
    debian/patches/0052-disable-cpu-limit.patch: Dropped, all applied upstream
  * debian/patches/0051-reduce-lib-linking.patch: Drop, since we are not going
    to be doing bi-arch pulseaudio packages for karmic

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 11 Sep 2009 09:24:39 +1000

pulseaudio (1:0.9.16~test7-14-g7ca81-0ubuntu2) karmic; urgency=low

  * debian/control: Fix missing pulseaudio-module-rygel-media-server
    Depends thanks to lintian
  * debian/patches/0054-use-sse2-volume.patch:
    - Remove, resolved differently upstream (see below)
  * debian/patches/0054-volume-libpulse-backported-fixes.patch:
    + Add fixes from git HEAD:
      e6a666d8d5fffbc9847b51b35349b88d74970079 (PA_BYTES_SNPRINT_MAX)
      5cf0c1e544a5fce97d514c793256b2e301277136 (rearrange functions)
      508c462841fd087528649ed1ca3646363387bb5d:
         b5ac3839e18524524fa3e0da7ec68dbce16e8203 (remap/vol only SSE2)
         723499439f575f744f07c85a42b47d95cdc98de6 (init SSE2)
      3bbc5e6a4d0211d8cedd2fe6698c2e2c07d1c4b9 (add PA_VOLUME_INVALID)
      cc6c4fe91f916451bbea9073619c11a6b122b684 (check pa_volume_t args)
      9755bfa58af0c27b478d5d8cc56013527a6f660b (drop expensive checks)
      d000dd6f4b976894558613f69bdad2974cce7d1e (NULL chan map consist.)
      41a0dc1e9987ae00b605fd88bf887becbdf097d5 (log invalid fade/bal)
      08a4d57ce2f20173ea8a90e597a3ebcd28398242 (ok NULL proplist inv.)
  * debian/patches/0055-llvm-clang-analyzer-fixes.patch:
    + Add fixes from git HEAD:
      f5046759cdd72daf5ba3b31c9dfc7b8d5be6bc9b..
      7cc100d9e1d7093da44c8c83cbf61bb8c6000d9a

 -- Daniel T Chen <crimsun@ubuntu.com>  Tue, 08 Sep 2009 18:21:00 -0400

pulseaudio (1:0.9.16~test7-14-g7ca81-0ubuntu1) karmic; urgency=low

  * New git snapshot of origin/master (0.9.16~test7-14-g7ca81)
    fixes LP: #419658, #422451, #424127
  * debian/pulseaudio.install: add module-loopback
  * debian/control: remove liboil*-dev build-dependency thanks to
    included ASM optimisations
  * debian/copyright: update; we've added module-loopback
  * debian/patches/0052-disable-cpu-limit.patch: Disable cpu limit as
    per 812be327836c93492ad389333bcc037566141eb8
  * debian/patches/0053-add-input-sources.patch: Add internal mic and
    docking station as per 8cd635bc614834c13d0f1c586d472b4a52b98664
  * debian/patches/0054-use-sse2-volume.patch: Only use if SSE2 is
    available. This is a workaround for LP: #418448, thanks "knarf"!

 -- Daniel T Chen <crimsun@ubuntu.com>  Sun, 06 Sep 2009 14:23:15 -0400

pulseaudio (1:0.9.16~test6-3-g57e1-0ubuntu2) karmic; urgency=low

  * add -march=armv6 to compiler flags on armel, recent upstream changes
    make pulse fail building on anything below v6 (what a very bad idea !)

 -- Oliver Grawert <ogra@ubuntu.com>  Thu, 27 Aug 2009 16:25:15 +0200

pulseaudio (1:0.9.16~test6-3-g57e1-0ubuntu1) karmic; urgency=low

  [ Daniel T Chen ]
  * New git snapshot of origin/master (0.9.16~test6-3-g57e1)
  * debian/patches/:
    + 0050-revert-pacmd-poll-argv.patch: Retain, still seeing
      excessive cpu usage with resume
    - 0051-leave-hp-enabled.patch: Drop, applied upstream
    + 0051-reduce-lib-linking.patch: Refresh and rename previous
      0052-reduce.. so that minimal changes are made

  [ Luke Yelavich ]
  * debian/control: Promote rtkit from suggests to recommends

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 25 Aug 2009 09:44:32 +1000

pulseaudio (0.9.16~test5-1) experimental; urgency=low

  * New Upstream Version

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 22 Aug 2009 21:59:34 +0100

pulseaudio (1:0.9.16~test5-0ubuntu2) karmic; urgency=low

  [ Daniel T Chen ]
  * debian/patches/0051-leave-hp-enabled.patch: Leave
    headphones enabled in the default analog mixer profiles

  [ Luke Yelavich ]
  * debian/patches/0052-reduce-lib-linking.patch: Reduce the number of
    libraries that the libpulse libraries are linked against as much as
    possible, to lessen the work needed to make bi-arch libpulse packages
    in the future
  * Remove pulseaudio.desktop once again, as the a11y special case is
    not being honoured, and we have the Xsession.d script to start pulse
    for us, to avoid any races with other apps wanting to play sounds on
    session startup

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 21 Aug 2009 15:48:31 +1000

pulseaudio (1:0.9.16~test5-0ubuntu1) karmic; urgency=low

  * New upstream release
  * debian/patches/0050-backport-git-post-test4.patch: drop
  * debian/patches/0050-revert-pacmd-poll-argv.patch: revert pacmd
    changesets due to excessive cpu usage (poll()) with resume:
    - aae7054b1c442e62cc1154d15a4b7a569d60d8f4
    - 5fcb8a3c0838a4ecdb00a0af09b6e1a358b114d0
  * debian/01PulseAudio: Escape hash when passed to sudo -u
    (LP: #414385). Thanks, Christoph Kurrat and Dana Goyette!
  * debian/pulseaudio.init: Add NetworkManager to
    Should-St{art,op} to fix sink/source publishing with Avahi
    (LP: #413443). Thanks, Martin-Éric Racine!

 -- Daniel T Chen <crimsun@ubuntu.com>  Wed, 19 Aug 2009 17:43:48 -0400

pulseaudio (0.9.16~test4-1) experimental; urgency=low

  * New Upstream Version

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 09 Aug 2009 18:24:46 +0100

pulseaudio (1:0.9.16~test4-0ubuntu6) karmic; urgency=low

  * Correct changelog entry for 1:0.9.16~test4-0ubuntu5
    (5fcb8a3c0838a4ecdb00a0af09b6e1a358b114d0 was _not_
    applied)
  * Resync proper 0050-backport-git-post-test4.patch
    from the ~ubuntu-audio-dev PPA branch
  * debian/control: Drop libgdbm-dev; use tdb-dev instead
    since it's upstream's approach

 -- Daniel T Chen <crimsun@ubuntu.com>  Thu, 13 Aug 2009 22:49:07 -0400

pulseaudio (1:0.9.16~test4-0ubuntu5) karmic; urgency=low

  [ Daniel T Chen ]
  * 0050-backport-git-post-test4.patch: Add the following changesets
    from git (can be dropped with -test5):
    + 51b3899348bf29dd88b56691aeea9f57895dfd14
    + 7d4916379bbf05384ad199004949cc220822aa5f
    + 23a294c97e62e0bee9b17b1f8ad20a39e1ba15da
    + d27e26dca0b492b1906b42b2d0f7decd38ed8ae3
    + 462cdf44b7fe36768c836c90761f6b8153290517
    + e8340345f6a102cd03b6676576bcd3879ead7aad
    + 8998cba6839a46f11daec411c83a1b35723c5117
    + facae1f27504983d7eff7c7c3ffa864f7e002272
    + 9f53aa5546e7bf9246546c6dda5637d50679483c
    + ef176ecb62a8f04bd14ca37e7c2a40469f0bb8ba
    + 27b8cd783c2aedb23af8f88fc88632d5c4f387fd
    + 5921324fd3c16e2b3d38d07b200febd90835f169
    + 286ab2f19370c7a0041897435614b2c6aadc8e70
    + 17d57415f5abad5b7c30301227054b4c899bc705

  [ Luke Yelavich ]
  * debian/pulseaudio.install: Also add previously dropped 70pulseaudio file

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 14 Aug 2009 10:29:16 +1000

pulseaudio (1:0.9.16~test4-0ubuntu4) karmic; urgency=low

  * debian/pulseaudio.install: ...and also re-add droped apport hook, and
    alsa configuration files

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 07 Aug 2009 10:05:51 +0100

pulseaudio (1:0.9.16~test4-0ubuntu3) karmic; urgency=low

  * debian/pulseaudio.install: Also re-add pulse-session wrapper script

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 07 Aug 2009 09:41:15 +0100

pulseaudio (1:0.9.16~test4-0ubuntu2) karmic; urgency=low

  * debian/pulseaudio.install:
    - Re-add the pm-utils script that was inadvertantly left out with the
      previous Debian merge
    - Add udev rules from upstream, needed for particular sound hardware

 -- Luke Yelavich <themuso@ubuntu.com>  Thu, 06 Aug 2009 18:49:12 +0100

pulseaudio (1:0.9.16~test4-0ubuntu1) karmic; urgency=low

  * New upstream release
  * debian/patches/0008-clean-out-old-files.patch: Dropped, applied upstream
  * debian/control: Fix pulseaudio-module-rygel-media-server debug package name

 -- Luke Yelavich <themuso@ubuntu.com>  Wed, 05 Aug 2009 12:02:18 +0100

pulseaudio (1:0.9.16~test3-0ubuntu1) karmic; urgency=low

  * New upstream release
  * debian/pulseaudio.postinst:
    - Do not create the pulse-rt group any more
    - Do not make the pulseaudio binary suid root
  * debian/pulseaudio.postrm: Do not try to remove the pulse-rt group
  * debian/pulseaudio.preinst: Remove the pulse-rt group on upgrade
  * debian/control:
    - Suggest rtkit
    - Renamed pulseaudio-module-hal and pulseaudio-module-hal-dbg to
      pulseaudio-module-udev and pulseaudio-module-udev-dbg respectively
    - pulseaudio-module-udev replaces pulseaudio-module-hal
    - Bumped libudev-dev requirement to >= 143
    - Added build dependencies libICE-dev, libxi-dev, x11proto-core-dev
    - Add new package for the rygel-media-server module
    - Tighten libasound2-dev and libsndfile1-dev dependencies
  * debian/pulseaudio.init: Change all hal references to udev
  * debian/patches/0008-clean-out-old-files.patch: Remove non-existant files
    from POTFILES.in, patch sent upstream
  * Merge from Debian unstable, remaining changes:
    - epoch (my stupid fault :S)
    - Don't build against, and create jack package. Jack is not in main
    - use speex-float-1 resampler to work better with lack of PREEMPT in
      karmic's -generic kernel config, also change buffer size
    - Add alsa configuration files to route alsa applications via pulseaudio
    - Move libasound2-plugins from Recommends to Depends
    - Add pm-utils sleep hook to suspend (and resume) users' pulseaudio
      daemons
    - patch to fix source/sink and suspend-on-idle race
    - Make initscript more informative in the default case of per-user
      sessions
    - add status check for system wide pulseaudio instance
    - create /var/run/pulse, and make restart more robust
    - LSB {Required-*,Should-*} should specify hal instead of dbus,
      since hal is required (and already requires dbus)
    - indicate that the system pulseaudio instance is being started from the init
      script
    - Install more upstream man pages
    - Link to pacat for parec man page
    - check whether pulseaudio is running before preloading the padsp library
    - Add DEB_OPT_FLAG = -O3 as per recommendation from
      pulseaudio-discuss/2007-December/001017.html
    - cache /usr/share/sounds/ubuntu/stereo/ wav files on pulseaudio load
    - Generate a PO template on build
    - add special case to disable pulseaudio loading if accessibility/speech
      is being used
    - the esd wrapper script should not load pulseaudio if pulseaudio is being
      used as a system service
    - add a pulseaudio apport hook
    - fix some typos in README.Debian
    - drop padevchooser(Recommends) and pavucontrol (Suggests)
    - drop libasyncns-dev build dependency, its in universe
    - add libudev-dev as a build-dependency

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 04 Aug 2009 11:46:25 +0100

pulseaudio (0.9.16~test2~20090726git59659e1db-1) experimental; urgency=low

  * New Upstream Version
  * Ack NMU (Was fixed upstream in this version) (Closes: #537351)
  * Remove all patches, everything was merged upstream :)
  * debian/copyright: updated
  * debian/pulseaudio.install: Don't install the PolicyKit config file
  * debian/control: Removed build-dep on libpolkit-dbus-dev
  * Update various shlibs files to use 0.9.16
  * debian/pulseaudio.install: Install pulseaudio shared config files
  * debian/pulseaudio.instal: Add module-intended-roles
  * debian/control: Make pulseaudio-module-raop-dbg depend on
    pulseaudio-module-raop

 -- Sjoerd Simons <sjoerd@debian.org>  Tue, 28 Jul 2009 14:00:27 +0200

pulseaudio (0.9.15-4.1) unstable; urgency=high

  * Non-maintainer upload by the Security Team.
  * Fix race condition when reading /proc/self/exe and reloading the binary
    that leads to arbitrary code execution as pulseaudio is suid root
    + Use LDFLAGS to preload DSOs
    + regenerate autofoo
    (CVE-2009-1894; Closes: #537351).

 -- Nico Golde <nion@debian.org>  Fri, 24 Jul 2009 18:02:24 +0200

pulseaudio (1:0.9.15-4ubuntu3) karmic; urgency=low

  * debian/01PulseAudio: Mute sinks and sources prior to
    suspend; unmute sinks and sources after resume (LP: #404986)
  * debian/patches/series: Reenable glitch-free.

 -- Daniel T Chen <crimsun@ubuntu.com>  Mon, 27 Jul 2009 22:06:34 -0400

pulseaudio (1:0.9.15-4ubuntu2) karmic; urgency=low

  * SECURITY UPDATE: root escalation from BIND_NOW re-execution.
    - 0040-do-not-exec-for-bindnow.patch: use -Wl,-z,now instead of
      performing a racey re-exec.
    - CVE-2009-1894

 -- Kees Cook <kees@ubuntu.com>  Thu, 16 Jul 2009 10:03:46 -0700

pulseaudio (1:0.9.15-4ubuntu1) karmic; urgency=low

  [ Daniel T Chen ]
  * debian/patches/0001_change_resample_and_buffering.patch: Bump
    default resampler to speex-float-1 due to remaining audio
    anomalies when playing DVDs (LP: #376374)

  [ Luke Yelavich ]
  * Merge from Debian unstable, remaining changes:
    - epoch (my stupid fault :S)
    - Don't build against, and create jack package. Jack is not in main
    - use speex-float-1 resampler to work better with lack of PREEMPT in
      karmic's -generic kernel config, also change buffer size
    - Add alsa configuration files to route alsa applications via pulseaudio
    - Move libasound2-plugins from Recommends to Depends
    - Add pm-utils sleep hook to suspend (and resume) users' pulseaudio
      daemons
    - patch to fix source/sink and suspend-on-idle race
    - Make initscript more informative in the default case of per-user
      sessions
    - add status check for system wide pulseaudio instance
    - create /var/run/pulse, and make restart more robust
    - LSB {Required-*,Should-*} should specify hal instead of dbus,
      since hal is required (and already requires dbus)
    - indicate that the system pulseaudio instance is being started from the init
      script
    - Install more upstream man pages
    - Link to pacat for parec man page
    - check whether pulseaudio is running before preloading the padsp library
    - Add DEB_OPT_FLAG = -O3 as per recommendation from
      pulseaudio-discuss/2007-December/001017.html
    - cache /usr/share/sounds/ubuntu/stereo/ wav files on pulseaudio load
    - disable glitch free (use tsched=0)
    - Generate a PO template on build
    - add special case to disable pulseaud  * debian/patches/0090-fix-sw-mute-desync.patch: Dropped, as this is included
    in the recently added patches in Debian.io loading if accessibility/speech
      is being used
    - the esd wrapper script should not load pulseaudio if pulseaudio is being
      used as a system service
    - add a pulseaudio apport hook
    - fix some typos in README.Debian
    - drop padevchooser(Recommends) and pavucontrol (Suggests)
    - drop libasyncns-dev build dependency, its in universe
    - add libudev-dev as a build-dependency
  * debian/patches/0090-fix-sw-mute-desync.patch: Dropped, as this is included
    in the recently added patches in Debian.

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 22 Jun 2009 11:17:06 +1000

pulseaudio (0.9.15-4) unstable; urgency=low

  * Synchronize our patches with Mandriva and Fedora (thanks to Colin Guthrie
    and Lennart Poettering)
    - 0002-util-if-NULL-is-passed-to-pa_path_get_filename-just-.patch
    - 0003-alsa-don-t-hit-an-assert-when-invalid-module-argumen.patch
    - 0004-alsa-fix-wording-we-are-speaking-of-card-profiles-no.patch
    - 0005-alsa-initialize-buffer-size-before-number-of-periods.patch
    - 0006-conf-remove-obsolete-module-idle-time-directive-from.patch
    - 0007-core-make-sure-soft-mute-status-stays-in-sync-with-h.patch
      + Ensure hw and software mute states stay in sync
        (Closes: #525572, #522177)
    - 0008-endian-fix-LE-BE-order-for-24-bit-accessor-functions.patch
    - 0009-log-print-file-name-only-when-we-have-it.patch
    - 0010-man-document-24bit-sample-types-in-man-page.patch
    - 0011-man-document-log-related-daemon.conf-options.patch
    - 0012-man-document-that-tsched-doesn-t-use-fragment-settin.patch
    - 0013-mutex-when-we-fail-to-fill-in-mutex-into-static-mute.patch
    - 0014-oss-don-t-deadlock-when-we-try-to-resume-an-OSS-devi.patch
    - 0015-simple-protocol-don-t-hit-an-assert-when-we-call-con.patch
    - 0016-idxset-add-enumeration-macro-PA_IDXSET_FOREACH.patch
    - 0017-rescue-streams-when-one-stream-move-fails-try-to-con.patch
    - 0018-sample-correctly-pass-s24-32-formats.patch
    - 0019-sample-util-fix-iteration-loop-when-adjusting-volume.patch
    - 0020-sample-util-properly-allocate-silence-block-for-s24-.patch
    - 0021-sconv-fix-a-few-minor-conversion-issues.patch
    - 0022-alsa-be-a-bit-more-verbose-when-a-hwparam-call-fails.patch
    - 0023-rescue-make-we-don-t-end-up-in-an-endless-loop-when-.patch
    - 0024-core-introduce-pa_-sink-source-_set_fixed_latency.patch
    - 0025-core-cache-requested-latency-only-when-we-are-runnin.patch
    - 0026-sample-fix-build-on-BE-archs.patch
    - 0027-alsa-properly-convert-return-values-of-snd_strerror-.patch
    - 0028-alsa-remove-debug-code.patch

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 21 Jun 2009 15:40:33 +0100

pulseaudio (1:0.9.15-3ubuntu1) karmic; urgency=low

  [ Daniel T Chen ]
  * debian/patches/0001_change_resample_and_buffering.patch: Bump
    default resampler to ffmpeg. We cannot peg the cpu, and we cannot
    have audio anomalies, so this change _should_ be regression-free
    but needs extensive testing (LP: #376374).
  * debian/patches/0090_fix_sw_mute_desync.patch: Backport from
    git HEAD to resolve sw vol becoming muted on logout
    (LP: #315971, #352732)

  [ Luke Yelavich ]
  * Merge from Debian unstable, remaining changes:
    - epoch (my stupid fault :S)
    - Don't build against, and create jack package. Jack is not in main
    - use ffmpeg resampler to work better with lack of PREEMPT in jaunty's
      -generic kernel config, also change buffer size
    - Add alsa configuration files to route alsa applications via pulseaudio
    - Move libasound2-plugins from Recommends to Depends
    - Add pm-utils sleep hook to suspend (and resume) users' pulseaudio
      daemons
    - patch to fix source/sink and suspend-on-idle race
    - Make initscript more informative in the default case of per-user
      sessions
    - add status check for system wide pulseaudio instance
    - create /var/run/pulse, and make restart more robust
    - LSB {Required-*,Should-*} should specify hal instead of dbus,
      since hal is required (and already requires dbus)
    - indicate that the system pulseaudio instance is being started from the init
      script
    - Install more upstream man pages
    - Link to pacat for parec man page
    - check whether pulseaudio is running before preloading the padsp library
    - Add DEB_OPT_FLAG = -O3 as per recommendation from
      pulseaudio-discuss/2007-December/001017.html
    - cache /usr/share/sounds/ubuntu/stereo/ wav files on pulseaudio load
    - disable glitch free (use tsched=0)
    - Generate a PO template on build
    - add special case to disable pulseaudio loading if accessibility/speech
      is being used
    - the esd wrapper script should not load pulseaudio if pulseaudio is being
      used as a system service
    - add a pulseaudio apport hook
    - fix some typos in README.Debian
    - drop padevchooser(Recommends) and pavucontrol (Suggests)
    - drop libasyncns-dev build dependency, its in universe
    - add libudev-dev as a build-dependency

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 09 Jun 2009 10:47:05 +1000

pulseaudio (0.9.15-3) unstable; urgency=low

  * Re-enable bluetooth support (Closes: #530514)
  * No longer recommend padevchooser and let paprefs be a suggest
    (Closes: #530810)
  * 0001-alsa-allow-configuration-of-fallback-device-strings-.patch
    - Added. Support alsa devices which only have the raw hw device, but no
      front device even though they can do 2ch stereo (from upstream git)
  * Add support for the status action in the init script, patch by Peter
    Eisentraut (Closes: #527333)
  * Change the libjack0.100.0-dev build-depend to libjack-dev as per request of
    the debian multimedia maintainers (Closes: #527424)
  * Prevent the default.pa manpage from being installed as part of the pa
    locale (Closes: #508874)

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 07 Jun 2009 22:30:33 +0100

pulseaudio (1:0.9.15-2ubuntu1) karmic; urgency=low

  * Merge from Debian unstable, remaining changes:
    - epoch (my stupid fault :S)
    - Don't build against, and create jack package. Jack is not in main
    - use linear resampler to work better with lack of PREEMPT in jaunty's
      -generic kernel config, also change buffer size
    - Add alsa configuration files to route alsa applications via pulseaudio
    - Move libasound2-plugins from Recommends to Depends
    - Add pm-utils sleep hook to suspend (and resume) users' pulseaudio
      daemons
    - patch to fix source/sink and suspend-on-idle race
    - Make initscript more informative in the default case of per-user
      sessions
    - create /var/run/pulse, and make restart more robust
    - add status check for system wide pulseaudio instance
    - LSB {Required-*,Should-*} should specify hal instead of dbus,
      since hal is required (and already requires dbus)
    - indicate that the system pulseaudio instance is being started from the init
      script
    - Install more upstream man pages
    - Link to pacat for parec man page
    - check whether pulseaudio is running before preloading the padsp library
    - Add DEB_OPT_FLAG = -O3 as per recommendation from
      pulseaudio-discuss/2007-December/001017.html
    - cache /usr/share/sounds/ubuntu/stereo/ wav files on pulseaudio load
    - disable glitch free (use tsched=0)
    - Generate a PO template on build
    - add special case to disable pulseaudio loading if accessibility/speech
      is being used
    - the sd wrapper script should not load pulseaudio if pulseaudio is being
      used as a system service
    - add a pulseaudio apport hook
    - fix some typos in README.Debian
    - demote paprefs to suggests
    - drop padevchooser(Recommends) and pavucontrol (Suggests)
    - drop libasyncns-dev build dependency, its in universe
    - add libudev-dev as a build-dependency
    - Retain libbluetooth-dev build dependency
  * debian/01Pulseaudio: Harvist users by UID, and not username, to ensure
    that the script doesn't choak on characters not already considered as
    used in a username (LP: #374694)

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 26 May 2009 23:33:42 +0200

pulseaudio (0.9.15-2) unstable; urgency=low

  * debian/control: Add strict dependencies from libpulse-dev to the various
    libraries (Closes: #525759)
  * Add local shlib files to ensure the correct dependencies get generated
    (Closes: #528405)

 -- Sjoerd Simons <sjoerd@debian.org>  Thu, 21 May 2009 00:54:38 +0100

pulseaudio (1:0.9.15-1ubuntu3) karmic; urgency=low

  * debian/control: libltdl7-dev -> libltdl-dev

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 11 May 2009 12:33:08 +1000

pulseaudio (1:0.9.15-1ubuntu2) karmic; urgency=low

  * debian/01PulseAudio: harvest users more robustly. Thanks,
    Chow Loong Jin <hyperair@gmail.com>! (LP: #202089)
  * debian/control: pulseaudio depends on pulseaudio-module-hal
    to fix LP: #326532

 -- Daniel T Chen <crimsun@ubuntu.com>  Thu, 09 Apr 2009 17:03:00 -0400

pulseaudio (1:0.9.15-1ubuntu1) karmic; urgency=low

  * Merge from unreleased Debian pulseaudio git, remaining changes:
    - epoch (my stupid fault :S)
    - Don't build against, and create jack package. Jack is not in main
    - use linear resampler to work better with lack of PREEMPT in jaunty's
      -generic kernel config, also change buffer size
    - Add alsa configuration files to route alsa applications via pulseaudio
    - Move libasound2-plugins from Recommends to Depends
    - Add pm-utils sleep hook to suspend (and resume) users' pulseaudio
      daemons
    - patch to fix source/sink and suspend-on-idle race
    - Make initscript more informative in the default case of per-user
      sessions
    - create /var/run/pulse, and make restart more robust
    - add status check for system wide pulseaudio instance
    - LSB {Required-*,Should-*} should specify hal instead of dbus,
      since hal is required (and already requires dbus)
    - indicate that the system pulseaudio instance is being started from the init
      script
    - Install more upstream man pages
    - Link to pacat for parec man page
    - check whether pulseaudio is running before preloading the padsp library
    - Add DEB_OPT_FLAG = -O3 as per recommendation from
      pulseaudio-discuss/2007-December/001017.html
    - cache /usr/share/sounds/ubuntu/stereo/ wav files on pulseaudio load
    - disable glitch free (use tsched=0)
    - Generate a PO template on build
    - add special case to disable pulseaudio loading if accessibility/speech
      is being used
    - the sd wrapper script should not load pulseaudio if pulseaudio is being
      used as a system service
    - add a pulseaudio apport hook
    - fix some typos in README.Debian
    - demote paprefs to suggests
    - drop padevchooser(Recommends) and pavucontrol (Suggests)
    - drop libasyncns-dev build dependency, its in universe
  * add libudev-dev as a build-dependency

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 05 May 2009 14:18:20 +1000

pulseaudio (0.9.15-1) unstable; urgency=low

  * debian/control: Build-Depend on libcap-dev instead of libcap2-dev
  * New Upstream Version
  * Fixes building on HPPA (Closes: #520378)
  * Fixes building with recent libtool (Closes: #522716)
  * Update copyright file
  * Updated pulseaudio-module-hal.install, dbus-util became part of pulsecore
  * Move debug package to the debug Section
  * Done make shlibs files for modules in /usr/lib/pulse-0.9.15
  * Update standards-version to 3.8.1, no further changes
  * Set priority of pulseaudio-module-raop-dbg to extra
  * Change build-depend on libltdl7-dev to recent versions libltdl-dev
  * Add Breaks to libpulse0 for old version of pavucontrol
  * Temporarily disable bluetooth support as the needed bluez version is stuck
    in the NEW queue

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 19 Apr 2009 14:43:41 +0100

pulseaudio (0.9.15~test5-1) experimental; urgency=low

  * New Upstream Version
  * debian/copyright: Updated
  * debian/control: Build-Depends on libltdl7-dev
  * debian/control: Build-Depends on libasound2-dev (>= 1.0.19)
  * debian/rules: Use git format-patch instead of git-format-patch
  * debian/patches/0001-load-module-gconf-earlier.patch:
    - Removed. Merged upstream
  * debian/pulseaudio.install: Update for new modules
  * debian/pulseaudio-module-x11.install: Update for new modules
  * Move libpulscore into the pulseaudio package
  * debian/pulseaudio-module-bluetooth.install: Add the bluetooth-util module
    library
  * debian/pulseaudio.install: Add new modules
  * debian/control: Add bulid-depends on libgtk2.0-dev and libxtst-dev
  * debian/pulseaudio.shlibs, debian/libpulse0.shlibs: Update shlib files
  * debian/pulseaudio.install: Add liboss-util.so oss module helper library
  * debian/control, debian/pulseaudio-module-raop.install: Add RAOP module

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 22 Mar 2009 23:06:50 +0000

pulseaudio (0.9.14-2) unstable; urgency=low

  [ Sjoerd Simons ]
  * Build against libcap2-dev (Closes: #489060)
  * Bump shlibs of libpulse0 (Closes: #514645)
  * Bump soname of libpulsecore to 9
  * Wait up to 5 seconds for pulseaudio to stop. Fix suggested by Aron Griffis
    (Closes: #488754, #498457)
  * Don't put stop links in rc0 and rc6. Pulse doens't really need it. Patch
    supplied by James Westby (Closes: #494959)
  * Make the start option of the init script report the right status. Fix
    suggested by Aron Griffis (Closes: #488752)
  * Use per user esound sockets instead of a single one for all users

  [ Baptiste Mille-Mathias ]
  * debian/control:
    - create a separate package for bluetooth module (Closes: #513832)
  * debian/pulseaudio-module-bluetooth.install
    - put files for the separate bluetooth module package
  * debian/pulseaudio.install
    - remove files of the separate bluetooth module package

  [ Sjoerd Simons ]
  * debian/control: Don't build the bluetooth module on non-linux systems
    (Closes: #502837)
  * debian/control: Make the bluetooth module conflict with older pulseaudio
    versions
  * Update standards version, no changes needed
  * debian/copyright: Big update

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 01 Mar 2009 15:53:27 +0000

pulseaudio (0.9.14-1) experimental; urgency=low

  * New Upstream Version
  * 0002-load-module-gconf-earlier.patch renamed to
    0001-load-module-gconf-earlier.patch and updated
  * 0001-Fix-library-search-path-to-include-lib-and-usr-lib.patch
    - Removed, no longer applicable
  * 0003-make-sure-to-use-64bit-rounding-even-on-32bit-machin.patch
    - Removed, fixed upstream
  * 0004-properly-remove-dbus-matches-an-filters-when-unloadi.patch
    - Removed, fixed upstream
  * debian/patches/series
    - Updated

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 01 Feb 2009 12:47:55 +0000

pulseaudio (1:0.9.14-0ubuntu20) jaunty; urgency=low

  * debian/01PulseAudio: use pactl instead of pacmd (LP: #202089)

 -- Daniel T Chen <crimsun@ubuntu.com>  Wed, 08 Apr 2009 18:54:30 -0400

pulseaudio (1:0.9.14-0ubuntu19) jaunty; urgency=low

  [ Daniel T Chen ]
  * debian/pulseaudio.init:
    - Fix inane stop() syntax (LP: #357201)
  * Update backported (from git HEAD) fixes:
    - 0091_workaround_alsa_horkage.patch
  * Add new fixes:
    - 0049_fix_sampling_rate_not_beyond_pa-rate-max.patch

 -- Luke Yelavich <themuso@ubuntu.com>  Thu, 09 Apr 2009 07:29:24 +1000

pulseaudio (1:0.9.14-0ubuntu18) jaunty; urgency=low

  * debian/apport-hook.py: Add apport hook
  * debian/rules, debian/pulseaudio.install: Install apport hook
  * LP: #357913

 -- Matt Zimmerman <mdz@ubuntu.com>  Wed, 08 Apr 2009 20:14:17 +0100

pulseaudio (1:0.9.14-0ubuntu17) jaunty; urgency=low

  [ Daniel T Chen ]
  * debian/pulseaudio.init:
    - Actually create /var/run/pulse, and make handling of /restart
      more robust (LP #317921)
    - Add /status check for system-wide daemon instance
      (LP: #298299)
  * Backport from upstream git HEAD:
    - 0046_ignore_hal_no_such_cap.patch,
    - 0047_pick_up_all_cards.patch (LP: #353807),
    - 0048_fix_stuck_prebuf.patch (LP: #355825)

  [ Luke Yelavich ]
  * debian/control: Drop recommends from the pulseaudio-module-x11 package. if
    they were dropped previously, they were re-added somehow, so lets get rid
    of them once and for all.

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 07 Apr 2009 16:51:59 +1000

pulseaudio (1:0.9.14-0ubuntu16) jaunty; urgency=low

  * Introduce epoch to fix my stupidity in uploading a test release of
    pulseaudio.

 -- Luke Yelavich <themuso@ubuntu.com>  Wed, 01 Apr 2009 14:04:33 +1100

pulseaudio (0.9.14-0ubuntu15) jaunty; urgency=low

  [ Daniel T Chen ]
  * README.Debian:
    pulse-session:
    pulseaudio.default: Clarify function of system-wide check, and
    make /usr/bin/pulse-session do the right thing if system-wide
    is enabled (LP: #286966)

  [ Luke Yelavich ]
  * Make the a11y no start special case per user, not system wide.
  * Also make the esd wrapper script honour system wide pulseaudio.

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 30 Mar 2009 11:33:33 +1100

pulseaudio (0.9.14-0ubuntu14) jaunty; urgency=low

  * No-change rebuild to fix lpia shared library dependencies.

 -- Colin Watson <cjwatson@ubuntu.com>  Thu, 19 Mar 2009 13:57:35 +0000

pulseaudio (0.9.14-0ubuntu13) jaunty; urgency=low

  * debian/rules: Generate a PO template on build. Thanks to Timo Jyrinki for
    the patch! (LP: #342159)

 -- Martin Pitt <martin.pitt@ubuntu.com>  Mon, 16 Mar 2009 10:14:19 +0100

pulseaudio (0.9.14-0ubuntu12) jaunty; urgency=low

  * 0091_workaround_alsa_horkage.patch:
    - Lower severity of logging level to prevent DoS on syslog
      LP: #320875, #343254
      LP #330814

 -- Daniel T Chen <crimsun@ubuntu.com>  Sat, 14 Mar 2009 22:39:03 -0400

pulseaudio (0.9.14-0ubuntu11) jaunty; urgency=low

  [ Daniel T Chen ]
  * Reenable 0030_set_tsched0.patch, which re-disables glitch-free;
    too many users are reporting regressions and audio aberrations.
  * Adjust 0003_change_resample_and_buffering.patch to use linear
    resampler to work better with lack of PREEMPT in jaunty's
    -generic kernel config (LP: #207135, #322250, #332761, #335955,
    LP: #336965).
  * Last upload, specifically 0091_workaround_alsa_horkage, fixes:
    LP: #235990, #237443, #279847, #317997, #323185, #330814,
    LP: #334874.
  * sudo -H change in ubuntu6 fixed LP: #312505.
  * Closing old bugs fixed in 0.9.11+: LP: #187963, #193520, #211052.
  * Refresh 0006_regen-autotools.patch.
  * Add 0043_load_sample_dir_lazy.patch to cache
    /usr/share/sounds/ubuntu/stereo/* in default.pa.
  * debian/:
    - control: Build against libcap2-dev (LP: #339448);
    - copyright: Update copyright from Debian's 0.9.14-2;
    - rules: Add DEB_OPT_FLAG = -O3 as per recommendation from
      pulseaudio-discuss/2007-December/001017.html.
  * Refresh fixes from git HEAD:
    - 0038_handle_errno_properly.patch,
    - 0091_workaround_alsa_horkage.patch,
    - 0092_fix_null_pointer_access.patch.

  [ Luke Yelavich ]
  * Add a special case to prevent Pulseaudio from being started when the
    blindness accessibility profile has been enabled from the Ubuntu live CD,
    and for an accessibility install. Unfortunately Pulseaudio and speech do
    not currently work very well with each other, and its too late in
    the cycle to solve this problem any other way.

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 10 Mar 2009 09:00:40 +1100

pulseaudio (0.9.14-0ubuntu10) jaunty; urgency=low

  [ Daniel T Chen ]
  * 0030_set_tsched0.patch: Disable this patch, which has the effect of
    reenabling glitch-free. Depends on 0091_workaround_alsa_horkage.
  * 0091_workaround_alsa_horkage.patch: Rework ALSA delay handling.

  [ Luke Yelavich ]
  * debian/control: re-add the vcs bzr URL for Ubuntu's pulseaudio packaging
    as it got lost somewhere along the way

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 02 Mar 2009 10:40:11 +1100

pulseaudio (0.9.14-0ubuntu9) jaunty; urgency=low

  * PulseAudio does not need to be started before gdm, especially since we use
    user sessions by default.

 -- Scott James Remnant <scott@ubuntu.com>  Fri, 27 Feb 2009 01:27:20 +0000

pulseaudio (0.9.14-0ubuntu8) jaunty; urgency=low

  [ Daniel T Chen ]
  * Backport fixes from git HEAD:
    - 0041_clarify_cmdline_opts.patch,
    - 0042_fix_selem_init.patch

  [ Luke Yelavich ]
  * 0001_more_translatable_strings.patch: Make the .desktop file and PolicyKit
    files translatable, thanks to Gabor Kelemen <kelemeng@gnome.hu for this
    work (LP: #331831)
  * 0006_regen-autotools.patch: re-create to take into account changes needed
    for the above mentioned translation additions

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 24 Feb 2009 13:46:25 +1100

pulseaudio (0.9.14-0ubuntu7) jaunty; urgency=low

  [ Luke Yelavich ]
  * 0001-Fix-library-search-path-to-include-lib-and-usr-lib.patch: Dropped,
    no longer applicable, as evident in Debian's pulseaudio git branch.

  [ Daniel T Chen ]
  * 0004_enable_autospawn.patch: Renamed from .."disable".. for clarity,
    and actually apply it.
  * 0012_clarify_driver_error_redirect_to_alsa_devs.patch: Clarify
    logging message for 'linux' source package and ALSA developers
    instead of PulseAudio developers in alsa-util.c, too.
    - This patch can be tweaked, since upstream has now applied it to
      git HEAD
  * Backport fixes from git HEAD:
    - 0035_fix_module-detect_access.patch,
    - 0036_increase_memblock_imports.patch,
    - 0037_fill_silence_fail_import_memblock.patch,
    - 0038_handle_errno_properly.patch,
    - 0039_add_validity_checks.patch,
    - 0040_legacy_fixes.patch

 -- Daniel T Chen <crimsun@ubuntu.com>  Thu, 19 Feb 2009 19:34:03 -0500

pulseaudio (0.9.14-0ubuntu6) jaunty; urgency=low

  * 0004_disable_autospawn.patch: Disable this patch. Doing so
    allows the daemon to spawn if not already running, which
    works around LP: #191027, #204272
  * 0012_clarify_driver_error_redirect_to_alsa_devs.patch:
    - Only log POLL* being set if tsched is used so that syslog
      isn't filled with innocuous messages when we set tsched=0
      (see 0030 below) (LP: #323712),
    - Hint 'linux' source package instead of 'alsa-driver' for
      Launchpad bug reports,
    - The debug-specific portion is only applicable to 0.9.14;
      0.9.15 enables a rate limiting module by default to work
      around this (and other) issues
  * 0029_fix_suspend_on_idle_null_race.patch: Handle sink case,
    too
  * 0030_set_tsched0.patch: Work around a shedload of (driver)
    bugs by falling back to interrupt-based buffer semantics
    (LP: #190754, #292880, #295519, #298494, #301755, #302964,
     LP: #319118, #323976, #324103, #326205, #326864)
  * Backport fixes from git HEAD:
    - 0031_fix_6chan_map.patch,
    - 0032_reinit_proplist.patch,
    - 0033_fix_pa-gcc-packedmalloc.patch,
    - 0034_bt_fixes.patch
  * Make invoking the stop target in the initscript not fail an
    upgrade (LP: #317921)
  * Previous upload (0.9.14-0ubuntu3) fixed LP: #321357
  * 01PulseAudio: use sudo -H to ensure that $HOME is, in fact,
    the user's when invoking pacmd for suspend/resume

 -- Daniel T Chen <crimsun@ubuntu.com>  Sun, 15 Feb 2009 02:35:26 -0500

pulseaudio (0.9.14-0ubuntu5) jaunty; urgency=low

  * Add fixes from git HEAD:
    - 0028_fix_uninit_rtp_resamp.patch,
    - 0029_fix_suspend_on_idle_null_race.patch

 -- Daniel T Chen <crimsun@ubuntu.com>  Thu, 12 Feb 2009 18:28:42 -0500

pulseaudio (0.9.14-0ubuntu4) jaunty; urgency=low

  * Add fixes from git HEAD:
    - 0023_work_around_dlsym_retval_mistyping.patch,
    - 0024_fix_sink_source_calls_in_suspended.patch,
    - 0025_shortcut_pa-sink-process-rewind.patch,
    - 0026_reset_rewind-requested_when_suspend.patch,
    - 0027_fix_piped_pacmd.patch

 -- Daniel T Chen <crimsun@ubuntu.com>  Wed, 04 Feb 2009 19:36:09 -0500

pulseaudio (0.9.14-0ubuntu3) jaunty; urgency=low

  [ Daniel T Chen ]
  * Add fixes from git HEAD:
    - 0014_fix_avail-min_calc.patch,
    - 0015_no_pa-asyncq-push_fail.patch,
    - 0016_dont_rely_pa-sink-running-idle_for_optim.patch,
    - 0017_fix_hsp_rate_chan.patch,
    - 0018_dont_restore_mute_vol_when_already_set.patch,
    - 0019_fix_mem_leak_in_pa-alsa-open-by-device-string.patch,
    - 0020_ask_for_same_frag_set_when_resuming_oss_dev.patch,
    - 0021_add_missing_const.patch,
    - 0022_dont_hit_assert_in_esound-sink_when_latency_queried.patch

  [ Luke Yelavich ]
  * Re-instate /etc/X11/Xsession.d/70pulseaudio, to again load pulseaudio
    earlier in the X session, to aleviate a pulse/login-sound race condition
    (LP: #322374)

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 02 Feb 2009 15:27:55 +0100

pulseaudio (0.9.14-0ubuntu2) jaunty; urgency=low

  * Add fixes from trunk:
    - 0012_clarify_driver_error_redirect_to_alsa_devs.patch
  * Add 0013_add_padsp_wrapper_check.patch (LP: #269939)
  * debian/pulseaudio.manpages:
    debian/pulseaudio-esound-compat.manpages:
    debian/pulseaudio-utils.links:
    - Install upstream man pages (LP: #219669, #318660),
    - Link to pacat for parec man page (LP: #294628)

 -- Daniel T Chen <crimsun@ubuntu.com>  Thu, 22 Jan 2009 02:57:54 -0500

pulseaudio (0.9.14-0ubuntu1) jaunty; urgency=low

  * New upstream release. (LP: #317502, #317613)
  * Dropped patches, all in upstream release.
    - 0003-make-sure-to-use-64bit-rounding-even-on-32bit-machin.patch
    - 0004-properly-remove-dbus-matches-an-filters-when-unloadi.patch
    - 0005-Fix-two-typos-that-broke-tunnels.patch
    - 0008_regen_autotools.patch
    - 0009_shm-arch-indep.patch
    - 0010_check_before_using_environment.patch
    - 0011_load_restore_before_other_modules.patch
    - 0013_dont_hit_assert_issuing_two_rewinds_in_single_iter.patch
    - 0014_retry_without_snd-pcm-no-auto-format.patch
    - 0015_use_fionread.patch
    - 0016_add_pa-source-message-get-latency.patch
    - 0017_allow_dev_dsp_w-ok.patch
    - 0019_fix_macro_pa-unlikely.patch
    - 0020_catch_driver_errors.patch
    - 0022_fix_return_val_dump-resample-methods.patch
    - 0023_use_gdbm-nolock.patch
    - 0024_dont_mix_front-center_into_rear.patch
    - 0025_drop_cap-nice_properly.patch
    - 0027_handle_multicast_sdp_with_same_ip_ttl_as_rtp.patch
    - 0029_add_minor_fixes.patch
    - 0030_dont_drop_client_data.patch
    - 0031_use_fragsize_for_record_stream_latency.patch
  * Bumped shlibs for libpulse0.
  * Package libpulsecore8 -> libpulsecore9.
  * Add libdbus-glib-1-dev to build-depends.
  * Regression fix:
    - pulse.conf: Always honour ~/.asoundrc and /etc/asound.conf with highest
      priority, thanks to Daniel T Chen. (LP: #295832)

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 19 Jan 2009 14:45:36 +1100

pulseaudio (0.9.13-2ubuntu7) UNRELEASED; urgency=low

  * Add fixes from 0.9.14:
    - 0030_dont_drop_client_data.patch,
    - 0031_use_fragsize_for_record_stream_latency.patch,
    - 0032_fix_suspend_sinks_sources.patch (LP: #317613)

 -- Daniel T Chen <crimsun@ubuntu.com>  Thu, 15 Jan 2009 17:26:14 -0500

pulseaudio (0.9.13-2ubuntu6) jaunty; urgency=low

  * debian/control: Package pulseaudio-module-x11,
    Recommends: gnome-audio | ubuntu-sounds.

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 13 Jan 2009 16:15:48 +1100

pulseaudio (0.9.13-2ubuntu5) jaunty; urgency=low

  [ Daniel T Chen ]
  * Add fixes from git:
    - 0015_use_fionread.patch,
    - 0016_add_pa-source-message-get-latency.patch,
    - 0017_allow_dev_dsp_w-ok.patch,
    - 0018_fix_return_val_pa-frame-aligned.patch,
    - 0019_fix_macro_pa-unlikely.patch,
    - 0020_catch_driver_errors.patch (LP: #312373),
    - 0021_convert_to_pa-bool-t.patch,
    - 0022_fix_return_val_dump-resample-methods.patch,
    - 0023_use_gdbm-nolock.patch,
    - 0024_dont_mix_front-center_into_rear.patch,
    - 0025_drop_cap-nice_properly.patch,
    - 0027_handle_multicast_sdp_with_same_ip_ttl_as_rtp.patch,
    - 0028_prefer_mixer_controls_with_vols.patch (LP: #281605),
    - 0029_add_minor_fixes.patch
  * Forward-port workaround from hardy branch for source/sink and
    suspend-on-idle race (LP: #203654):
    - 0026_work_around_suspend-on-idle_source_sink_race.patch
  * debian/control: Drop padevchooser(Recommends) and pavucontrol
    (Suggests) completely - functionality has been subsumed by
    jaunty's gnome-volume-control.
  * debian/pulseaudio.init:
    - Make initscript more informative in the default case of per-user
      sessions (LP: #259522),
    - Make initscript retry (until three-second timeout) if stopping
      fails when restarting (LP: #244414),
    - LSB {Required-*,Should-*} should specify hal instead of dbus,
      since hal is required (and already requires dbus) (LP: #244679)
  * Previous upload contains patches to close:
    LP: #193491, #268891, #295164, #298301

  [ Luke Yelavich ]
  * 0008_regen_autotools.patch: Pull some libtool 2.2 updates from git,
    and regenerate autotools glue.
  * debian/rules: Add --enable-static to force creation of libpulse.a,
    a side-effect of messing with the autotools files. This shouldn't
    be needed for the 0.9.14 release.

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 09 Jan 2009 17:05:38 +1100

pulseaudio (0.9.13-2ubuntu4) jaunty; urgency=low

  * Demote paprefs to suggests (LP: #309422)
  * Add fixes from git:
    - 0010_check_before_using_environment.patch,
    - 0011_load_restore_before_other_modules.patch,
    - 0012_dont_hit_assert_checking_for_idleness.patch,
    - 0013_dont_hit_assert_issuing_two_rewinds_in_single_iter.patch,
    - 0014_retry_without_snd-pcm-no-auto-format.patch.

 -- Daniel T Chen <crimsun@ubuntu.com>  Sun, 28 Dec 2008 23:43:01 -0500

pulseaudio (0.9.13-2ubuntu3) jaunty; urgency=low

  * Add pm-utils sleep hook to suspend (and resume) users' pulseaudio
    daemons (LP: #202089). Based on a patch by
    Chow Loong Jin <hyperair@gmail.com>.

 -- Daniel T Chen <crimsun@ubuntu.com>  Mon, 08 Dec 2008 22:11:32 -0800

pulseaudio (0.9.13-2ubuntu2) jaunty; urgency=low

  * debian/patches/0009_shm-arch-indep.patch:
    - Make shm marker architecture independant, taken from git.

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 01 Dec 2008 12:06:00 +1100

pulseaudio (0.9.13-2ubuntu1) jaunty; urgency=low

  * Merge from Debian experimental, remaining changes:
    - Don't build against, and create jack package. Jack is not in main.
    - Remove --disable-per-user-esound-socket from configure flags, as we still
      want per user esound sockets.
    - Remove stop links from rc0 and rc6.
    - Change default resample algorithm and bubffer size.
    - Add alsa configuration files to route alsa applications via pulseaudio.
    - Move libasound2-plugins from Recommends to Depends.
    - debian/pulseaudio.preinst: When upgrading from intrepid, remove
      /etc/X11/Xsession.d/70pulseaudio, as this was used to minimize a race
      condition when starting GNOME in intrepid. This race should not exist in
      jaunty once libcanberra is built to use pulseaudio as a backend.
    - Do not spawn a pulseaudio server if clients fail to find a running server.
    - Regenerate autotools files for ubuntu.

 -- Luke Yelavich <themuso@ubuntu.com>  Wed, 19 Nov 2008 10:44:03 +1100

pulseaudio (0.9.13-2) experimental; urgency=low

  * Rename libpulsecore5 to libpulsecore8 to correctly reflect the soname
    (Closes: #503612)
  * 0003-make-sure-to-use-64bit-rounding-even-on-32bit-machin.patch
    - Fix rounding errors on 32 bit machines. From upstream git
  * 0004-properly-remove-dbus-matches-an-filters-when-unloadi.patch
    - Properly remove dbus filters when unloading the bluetooth module
  * 0005-Fix-two-typos-that-broke-tunnels.patch
    - Fix tunnels. From upstream git

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 16 Nov 2008 18:13:05 +0000

pulseaudio (0.9.13-1ubuntu3) jaunty; urgency=low

  * Build-depend on libltdl7-dev to make the armel buildd happy.

 -- Matthias Klose <doko@ubuntu.com>  Wed, 19 Nov 2008 16:26:45 +0000

pulseaudio (0.9.13-1ubuntu2) jaunty; urgency=low

  * Drop libasyncns-dev again. Its in universe, and we will worry about
    whether we really need it again later.

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 18 Nov 2008 15:47:20 +1100

pulseaudio (0.9.13-1ubuntu1) jaunty; urgency=low

  * Merge from Debian unstable, remaining changes:
    - Don't build against, and create jack package. Jack is not in main.
    - Remove --disable-per-user-esound-socket from configure flags, as we still
      want per user esound sockets.
    - Remove stop links from rc0 and rc6.
    - Change default resample algorithm and bubffer size.
    - Add alsa configuration files to route alsa applications via pulseaudio.
    - Move libasound2-plugins from Recommends to Depends.
  * debian/pulseaudio.preinst: When upgrading from intrepid, remove
    /etc/X11/Xsession.d/70pulseaudio, as this was used to minimize a race
    condition when starting GNOME in intrepid. This race should not exist in
    jaunty once libcanberra is built to use pulseaudio as a backend.
  * Do not spawn a pulseaudio server if clients fail to find a running server.
  * Remove explicit version dependency for libspeex-dev to allow the package
    to be built for now.
  * Regenerate autotools files to work with Ubuntu's newer libtool/libltdl.
  * debian/control: libpulsecore5 -> libpulsecore8 to match the library
    soname.

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 04 Nov 2008 15:46:00 +1100

pulseaudio (0.9.13-1) experimental; urgency=low

  [ Bas Zoetekouw ]
  * debian/control: Build-Depend on libasound2-dev (>= 1.0.17)
  * debian/pulseaudio-module-x11.install: No longer install an xdg autostart
    file
  * debian/pulseaudio.install: Install system.pa config file and various new
    pulseaudio modules
  * debian/rules: Add --disable-per-user-esound-socket to configure flags

  [ Sjoerd Simons ]
  * New Upstream Version
  * Fixes FTBTS on GNU/kFreeBSD (Closes: #497624)
  * Dropped patches for things that have been fixed upstream:
    - 0003-Define-PULSE_INTERNAL.patch
    - 0005-Reduce-RT-prio-logging-severity.patch
    - 0006-fix-iteration-over-random-devices.patch
  * rename 0003-load-module-gconf-earlier.patch to
    0002-load-module-gconf-earlier.patch
  * rename 0002-Fix-library-search-path-to-include-lib-and-usr-lib.patch
    to 0001-Fix-library-search-path-to-include-lib-and-usr-lib.patch
  * rename 0004-load-module-gconf-earlier.patch to
    0003-load-module-gconf-earlier.patch
  * 0001-Set-ESD-socket-to-tmp-.esd-socket-to-match-up-with.patch
    - Dropped, not necessary anymore, the --disable-per-user-esound-socket
      configure flag now has the same result
  * debian/control: Add libspeexdsp-dev (>= 1.2~rc1) to Build-Depends
  * debian/control: Add Build-Depends on libpolkit-dbus-dev and
    libbluetooth-dev
  * debian/pulseaudio.install: Install various new modules. Including bluetooth
    and polkit, which will move into a separate package later.
  * debian/pulseaudio.install: Install the new pulseaudio xdg autostart file
  * debian/control: add a depend on consolekit. Might be downgrade to a
    recommend later
  * debian/control: Set the maintainer to the pkg-pulseaudio mailinglist
  * debian/control: Add libgdbm-dev to build-depends
  * debian/control: Add intltool to build-depends

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 19 Oct 2008 21:05:13 +0100

pulseaudio (0.9.10-3) unstable; urgency=low

  * debian/patches/0006-fix-iteration-over-random-devices.patch
    - Added. Iterate over the various random devices if opening fails
      (Closes: #491270)

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 30 Aug 2008 14:24:51 +0100

pulseaudio (0.9.10-2ubuntu9) intrepid; urgency=low

  * debian/70pulseaudio && debian/pulse-session: Use a wrapper script
    to start pulseaudio at the Xsession.d phase of the login process.
    The wrapper script is necessary to execute processes that need to
    be loaded after pulseaudio, such as the X session manager. This
    works around a race condition involving pulseaudio and canberra-gtk-play
    and the GNOME login sound. (LP: #274124)
  * debian/pulseaudio.preinst: Remove /etc/xdg/autostart/pulseaudio.desktop
    if it exists. We don't want pulseaudio started more than once.

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 20 Oct 2008 13:26:28 +1100

pulseaudio (0.9.10-2ubuntu8) intrepid; urgency=low

  * debian/pulseaudio.desktop: Use a slightly modified version of the
    pulseaudio desktop file from more recent versions, and place it in
    /etc/xdg/autostart, to start pulseaudio earlier in the GNOME desktop
    initialization. This should avoid a race condition between the login
    sound being played, and pulseaudio being loaded. (LP: #274124)

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 10 Oct 2008 15:22:51 +1100

pulseaudio (0.9.10-2ubuntu7) intrepid; urgency=low

  * Fix some errors in the pid file handling patch, thanks to Mandriva.
  * debian/pulse.conf: Do not use an absolute path when referring to the
    pulse alsa plugin, as this breaks bi-arch configurations. libasound2
    and lib32/64asound2 now include ldconfig files to include the alsa-plugins
    path for the architecture in use.

 -- Luke Yelavich <themuso@ubuntu.com>  Wed, 08 Oct 2008 11:20:17 +1100

pulseaudio (0.9.10-2ubuntu6) intrepid; urgency=low

  * debian/pulse-alsa.conf: extend configuration to include "pulse"
    definitions for buggy ALSA applications (e.g., Skype). (LP: #258581)

 -- Conn O Griofa <connogriofa@gmail.com>  Tue, 23 Sep 2008 16:12:19 +0100

pulseaudio (0.9.10-2ubuntu5) intrepid; urgency=low

  * debian/control: Bump libasound2-plugins from recommends to depends to be
    sure that nobody's audio set up for alsa applications is broken.

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 23 Sep 2008 23:07:23 +1000

pulseaudio (0.9.10-2ubuntu4) intrepid; urgency=low

  * debian/pulse.conf, debian/pulse-alsa.conf. Asoundrc configuration files
    to allow the use of pulseaudio as the default output for applications
    using alsa, when pulseaudio is running.
  * debian/patches/0015-Change-resampler-and-buffering.patch: Change the
    resample method used as well as the buffer size.
  * Some patches taken from Mandriva's pulseaudio package. See comments in
    patch headers for more details:
    - 0007-Perfer-client.conf-over-X11-property-variables.patch
    - 0008-Also-link-libpulsecore.la-to-some-libraries-needed.patch
    - 0009-Rejig-r2495-slightly-and-directly-compile-the-necess.patch
    - 0010-Do-not-invalidate-the-cookie-if-no-file-was-specifie.patch
    - 0011-fix-error-path-spotted-by-Coling-Guthrie.patch
    - 0012-Change-policykit-policy-to-allow-high-priority-and-d.patch
    - 0013-More-robust-pid-file-handling.patch
    - 0014-Disable-hotplug-sound-as-it-interferes-with-too-many.patch

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 23 Sep 2008 16:02:48 +1000

pulseaudio (0.9.10-2ubuntu3) intrepid; urgency=low

  * Remove stop links from rc0 and rc6 (LP: #254254):
    - debian/rules: change DEB_UPDATE_RCD_PARAMS to
      start 25 2 3 4 5 . stop 15 1 .

 -- Cesare Tirabassi <norsetto@ubuntu.com>  Mon, 04 Aug 2008 19:22:43 +0200

pulseaudio (0.9.10-2ubuntu2) intrepid; urgency=low

  * debian/patches/0006-pcspkr-last.patch: Load the PC speaker as a sink
    after all other sound card sinks have been loaded. (LP: #242966)
  * debian/patches/0007-relibtoolize.patch: Regenerate relevant libtool
    bits, because even though libltdl7 is supposed to be API-compatible
    with libltdl3, the package FTBFs without regeneration.

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 29 Jul 2008 16:07:18 +1000

pulseaudio (0.9.10-2ubuntu1) intrepid; urgency=low

  * Merge from Debian unstable.
  * Patches
    + 0001-Set-ESD-socket-to-tmp-.esd-socket-to-match-up-with.patch:
      continue to disable this patch, as we want user sockets to be
      the default in the conffile;
    - 0050-Reduce-RT-highprio-log-to-info: absorbed into Debian unstable;
    - 0051-Reduce-pa_pid_file_create-Daemon-already-running-log-spam:
      removed as per discussion with Sjoerd, as it can confuse human
      debugging;
  * Packaging
    + MaintainerField and Vcs munging;
    + Don't generate or install the jackd module;
    + Use multiuser semantics.

 -- Daniel T Chen <crimsun@ubuntu.com>  Wed, 14 May 2008 15:47:31 -0400

pulseaudio (0.9.10-2) unstable; urgency=low

  * debian/patches/0003-Define-PULSE_INTERNAL.patch
    - Added. Let the daemon put PULSE_INTERNAL in its environment so things
    can detect when called from within pulseaudio
  * debian/patches/0004-load-module-gconf-earlier.patch
    - Added. Load module-gconf before module-volume-restore and
    module-device-restore. Otherwise setting virtual sinks/sources as default
    won't be persistent
  * debian/patches/0005-Reduce-RT-prio-logging-severity.patch
    - Added. Reduce the priority of the RT warnings. Not running with RT
    priorities is the default.

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 10 May 2008 22:16:12 +0200

pulseaudio (0.9.10-1ubuntu1) hardy; urgency=low

  [ Daniel T Chen ]
  * Merge from Debian unstable:
  * Patches
    + 0050-Reduce-RT-highprio-log-to-info:
    + 0051-Reduce-pa_pid_file_create-Daemon-already-running-log-spam:
      Retain to prevent innocuous messages from spamming user log;
    - 0052-Add-extra-checks-to-padsp-debug-calls:
    - 0053-Handle-channel-map-failure:
    - 0054-Invoke-pa_ltdl_done-conditionally:
    - 0055-fix_record_stream_moved:  Merged in new upstream version.
  * Packaging
    + control:  Adhere to DebianMaintainerField spec, and add a
      Vcs-Bzr entry;
    + control:
    + pulseaudio-module-jack.install:  Don't generate or install the
      jackd module;
    + pulseaudio.init:
    + rules:  Use multiuser semantics.

  [ Luke Yelavich ]
  * FFe granted. (LP: #211592)

 -- Luke Yelavich <luke.yelavich@canonical.com>  Mon, 07 Apr 2008 10:40:01 +1000

pulseaudio (0.9.10-1) unstable; urgency=low

  [ CJ van den Berg ]
  * New Upstream Version
  * debian/patches: Drop patches merged upstream
    - 0002-Double-esound-maximum-sample-size.patch
    - 0003-fix-uploading-of-samples-into-PA.-Problem-discovered.patch
    - 0004-make-sure-to-create-.pulse-before-using-any-config.patch
    - 0005-Don-t-add-protocol-fields-introduced-in-version-12-w.patch
    - 0006-Implement-opcodes-added-in-version-12-in-the-tunnel.patch
    - 0007-Change-config-to-not-fail-if-loading-of-esd-gconf-o.patch
    - 0008-Fix-compilation-on-non-linux-platforms.patch
  * debian/patches: Add patch to fix RPATHs.
    + 0002-Fix-library-search-path-to-include-lib-and-usr-lib.patch
  * debian/control:
    + Make libpulsecore5-dbg depend on libpulsecore5, instead of pulseaudio.
    + Make libpulse-browse0-dbg depend on libpulse-browse0.
  * Update Standards-Version to 3.7.3 (no changes required).

  [ Petter Reinholdtsen ]
  * debian/pulseaudio.init: Fix problems with LSB header in init.d script.
      (Closes: #470934)

 -- CJ van den Berg <cj@vdbonline.com>  Sun, 30 Mar 2008 20:11:02 +0200

pulseaudio (0.9.9-1ubuntu4) hardy; urgency=low

  * Patch from Thorvald Natvig to fix protocol error when moving source outputs.
    (LP: #194756)

 -- Luke Yelavich <luke.yelavich@canonical.com>  Fri, 28 Mar 2008 15:58:55 +1100

pulseaudio (0.9.9-1ubuntu3) hardy; urgency=low

  * Patches:
    - Apply (new) patch to handle channel mapping failure.  From
      upstream SVN changeset 2105.  (LP: #178442)
    - Apply (new) patch to invoke pa_ltdl_done() conditionally.
      From upstream SVN changeset 2111.

 -- Daniel T Chen <crimsun@ubuntu.com>  Mon, 18 Feb 2008 18:40:28 -0500

pulseaudio (0.9.9-1ubuntu2) hardy; urgency=low

  * Packaging:
    - Add versioned dependency on sysv-rc to pulseaudio for LTS->LTS.
      Thanks, Steve Langasek (LP: #187469)!
  * Patches:
    - Apply (new) patch from Mandriva adding checks to debug calls,
      preventing crashes, with padsp.

 -- Daniel T Chen <crimsun@ubuntu.com>  Wed, 30 Jan 2008 20:43:29 -0500

pulseaudio (0.9.9-1ubuntu1) hardy; urgency=low

  * Merge from Debian unstable, remaining changes:
    - Packaging:
      + pulseaudio-module-x11 does not recommend an audio theme,
      + no jack packages,
      + pulseaudio-utils long description clarification,
      + multiuser initscript semantics (Teardown spec),
      + Vcs-Bzr entry and DebianMaintainerField mangling;
    - Patches:
      + omit 0001-Set-ESD-socket-to-tmp-..,
      + omit socket parameter in 0007-Change-config-.. to apply
        cleanly given above 0001-Set-ESD-socket omission,
      + lower verboseness of some log messages,
      + drop backported CVE-2008-008 fix (already in 0.9.9).

 -- Daniel T Chen <crimsun@ubuntu.com>  Fri, 25 Jan 2008 16:04:34 -0500

pulseaudio (0.9.9-1) unstable; urgency=high

  * New Upstream Version.
  * Fixes CVE-2008-008: Assert that dropping permissions succeeds.
  * Priority high because it fixes a security issue.

 -- Sjoerd Simons <sjoerd@debian.org>  Thu, 24 Jan 2008 12:44:55 +0100

pulseaudio (0.9.8-2ubuntu3) hardy; urgency=low

  * [SECURITY] Apply (new) patch fixing unchecked setuid() return
    values.  Patch backported from upstream 0.9.9.
  * References:
    CVE-2008-0008
    https://bugzilla.novell.com/show_bug.cgi?id=347822
    https://bugzilla.redhat.com/show_bug.cgi?id=425481

 -- Daniel T Chen <crimsun@ubuntu.com>  Wed, 23 Jan 2008 20:11:25 -0500

pulseaudio (0.9.8-2ubuntu2) hardy; urgency=low

  * Apply (new) 0051-Reduce-pa_pid_file_create.. patch that lowers the
    "Daemon already running", "pa_pid_file_create() failed", and
    "setrlimit(..Operation not permitted" levels to prevent spamming
    /var/log/syslog.  Normal users not in the pulse-rt group don't need
    this level of verbosity, and the "errors" are innocuous given per-
    user session invocation.  (These changes really close LP #83137 and
    duplicates.)
  * Thanks to Sjoerd Simons for the insight.

 -- Daniel T Chen <crimsun@ubuntu.com>  Tue, 08 Jan 2008 06:36:42 -0500

pulseaudio (0.9.8-2ubuntu1) hardy; urgency=low

  * Merge from Debian unstable, remaining changes:
    - Packaging:
      + pulseaudio-module-x11 does not recommend an audio theme,
      + no jack packages,
      + pulseaudio-utils long description clarification,
      + multiuser initscript semantics (Teardown spec),
      + Vcs-Bzr entry and DebianMaintainerField mangling;
    - Patches:
      + omit 0001-Set-ESD-socket-to-tmp-..,
      + omit socket parameter in 0007-Change-config-.. to apply
        cleanly given above 0001-Set-ESD-socket omission,
      + apply (new) 0050-Reduce-RT-highprio-log-to-info.patch
        (LP: #83137 and duplicates).

 -- Daniel T Chen <crimsun@ubuntu.com>  Fri, 04 Jan 2008 21:46:57 +0000

pulseaudio (0.9.8-2) unstable; urgency=low

  * Bump shlibs of libpulse and libpulse-browse. Upstream has started
    versioning symbols.
  * debian/p.../0005-Don-t-add-protocol-fields-introduced-in-version-12-w.patch
    - Added. Don't send fields/opcodes adding in protocol version 12 to
      clients using version 11. (Closes: #458556)
  * debian/p.../0006-Implement-opcodes-added-in-version-12-in-the-tunnel.patch
    - Added. Add dummy implementations of the opcodes added in protocol
    version 12.
  * debian/patches/0004-Force-module-tunnel-to-use-protocol-version-11.patch
    - Removed. Obsoleted by the two previous patches
  * debian/p.../0005-make-sure-to-create-.pulse-before-using-any-config.patch
    - Renamed to 0004-make-sure-to-create-.pulse-before-using-any-config.patch
  * debian/p.../0007-Change-config-to-not-fail-if-loading-of-esd-gconf-o.patch
    - Added. Don't fail to load if esd, gconf or x11-publish fail.
      (Closes: 456590, #456505)
  * debian/patches/0008-Fix-compilation-on-non-linux-platforms.patch
    - Added. Fixes compliation on non-linux platforms such as GNU/kFreeBSD.
    Thanks to Aurelien Jarno for the patch (Closes: #454197)

 -- Sjoerd Simons <sjoerd@debian.org>  Fri, 04 Jan 2008 16:12:27 +0100

pulseaudio (0.9.8-1ubuntu3) hardy; urgency=low

  * debian/control: Drop Recommendation of ubuntu-sounds entirely; it's wrong
    for derivatives, and theming should be done with seeds and derivative
    specific meta packages.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Mon, 10 Dec 2007 14:37:37 +0100

pulseaudio (0.9.8-1ubuntu2) hardy; urgency=low

  * debian/control: Make pulseaudio-module-x11 recommend ubuntu-sounds,
    not gnome-audio.

 -- Daniel T Chen <crimsun@ubuntu.com>  Thu, 06 Dec 2007 07:12:07 -0500

pulseaudio (0.9.8-1ubuntu1) hardy; urgency=low

  "Hail our new PulseAudio overlords (part two)."

  * Merge from Debian unstable.
  * Ubuntu-specific changes:
    - debian/control:
      + Don't build-depend on libjack0.100.0-dev or build jack module
        packages,
      + Update pulseaudio's Recommends and Suggests to accomodate
        existing promoted main packages,
      + Explicitly mention pasuspender in pulseaudio-utils's long
        description,
      + Add Vcs-Bzr URI,
      + Adhere to DebianMaintainerField;
    - debian/rules: Use multiuser for update-rc.d;
    - debian/patches/series: Retain the exclusion of
      0001-Set-ESD-socket-to-tmp-.esd-socket-to-match-up-with.patch.
  * Dropped Ubuntu-specific change (absorbed into Debian source):
    debian/patches/0002-Double-esound-maximum-sample-size.patch.

 -- Daniel T Chen <crimsun@ubuntu.com>  Tue, 04 Dec 2007 00:56:08 +0000

pulseaudio (0.9.8-1) unstable; urgency=low

  [ CJ van den Berg ]
  * New upstream version.
  * debian/overrides/pulseaudio: Remove override for setuid-binary.
  * debian/control:
    + Change the priority of all -dbg packages to extra.
    + Stop recommending libao-pulse. libao2 has built-in pulseaudio support.
    + Make pulseaudio conflict libltdl3 < 1.5.24-1 (Closes: #451638)
    + Change XS-Vcs-* tags to Vcs-*.
    + Add libpulsecore5-dbg package.
    + Rename gstreamer plugin package in recommends.
    + Add Homepage field.
    + Bump libpulsecore so version number to 5.
    + Conflict with all pre libpulsecore split packages.
  * debian/patches/0002-Fix-pa_readlink-to-put-a-0-in-the-right-location.patch:
    - Dropped, merged upstream.
  * debian/p..s/0003-Define-__NR_eventfd-on-arm-if-it-wasn-t-defined-yet.patch:
    - Dropped, merged upstream.
  * debian/patches/0002-Double-esound-maximum-sample-size.patch:
    + Added, from Ubuntu.
  * debian/p..s/0003-fix-uploading-of-samples-into-PA.-Problem-discovered.patch:
    + Added, svn commit r2074 from upstream.
  * debian/patches/0004-Force-module-tunnel-to-use-protocol-version-11.patch:
    + Added, fixes protocol errors in module-tunnel.
  * debian/pa..es/0005-make-sure-to-create-.pulse-before-using-any-config.patch:
    + Added, fixes module-volume-restore so that volumes are restored across
      daemon restarts.
  * debian/pulseaudio.manpages: Add manpages default.pa.5, pulse-client.conf.5
      and pulse-daemon.conf.5
  * debian/pulseaudio-utils.manpages: Add manpages pabrowse.1, pacat.1,
      pacmd.1, pactl.1, padsp.1, paplay.1, pasuspender.1 and pax11publish.1
  * debian/pulseaudio.default: Add a description of the preferred method of
      running the daemon.

  [Daniel T Chen]
  * debian/control: Add lsb-base (>= 3) to pulseaudio's dependencies.
  * debian/pulseaudio.init: LSB-ify.

 -- CJ van den Berg <cj@vdbonline.com>  Thu, 22 Nov 2007 02:33:51 +0100

pulseaudio (0.9.7-3ubuntu2) hardy; urgency=low

  * Disable 0001-Set-ESD-socket-to-tmp-.esd-socket-to-match-up-with.patch. We
    do want per-user esd sockets in Ubuntu. This unbreaks multiuser support
    and matches the patch that we did to esound for the very same reason:
    every user needs its own esd socket path to have them not conflict to each
    other.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Tue, 20 Nov 2007 22:30:35 +0100

pulseaudio (0.9.7-3ubuntu1) hardy; urgency=low

  "Hail our new PulseAudio overlords (part one)."

  * Merge from Debian unstable.
  * Apply Ubuntu-specific changes:
    - debian/control:
      + drop libasyncns-dev and libjack0.100.0-dev build-dependencies
        since we don't build the jack plugin [yet];
      + add versioned lsb-base dependency to pulseaudio;
      + keep pulseaudio installable by demoting some recommended
        packages to suggested [retain libasound2-plugins,
        libgstreamer-plugins-pulse0.10-0, and
        pulseaudio-esound-compat.  pulseaudio-module-hal,
        pulseaudio-module-x11, libao-pulse, paprefs, and
        padevchooser are currently in universe];
      + adhere to DebianMaintainerField spec;
    - debian/rules:
      + use multiuser instead of defaults in DEB_UPDATE_RCD_PARAMS.
  * Drop obsolete Ubuntu-specific change:
    - src/pulsecore/protocol-esound.c: applied upstream.

 -- Daniel T Chen <crimsun@ubuntu.com>  Sat, 17 Nov 2007 00:10:48 +0000

pulseaudio (0.9.7-3) unstable; urgency=low

  [ CJ van den Berg ]
  * debian/control: Add depends on -utils to -module-x11. (Closes: #450840)

  [ Sjoerd Simons ]
  * Set pulseaudio setuid in postinst if the permissions aren't overriden by
    dpkg-statoverride, instead of having the binary with suid perms in the deb

 -- Sjoerd Simons <sjoerd@debian.org>  Fri, 16 Nov 2007 18:41:28 +0100

pulseaudio (0.9.7-2) unstable; urgency=low

  * Use pulseaudio (<< 0.9.7) instead of pulseaudio (< 0.9.7) in
    -esound-compat
  * debian/patches/0002-Fix-pa_readlink-to-put-a-0-in-the-right-location.patch:
    + Added. Fix pa_readlink to put a \0 directly after the link string. Fixes
    issues with clients using the alsa compatibility layer
  * deb/patches/0003-Define-__NR_eventfd-on-arm-if-it-wasn-t-defined-yet.patch:
    + Added. Define __NR_eventfd. Fixes FTBS on arm, because libc6-dev does
    define SYS_eventfd but older versions of linux-libc-dev don't define
    __NR_eventfd yet.

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 04 Nov 2007 13:53:09 +0100

pulseaudio (0.9.7-1) unstable; urgency=low

  * New Upstream Version. (Closes: #446026, #436409)
  * Drop all patches. All patches are merged upstream.
  * debian/control:
    + Replace ${Source-Version} with ${binary:Version}.
    + Add XS-Vcs-* tags.
    + Conflict pulseaudio < 0.9.7 in -esound-compat due to moved manpage.
  * debian/rules:
    + Add list-missing to catch new modules
    + Remove all .la files.
  * debian/overrides/pulseaudio: Update libpulsecore so version.
  * debian/pulseaudio.install:
    + Add new module-default-device-restore.so.
    + Add new module-suspend-on-idle.so.
    + Add new module-remap-sink.so.
    + Add new module-ladspa-sink.so.
    - Remove module-oss-mmap.so, removed upstream.
  * debian/pulseaudio-module-x11.install: Add new module-x11-xsmp.so.
  * debian/pulseaudio-module-zeroconf.install: Add new module-zeroconf-
      discover.so.
  * debian/pulseaudio-utils.install: Add pasuspender utility.
  * debian/pulseaudio-esound-compat.links: Move esd link to pulseaudio-
      esound-compat.
  * debian/pulseaudio-esound-compat.manpages: Move esdcompat manpage to
      pulseaudio-esound-compat.
  * debian/libpulse0.shlibs: Add minimum version of 0.9.7 to libpulse0 shlibs.
  * debian/patches:
    + Added 0001-Set-ESD-socket-to-tmp-.esd-socket-to- match-up-with.patch

 -- CJ van den Berg <cj@vdbonline.com>  Wed, 31 Oct 2007 15:31:44 +0100

pulseaudio (0.9.6-2) unstable; urgency=low

  * debian/control:
    - Add -dbg packages.
    - Make libcap-dev and libasound-dev arch specific build deps.
    - Add recommends gnome-audio to pulseaudio-module-x11. (Closes: #437393)
    - Make pulseaudio-module-zeroconf recommend avahi-daemon.
    - Make pulseaudio-utils suggest avahi-daemon. (for pabrowse)
  * debian/rules:
    - Generate arch specific install files. (Closes: #430366)
    - Install init script to start at 25 and stop at 15. (Closes: #428046)
  * debian/overrides/pulseaudio: Update libpulsecore override to new
      soversion.
  * debian/copyright: Update e-mail address for Lennart Poettering.
  * debian/patches: Reformat patch series. Add two new patches.
    + 0003-Backported-padsp-improvements-from-upstream-trunk.patch
    + 0004-New-realtime-safe-and-transport-free-JACK-module.patch

 -- CJ van den Berg <cj@vdbonline.com>  Sun, 02 Sep 2007 20:22:19 +0200

pulseaudio (0.9.6-1ubuntu2) gutsy; urgency=low

  * fix esound max samplesize again to make sure teh login sound is playable
    on networked connections. 

 -- Oliver Grawert <ogra@ubuntu.com>  Thu, 28 Jun 2007 15:31:28 +0200

pulseaudio (0.9.6-1ubuntu1) gutsy; urgency=low

  * Merge from Debian unstable, remaining changes:
    - debian/control:
      + Add lsb-base (>= 3) to pulseaudio's dependencies,
      + Adhere to DebianMaintainerField policy,
      + Don't build-depend on libjack0.100.0-dev or libasyncns-dev,
    - debian/patches/: Remove all Ubuntu-created patches (merged
      upstream).

 -- Daniel T Chen <crimsun@ubuntu.com>  Mon, 28 May 2007 22:30:44 +0100

pulseaudio (0.9.6-1) unstable; urgency=low

  * New Upstream Version.
    + Fix remote DOS vulnerabilities. (CVE-2007-1804)
    + Add support for suspended alsa sinks and sources.
    + Correct parameter handling in esdcompat. (Closes: #414355)
    + Handle ALSA frame size changes. (Closes: #423887)
    + Don't unload module-hal-detect if HAL doesn't report any devices.
             (Closes: #395893)
  * debian/patches: Remove all patches merged upstream.
    - 02_ifexists_else_endif.dpatch
    - 03_r1352_firefox_workaround.dpatch
    - 04_r1373_JavaSound_support.dpatch
    - 05_t28_wrong-endian-convert.dpatch
    - 06_pulseaudio-0.9.5-suspend.dpatch
  * debian/rules: Port to CDBS.
  * debian/patches: Rework patch series for quilt.
  * debian/control: Add libatomic-ops-dev to Build-Depends.

 -- CJ van den Berg <cj@vdbonline.com>  Mon, 28 May 2007 00:53:28 +0200

pulseaudio (0.9.5-7ubuntu1) gutsy; urgency=low

  * Merge from Debian unstable, remaining changes:
    - debian/control:
      + Add lsb-base (>= 3) to pulseaudio's dependencies,
      + Adhere to DebianMaintainerField policy,
    - debian/patches/:
      + Add 10_fix_DoS_vulns.dpatch (pA ticket 67) and
        11_disallow_excessively_high_sampling_rates.dpatch,
      + Drop 06_fix_suspend.dpatch in favour of
        06_pulseaudio-0.9.5-suspend.dpatch,
      + Retain 07_fix_esdcompat_bashism.dpatch and
        09_fix_esd_max_samplesize.dpatch.

 -- Daniel T Chen <crimsun@ubuntu.com>  Fri, 25 May 2007 01:32:39 -0400

pulseaudio (0.9.5-7) unstable; urgency=low

  * debian/control: Make pulseaudio-module-hal depend on hal, not just
    libhal. (Closes: #411501)

 -- CJ van den Berg <cj@vdbonline.com>  Mon, 19 Feb 2007 22:11:48 +0100

pulseaudio (0.9.5-6) unstable; urgency=low

  * debian/patches/06_pulseaudio-0.9.5-suspend.dpatch:
    + Added. Handle -ESTRPIPE correctly.  Allows pulseaudio to survive suspend
      operations on ALSA devices (e.g. s2disk). Thanks to Tobias Diedrich.
      (Closes: #406768)

 -- CJ van den Berg <cj@vdbonline.com>  Mon, 12 Feb 2007 11:24:50 +0100

pulseaudio (0.9.5-5ubuntu4) feisty; urgency=low

  * add 09_fix_esd_max_samplesize.dpatch to make sure the login and logout
    gnome sounds can be processed on remote connections. 

 -- Oliver Grawert <ogra@ubuntu.com>  Tue,  6 Mar 2007 14:14:08 +0100

pulseaudio (0.9.5-5ubuntu3) feisty; urgency=low

  * debian/control:
    - Add lsb-base (>= 3) to pulseaudio's dependencies,
    - Adhere to DebianMaintainerField policy,
    - Pull in fix from Debian's 0.9.5-7 adding hal to
      pulseaudio-module-hal's dependencies,
  * debian/pulseaudio.init: LSB-ify.

 -- Daniel T Chen <crimsun@ubuntu.com>  Sun, 25 Feb 2007 02:30:31 -0500

pulseaudio (0.9.5-5ubuntu2) feisty; urgency=low

  * added 06_fix_suspend.dpatch from http://pulseaudio.org/ticket/26
  * added 07_fix_esdcompat_bashism.dpatch to avoid esdcompat trying to 
    shift an empty $1 on POSIX shells

 -- Oliver Grawert <ogra@ubuntu.com>  Tue, 30 Jan 2007 23:50:57 +0100

pulseaudio (0.9.5-5ubuntu1) feisty; urgency=low

  * Merge from Debian unstable, remaining change:
    - debian/{control,rules}: Don't use jack or asyncns.

 -- Daniel T Chen <crimsun@ubuntu.com>  Mon, 29 Jan 2007 10:36:35 -0500

pulseaudio (0.9.5-5) unstable; urgency=low

  * debian/control: Make Build-deps more specific. (Closes: #401111)
  * debian/pulseaudio.init: Make sure files in /var/run/pulse exist before
      calling chown and chmod. (Closes: #405869)

 -- CJ van den Berg <cj@vdbonline.com>  Mon,  8 Jan 2007 23:02:53 +0100

pulseaudio (0.9.5-4ubuntu2) feisty; urgency=low

  * disable libasyncns to fix ftbfs 

 -- Oliver Grawert <ogra@ubuntu.com>  Sat, 20 Jan 2007 11:10:59 +0100

pulseaudio (0.9.5-4ubuntu1) feisty; urgency=low

  * merge from debian unstable
    * keep jack removal

 -- Oliver Grawert <ogra@ubuntu.com>  Tue, 28 Nov 2006 19:51:21 +0100

pulseaudio (0.9.5-4) unstable; urgency=low

  * Add comment about resampling methods and CPU consumption to
    README.Debian (Closes: #391455)
  * debian/patches/03_r1352_firefox_workaround.dpatch:
    + Added. Fix padsp to work with firefox. Patch created from
      SVN revision 1352.
  * debian/patches/04_r1373_JavaSound_support.dpatch:
    + Added. Fix padsp to work with JavaSound. Patch created from
      SVN revision 1373.
  * debian/patches/05_t28_wrong-endian-convert.dpatch:
    + Added. Add additional sample conversions to sconv.c to support
      BE <-> LE network audio.
      Patch from http://www.pulseaudio.org/ticket/28

 -- CJ van den Berg <cj@vdbonline.com>  Wed, 18 Oct 2006 23:10:47 +0200

pulseaudio (0.9.5-3ubuntu1) feisty; urgency=low

  * indeed remove the jack plugin from debian/control as well 

 -- Oliver Grawert <ogra@ubuntu.com>  Tue, 14 Nov 2006 21:05:29 +0100

pulseaudio (0.9.5-3ubuntu0) feisty; urgency=low

  * initial package
  * disable jack
  * disable asyncns

 -- Oliver Grawert <ogra@ubuntu.com>  Sun, 12 Nov 2006 20:00:18 +0100

pulseaudio (0.9.5-3) unstable; urgency=low

  * Add support for .ifexists configuration directive.
  * Make default.pa use ifexists when loading optional modules.
  * Recommend instead of Depend on pulseaudio-module-hal. (Closes: #391232)
  * Recommend libasound2-plugins instead of -plugins-pulse. (Closes: #391254)

 -- CJ van den Berg <cj@vdbonline.com>  Fri,  6 Oct 2006 01:12:05 +0200

pulseaudio (0.9.5-2) unstable; urgency=low

  * Add myself to uploaders
  * Put libpulse-dev and libpulse0 in the right sections.

 -- Sjoerd Simons <sjoerd@debian.org>  Tue,  3 Oct 2006 15:49:12 +0200

pulseaudio (0.9.5-1) unstable; urgency=low

  * Initial release (Closes: #378626)

 -- CJ van den Berg <cj@vdbonline.com>  Mon, 28 Aug 2006 00:31:10 +0200