Newer
Older
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
* debian/patches/05_rtph264pay_short_startcodes.patch:
+ Patch from upstream GIT to let rtph264 cope with the shorter
startcodes that are now used by by x264enc. This fixes interoperability
with Google Video and Nokia N900 among others.
-- Sjoerd Simons <sjoerd@debian.org> Fri, 04 Jun 2010 12:51:01 +0100
gst-plugins-good0.10 (0.10.23-3) unstable; urgency=low
* debian/patches/02_pulsesink-reuse.patch:
+ Patch from upstream GIT to fix reuse of pulsesink.
-- Sebastian Dröge <slomo@debian.org> Wed, 02 Jun 2010 10:54:42 +0200
gst-plugins-good0.10 (0.10.23-2) unstable; urgency=low
* debian/patches/04_theora_delivery_method.patch
+ Added. Let the theora payloader advertise delivery-method in its caps.
Needed for backwards compatibility with older gstreamer/farsight
versions. (From Gnome bugzilla #618940)
-- Sjoerd Simons <sjoerd@debian.org> Mon, 31 May 2010 22:31:06 +0100
gst-plugins-good0.10 (0.10.23-1) unstable; urgency=low
* New upstream release, "Stylish Kids in Riot".
-- Sebastian Dröge <slomo@debian.org> Mon, 31 May 2010 05:42:46 +0200
gst-plugins-good0.10 (0.10.22.3-1) unstable; urgency=low
* New upstream pre-release:
+ debian/patches/*:
- Drop all VP8/WebM patches and other patches that
are upstream now.
-- Sebastian Dröge <slomo@debian.org> Wed, 26 May 2010 15:34:01 +0200
gst-plugins-good0.10 (0.10.22.2-3) unstable; urgency=low
* Upload to unstable.
-- Sebastian Dröge <slomo@debian.org> Thu, 20 May 2010 13:55:29 +0200
gst-plugins-good0.10 (0.10.22.2-2) experimental; urgency=low
* debian/patches/00*:
+ Add support for VP8 in the AVI, Matroska and QT/MP4 plugins
and fix some Matroska issues.
* debian/patches/04-pulse-0001-pulse-Don-t-lock-the-mainloop-in-NULL.patch:
+ Don't try to use a NULL pulse mainloop.
-- Sebastian Dröge <slomo@debian.org> Tue, 18 May 2010 20:59:55 +0200
gst-plugins-good0.10 (0.10.22.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/gstreamer-plugins-good.install,
debian/control.in:
- Ship the imagefreeze and oss4audio plugins here, they were
moved from gstreamer0.10-plugins-bad.
- Add conflicts for gstreamer0.10-plugins-bad because of the
moved capssetter element.
* debian/patches/01_efence-configure-check.patch:
+ Fix configure check for efence.
-- Sebastian Dröge <slomo@debian.org> Sat, 15 May 2010 09:55:08 +0200
gst-plugins-good0.10 (0.10.22-1) unstable; urgency=low
* New upstream release, "Square One":
+ debian/build-deps.in,
debian/rules:
- Build depend on GStreamer core/base >= 0.10.29.
-- Sebastian Dröge <slomo@debian.org> Wed, 28 Apr 2010 09:44:17 +0200
gst-plugins-good0.10 (0.10.21.3-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Mon, 26 Apr 2010 08:01:09 +0200
gst-plugins-good0.10 (0.10.21.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/build-deps.in,
debian/rules:
- Build depend on GStreamer core/base >= 0.10.28.2.
* debian/build-deps.in,
debian/control.in:
+ (Build-) depend on GStreamer core/base documentation to get
documentation cross references right.
-- Sebastian Dröge <slomo@debian.org> Thu, 15 Apr 2010 13:56:53 +0200
gst-plugins-good0.10 (0.10.21-1) unstable; urgency=low
* New upstream stable release, "Lemons".
-- Sebastian Dröge <slomo@debian.org> Tue, 09 Mar 2010 09:48:28 +0000
gst-plugins-good0.10 (0.10.19-1) unstable; urgency=low
* New upstream stable release, "Closer to the Edit":
+ debian/rules,
debian/build-deps.in:
- Build depend on gstreamer and gst-plugins-base >= 0.10.27.
-- Sebastian Dröge <slomo@debian.org> Mon, 08 Mar 2010 10:01:27 +0000
gst-plugins-good0.10 (0.10.18.3-1) experimental; urgency=low
* New upstream pre-release:
+ debian/rules,
debian/build-deps.in:
- Build depend on gstreamer and gst-plugins-base >= 0.10.26.3.
-- Sebastian Dröge <slomo@debian.org> Thu, 25 Feb 2010 08:27:57 +0100
gst-plugins-good0.10 (0.10.18.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/gstreamer-plugins-good.install,
debian/control.in:
- Add shapewipe plugin, which moved from gst-plugins-bad. Also
add Replaces for gst-plugins-bad << 0.10.17.2.
+ debian/build-deps.in:
- Build depend on gst-plugins-base 0.10.26.2.
-- Sebastian Dröge <slomo@debian.org> Fri, 19 Feb 2010 13:51:58 +0100
gst-plugins-good0.10 (0.10.18-1) unstable; urgency=low
* New upstream release, "Short Circuit":
+ debian/rules,
debian/build-deps.in:
- Update GStreamer and gst-plugins-base build dependencies to >= 0.10.26.
-- Sebastian Dröge <slomo@debian.org> Thu, 11 Feb 2010 10:31:48 +0100
gst-plugins-good0.10 (0.10.17.3-1) experimental; urgency=low
* debian/build-deps.in,
debian/gstreamer-plugins-good.install:
+ Remove HAL plugin, HAL will most probably be dropped soon and
nobody uses this plugin anymore.
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Fri, 05 Feb 2010 10:10:51 +0100
gst-plugins-good0.10 (0.10.17.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/rules,
debian/control.in:
- Build depend on GStreamer 0.10.25.2, gst-plugins-base 0.10.25.2
and GLib 2.18.
+ Fixes demuxing of some MOV files (Closes: #561227).
+ Fixes FTBFS with gcc 4.5 (Closes: #564998).
* debian/control.in:
+ Fix typo in package description (Closes: #557368).
+ Remove David I. Lehn from Uploaders (Closes: #557285).
-- Sebastian Dröge <slomo@debian.org> Wed, 27 Jan 2010 07:56:17 +0100
gst-plugins-good0.10 (0.10.17-1) unstable; urgency=low
* debian/build-deps.in:
+ Build depend on pulseaudio >= 0.9.20 for additional
features.
* New upstream release, "They used to sparkle".
-- Sebastian Dröge <slomo@debian.org> Tue, 17 Nov 2009 09:17:35 +0100
gst-plugins-good0.10 (0.10.16.3-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Fri, 13 Nov 2009 07:58:08 +0100
gst-plugins-good0.10 (0.10.16.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/patches/00*pulse*.patch,
debian/patches/00*equalizer*.patch,
debian/patches/04_oss-rank.patch:
- Dropped, merged upstream.
+ debian/build-deps.in,
debian/rules:
- Update build dependencies.
-- Sebastian Dröge <slomo@debian.org> Tue, 10 Nov 2009 10:28:49 +0100
gst-plugins-good0.10 (0.10.16-5) unstable; urgency=low
* debian/patches/0021-pulsesink-Only-set-the-volume-on-stream-connection-i.patch:
+ Only set the volume on stream connection if pulse >= 0.9.20 is available,
this prevents weird volume changes in totem.
-- Sebastian Dröge <slomo@debian.org> Fri, 30 Oct 2009 10:33:31 +0100
gst-plugins-good0.10 (0.10.16-4) unstable; urgency=low
* debian/patches/000{1,2}-equalizer*.patch:
+ Patches from upstream GIT to fix equalizer in stereo mode and
to use better filters for the first and last band.
* debian/patches/00[1-20]-pulse*.patch:
+ Patches from upstream GIT to improve PulseAudio plugin and fix
some major issues, like decreasing the volume after every track
in some cases.
-- Sebastian Dröge <slomo@debian.org> Sun, 18 Oct 2009 14:00:56 +0200
gst-plugins-good0.10 (0.10.16-3) unstable; urgency=low
* debian/patches/04_oss-rank.patch:
+ Downgrade the rank of osssrc to secondary
* debian/rules: Change default audio input to autoaudiosrc
-- Sjoerd Simons <sjoerd@debian.org> Wed, 07 Oct 2009 22:33:02 +0100
gst-plugins-good0.10 (0.10.16-2) unstable; urgency=low
* debian/rules:
+ Use libgudev on Linux for v4l2 device detection.
-- Sebastian Dröge <slomo@debian.org> Wed, 30 Sep 2009 08:26:07 +0200
gst-plugins-good0.10 (0.10.16-1) unstable; urgency=low
* New upstream release, 'Secret Handshakes'.
-- Sebastian Dröge <slomo@debian.org> Sun, 30 Aug 2009 11:02:26 +0200
gst-plugins-good0.10 (0.10.15.5-1) experimental; urgency=low
* New upstream pre-release.
* debian/control.in:
+ Update Standards-version to 3.8.3, no additional changes needed.
-- Sebastian Dröge <slomo@debian.org> Wed, 26 Aug 2009 17:39:36 +0200
gst-plugins-good0.10 (0.10.15.3-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Mon, 17 Aug 2009 08:11:59 +0200
gst-plugins-good0.10 (0.10.15.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/build-deps.in,
debian/rules:
- Update build dependencies.
+ debian/control.in,
debian/gstreamer-plugins-good.install:
- Add the rtpmanager plugin which was moved from gst-plugins-bad.
For this also add Replaces for gst-plugins-bad << 0.10.13.2.
+ debian/patches/01_equalizer-integer-arithmetic-distortions.patch,
debian/patches/02_SA35205-pngdec-integer-overflow.patch:
- Dropped, merged upstream.
* debian/control.in:
+ Update Standards-version to 3.8.2, no additional changes needed.
-- Sebastian Dröge <slomo@debian.org> Wed, 12 Aug 2009 07:13:08 +0200
gst-plugins-good0.10 (0.10.15-2) unstable; urgency=high
* debian/patches/01_equalizer-integer-arithmetic-distortions.patch:
+ Patch from upstream GIT to fix distortions when the integer
arithmetic mode of the equalizer is used.
* debian/patches/02_SA35205-pngdec-integer-overflow.patch:
+ SECURITY: SA35205 - PNG Processing Integer Overflow Vulnerability
Patch from upstream GIT to fix an integer overflow in pngdec:
A malformed (or simply huge) PNG file can lead to integer overflow in
calculating the size of the output buffer, leading to crashes or buffer
overflows later (Closes: #531631).
-- Sebastian Dröge <slomo@debian.org> Wed, 03 Jun 2009 08:22:36 +0200
gst-plugins-good0.10 (0.10.15-1) unstable; urgency=low
* New upstream release, 'I've been up all night'.
-- Sebastian Dröge <slomo@debian.org> Wed, 20 May 2009 23:19:36 +0200
gst-plugins-good0.10 (0.10.14.3-1) experimental; urgency=low
* New upstream pre-release:
+ Fixes regression in AVI seeking (Closes: #528813).
+ debian/patches/01_rtp-libm-linking.patch:
- Dropped, merged upstream.
+ debian/gstreamer-plugins-good.install,
debian/control.in:
- Add the flv, deinterlace and y4menc plugins that
were moved from gst-plugins-bad.
* debian/control.in:
+ Change section of the debug package to debug and add ${misc:Depends}
to it's dependencies.
-- Sebastian Dröge <slomo@debian.org> Sat, 16 May 2009 11:28:14 +0200
gst-plugins-good0.10 (0.10.14.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/patches/01_gconf-notifications.patch:
- Dropped, merged upstream.
+ debian/rules,
debian/build-deps.in:
- Updated build dependencies.
+ debian/patches/01_rtp-libm-linking.patch:
- Link with -lm to fix unresolved symbols.
* debian/control.in:
+ Update Standards-version to 3.8.1, no additional changes needed.
-- Sebastian Dröge <slomo@debian.org> Tue, 12 May 2009 08:59:05 +0200
gst-plugins-good0.10 (0.10.14-2) unstable; urgency=low
* Upload to unstable.
-- Sebastian Dröge <slomo@debian.org> Fri, 06 Mar 2009 23:41:50 +0100
gst-plugins-good0.10 (0.10.14-1) experimental; urgency=low
* New upstream release, 'Disaffected Affectation'.
* debian/patches/02_no-Werror.patch,
debian/rules:
+ Pass -Wno-error via C(XX)FLAGS instead of patching configure.
* debian/patches/01_gconf-notifications.patch:
+ Disconnect GConf notifications after usage, patch from upstream GIT.
-- Sebastian Dröge <slomo@debian.org> Fri, 20 Feb 2009 10:31:38 +0100
gst-plugins-good0.10 (0.10.13.3-1) experimental; urgency=low
* debian/build-deps.in:
+ Build depend on gstreamer0.10-plugins-base 0.10.22 for the
new videotestsrc colors to fix the videocrop unit test.
* debian/gstreamer-plugins-good.install:
+ Include the new equalizer presets.
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Mon, 16 Feb 2009 15:30:35 +0100
gst-plugins-good0.10 (0.10.13.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/patches/04_equalizer-coefficients.patch,
debian/patches/05_soup-live-source.patch,
debian/patches/06_libv4l.patch,
debian/patches/07_pulse-hang-and-thread-leak.patch,
debian/patches/99_autoreconf.patch:
- Dropped, merged upstream.
+ debian/rules,
debian/build-deps.in:
- Build depend on gstreamer and gst-plugins-base 0.10.22.
- Build depend on pulseaudio 0.9.13 to enable some optional
features in the pulse plugin.
-- Sebastian Dröge <slomo@debian.org> Sat, 07 Feb 2009 20:36:03 +0100
gst-plugins-good0.10 (0.10.13-2) experimental; urgency=low
* debian/patches/07_pulse-hang-and-thread-leak.patch:
+ Patches from upstream GIT to fix some deadlocks when
the pulseaudio daemon disappears and also fix
a memory leak.
-- Sebastian Dröge <slomo@debian.org> Mon, 26 Jan 2009 15:41:46 +0100
gst-plugins-good0.10 (0.10.13-1) experimental; urgency=low
* New upstream security release, 'Blatant Discouragement':
+ Fix potential buffer overflows while reading quicktime headers.
Security issue noticed by Tobias Klein (TKADV2009-0xx).
+ debian/patches/99_autoreconf.patch:
- Updated for the new release.
* debian/build-deps.in:
+ Build depend on libcairo2-dev instead of the virtual package
libcairo-dev.
* -
-- Sebastian Dröge <slomo@debian.org> Mon, 26 Jan 2009 15:41:45 +0100
gst-plugins-good0.10 (0.10.11-2) experimental; urgency=low
* debian/patches/06_libv4l.patch,
debian/patches/99_autoreconf.patch,
debian/rules:
+ Patch from upstream CVS to use libv4l for the v4l2 plugin instead
of direct access to the v4l device. This adds support for a lot
more v4l2 devices.
-- Sebastian Dröge <slomo@debian.org> Wed, 05 Nov 2008 12:38:36 +0100
gst-plugins-good0.10 (0.10.11-1) experimental; urgency=low
* New upstream release, 'Secondary Consideration'.
-- Sebastian Dröge <slomo@debian.org> Sat, 25 Oct 2008 09:39:23 +0200
gst-plugins-good0.10 (0.10.10.4-1) experimental; urgency=low
[ Loic Minier ]
* Set gstreamer0.10-pulseaudio's Section to sound to match overrides.
[ Sebastian Dröge ]
* New upstream pre-release.
* debian/patches/04_equalizer-coefficients.patch:
+ Patch from upstream bugtracker to not recalculate the equalizer
coefficients for every single buffer but only when it's needed.
* debian/patches/05_soup-live-source.patch:
+ Patch from upstream bugtracker to allow souphttpsrc to work
as live source and have it provide timestamps.
-- Sebastian Dröge <slomo@debian.org> Wed, 22 Oct 2008 11:08:03 +0200
gst-plugins-good0.10 (0.10.10.3-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Sat, 18 Oct 2008 10:23:40 +0200
gst-plugins-good0.10 (0.10.10.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/rules,
debian/build-deps.in:
- Build depend on gstreamer and gst-plugins-base >= 0.10.21.
+ debian/build-deps.in:
- Build depend on FLAC >= 1.1.3.
- Build depend on bzip2.
-- Sebastian Dröge <slomo@debian.org> Sat, 11 Oct 2008 15:42:49 +0200
gst-plugins-good0.10 (0.10.10-1) experimental; urgency=low
* New upstream release, 'Barely Moving'.
-- Sebastian Dröge <slomo@debian.org> Thu, 28 Aug 2008 10:29:42 +0200
gst-plugins-good0.10 (0.10.9.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/build-deps.in,
debian/gstreamer-plugins-good.install:
- Remove the cdio plugin, it moved to gst-plugins-ugly because libcdio
is GPL licensed.
* debian/rules:
+ Build depend on gstreamer >= 0.10.20-3 for the new virtual package
names.
* debian/control.in:
+ Wrap control fields.
+ Depend on gstreamer0.10-plugins-base as some plugins need it.
-- Sebastian Dröge <slomo@debian.org> Fri, 15 Aug 2008 09:28:10 +0200
gst-plugins-good0.10 (0.10.9-2) experimental; urgency=low
* debian/control.in,
debian/rules:
+ Use new automatic codec installation infrastructure.
-- Sebastian Dröge <slomo@debian.org> Sat, 09 Aug 2008 16:56:46 +0200
gst-plugins-good0.10 (0.10.9-1) experimental; urgency=low
* New upstream release, 'Steam Train Rolling'.
-- Sebastian Dröge <slomo@debian.org> Fri, 01 Aug 2008 11:32:53 +0200
gst-plugins-good0.10 (0.10.8.4-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Tue, 29 Jul 2008 12:01:45 +0200
gst-plugins-good0.10 (0.10.8.3-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Sat, 26 Jul 2008 12:34:57 +0200
gst-plugins-good0.10 (0.10.8.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/patches/10_speex_caps.patch,
debian/patches/11_rtsp_fdleak.patch,
debian/patches/12_matroskamux_track_duration.patch,
debian/patches/13_equalizer.patch:
- Dropped, merged upstream.
+ debian/build-deps.in,
debian/control.in,
debian/gstreamer-pulseaudio.install,
debian/rules:
- Add the pulseaudio plugin.
+ debian/gstreamer-plugins-good.install,
debian/control.in:
- Add the interleave and replaygain plugins.
+ debian/build-deps.in,
debian/rules:
- Update gstreamer, gst-plugins-base and libcdio build dependencies.
* debian/control.in:
+ Depend on gstreamer0.10-audiosink instead of a specific audiosink
plugin (Closes: #482796).
* debian/patches/03_pulse-rank.patch:
+ Update the rank of the pulse elements to PRIMARY+10.
* debian/control.in:
+ Update Standards-version to 3.8.0, no additional changes needed.
-- Sebastian Dröge <slomo@debian.org> Sun, 20 Jul 2008 11:59:00 +0200
gst-plugins-good0.10 (0.10.8-4) unstable; urgency=low
* debian/patches/13_equalizer.patch:
+ Fix clipping in integer mode, correctly implement passthrough mode if
all bands have a gain of 0dB and delay filter coefficient calculation
until they're really needed. Patch from upstream CVS.
-- Sebastian Dröge <slomo@debian.org> Mon, 02 Jun 2008 13:44:41 +0200
gst-plugins-good0.10 (0.10.8-3) unstable; urgency=low
* debian/patches/11_rtsp_fdleak.patch
- Added. Fix filedescriptor leak on errors. (From upstream CVS)
* debian/patches/12_matroskamux_track_duration.patch
- Added. Fix track time calculation when muxing matroska files (From
upstream CVS)
-- Sjoerd Simons <sjoerd@debian.org> Sun, 01 Jun 2008 16:15:48 +0200
gst-plugins-good0.10 (0.10.8-2) unstable; urgency=low
* debian/patches/10_speex_caps.patch
- Added. Fix speexenc and rtpspeexpay caps negotiation (From gnome
bugzilla #465146)
-- Sjoerd Simons <sjoerd@debian.org> Fri, 25 Apr 2008 21:51:20 +0200
gst-plugins-good0.10 (0.10.8-1) unstable; urgency=low
* New upstream bugfix release, 'One For The Money'.
-- Sebastian Dröge <slomo@debian.org> Thu, 24 Apr 2008 07:41:30 +0200
gst-plugins-good0.10 (0.10.7.4-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Tue, 22 Apr 2008 10:28:29 +0200
gst-plugins-good0.10 (0.10.7.3-1) experimental; urgency=low
* New upstream pre-release:
+ debian/patches/01_goom-missing-header.patch:
- Dropped, merged upstream.
+ debian/build-deps.in:
- flex and bison are not necessary anymore.
-- Sebastian Dröge <slomo@debian.org> Fri, 18 Apr 2008 10:35:19 +0200
gst-plugins-good0.10 (0.10.7.2-2) experimental; urgency=low
* debian/patches/02_no-Werror.patch:
+ Don't build with -Werror to fix FTBFS on some architectures.
-- Sebastian Dröge <slomo@debian.org> Tue, 15 Apr 2008 05:29:28 +0200
gst-plugins-good0.10 (0.10.7.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/control.in:
- Adjust conflicts for gst-plugins-bad because of moved plugins.
+ debian/rules,
debian/build-deps.in:
- Update build dependencies.
+ debian/gstreamer-plugins-good.install:
- Ship soup and goom2k1 plugins.
+ debian/rules:
- Set default audio/video sinks/srcs depending on the platform.
+ debian/patches/02_v4l2_default.patch,
debian/patches/05_speexenc_double_unref.patch,
debian/patches/75_build_docs_without_python_xml.patch,
debian/patches/80_unit-tests.patch:
- Dropped, merged upstream.
+ debian/patches/01_goom-missing-header.patch:
- Add missing header file that was forgotten.
-- Sebastian Dröge <slomo@debian.org> Mon, 14 Apr 2008 10:59:00 +0200
gst-plugins-good0.10 (0.10.7-3) unstable; urgency=low
* debian/patches/05_speexenc_double_unref.patch:
+ Added. Don't unref a buffer twice when hitting a not-negotiated error
in speexenc (from upstream CVS) (Closes: #472096)
-- Sjoerd Simons <sjoerd@debian.org> Sat, 22 Mar 2008 02:35:15 +0100
gst-plugins-good0.10 (0.10.7-2) unstable; urgency=low
* debian/patches/02_v4l2_default.patch:
+ Patch by Mario Limonciello to use v4l2 as default video source instead
of the nowadays deprecated v4l (Closes: #468073).
* debian/patches/75_build_docs_without_python_xml.patch,
debian/build-deps.in:
Stop using pyxml for building the docs (Closes: #468630).
-- Sebastian Dröge <slomo@debian.org> Tue, 11 Mar 2008 05:14:10 +0100
gst-plugins-good0.10 (0.10.7-1) unstable; urgency=low
* New upstream release, "Red Door Black":
+ debian/patches/01_linking-fixes.patch:
- Dropped, merged upstream.
-- Sebastian Dröge <slomo@debian.org> Thu, 21 Feb 2008 10:48:23 +0100
gst-plugins-good0.10 (0.10.6.4-1) experimental; urgency=low
* New upstream pre-release.
* debian/patches/99_ltmain_as-needed.patch,
debian/rules:
+ Add -Wl,-z,defs -Wl,-O1 -Wl,--as-needed to LDFLAGS to remove some
unnecessary dependencies on various packages.
* debian/patches/01_linking-fixes.patch:
+ Link gstalpha with libgstbase.
* debian/build-deps.in:
+ Build depend on libxv-dev to get Xv support in ximagsink.
-- Sebastian Dröge <slomo@debian.org> Tue, 19 Feb 2008 06:54:55 +0100
gst-plugins-good0.10 (0.10.6.3-1) experimental; urgency=low
* New upstream pre-release.
* debian/build-deps.in:
+ Build depend on gstreamer0.10-plugins-base for the unit tests.
* debian/patches/80_unit-tests.patch:
+ Disable gconfaudiosrc for the generic/states unit test.
-- Sebastian Dröge <slomo@debian.org> Thu, 14 Feb 2008 13:14:55 +0100
gst-plugins-good0.10 (0.10.6.2-1) experimental; urgency=low
[ Loic Minier ]
* Bump up type-handling build-dep to >= 0.2.14 and call it with two
arguments again.
[ Emilio Pozuelo Monfort ]
* debian/rules:
- Decide the package name and url depending on the distribution.
* debian/build-deps.in:
- Build-Depend on lsb-release.
[ Sebastian Dröge ]
* New upstream pre-release:
+ Fixes FTBFS if built twice in a row (Closes: #424398).
+ Fixes playback of realaudio streams (Closes: #430364).
+ Fixes switching of sink after song changes (Closes: #444769).
+ debian/gstreamer-plugins-good.install:
- Add new equalizer, spectrum and multifile plugins and sort
alphabetically.
+ debian/build-deps.in,
debian/rules:
- Update liboil and gstreamer build dependencies.
+ debian/patches/20_gconf-state-change.patch,
debian/patches/30_id3_gst_tag_defines.patch:
- Dropped, merged upstream.
+ debian/control.in:
- Update Replaces on gst-plugins-bad for the plugin moves.
- Update Standards-Version to 3.7.3, no additional changes needed.
* debian/rules:
+ Run the unit test suite but don't fail the build on failures.
-- Sebastian Dröge <slomo@debian.org> Sat, 09 Feb 2008 12:11:21 +0100
gst-plugins-good0.10 (0.10.6-4) unstable; urgency=low
* debian/patches/30_id3_gst_tag_defines.patch:
+ Added. Use GST_TAG_ARTIST_SORTNAME instead of the deprecated
GST_TAG_MUSICBRAINZ_SORTNAME (Closes: #452671)
+ Also add support for GST_TAG_ALBUM_SORTNAME, GST_TAG_TITLE_SORTNAME and
GST_TAG_COMPOSER
+ Based on the current CVS version of gstid3v2mux
-- Sjoerd Simons <sjoerd@debian.org> Sat, 24 Nov 2007 22:07:19 +0100
gst-plugins-good0.10 (0.10.6-3) unstable; urgency=low
* debian/rules:
+ Set GST_REGISTRY before the dh_gstscancodecs call to save the registry
somewhere on buildds without writable home and speed things up a bit.
* debian/build-deps.in:
+ Remove check from build dependencies. This is only an indirect build
dependency that is already satisfied by libgstreamer0.10-dev. configure
only checks for libgstcheck, not check.
* debian/patches/20_gconf-state-change.patch:
+ Fix errors while changing the state of the gconf sink. Patch from
upstream CVS, see http://bugzilla.gnome.org/show_bug.cgi?id=471364 .
-- Sebastian Dröge <slomo@debian.org> Tue, 25 Sep 2007 15:31:31 +0200
gst-plugins-good0.10 (0.10.6-2) unstable; urgency=low
* debian/control.in:
+ Add Replaces on gstreamer0.10-plugins-really-bad (<< 0.10.4.2), which is
maintained in the Debian Multimedia project and also contained the
WavPack plugin.
* debian/build-deps.in,
debian/rules:
+ Call dh_gstinstallcodecs to generate the codecs database.
* debian/gstreamer-plugins-good.install,
debian/gstreamer-plugins-good-doc.install,
debian/control.in:
+ Move translations from the docs package to the plugin package.
-- Sebastian Dröge <slomo@debian.org> Fri, 31 Aug 2007 09:27:06 +0200
gst-plugins-good0.10 (0.10.6-1) unstable; urgency=low
* New upstream release, "Wobble Board":
+ Fixes muxing of raw audio in Matroska files (Closes: #360536).
+ Fixes memory leak in cutter and level plugins (Closes: #425114).
+ debian/patches/20_gstavidemux-error-out-on-pull_range.patch,
debian/patches/30_speex-rtp-fixes.patch,
debian/patches/40_flac1.1.3.patch,
debian/patches/99_autoreconf.patch:
- Dropped, merged upstream.
+ debian/build-deps.in,
debian/rules:
- Require gstreamer and gst-plugins-base >= 0.10.13.
+ debian/gstreamer-plugins-good.install,
debian/build-deps.in,
debian/control.in:
- Add wavpack, qtdemux, videocrop, monoscope and gamma plugins.
For this add Replaces on gstreamer0.10-plugins-bad (<< 0.10.4.2).
-- Sebastian Dröge <slomo@debian.org> Tue, 19 Jun 2007 19:28:52 +0200
gst-plugins-good0.10 (0.10.5-7) unstable; urgency=low
* debian/control.in:
+ Use ${binary:Version} instead of ${Source-Version} to make lintian happy.
* debian/patches/40_flac1.1.3.patch:
+ Patch from upstream CVS to work with flac >= 1.1.3. (Closes: #427744, #426647).
http://bugzilla.gnome.org/show_bug.cgi?id=385887
* debian/patches/99_autoreconf.patch:
+ Regenerate configure for the above change.
-- Sebastian Dröge <slomo@debian.org> Sun, 10 Jun 2007 22:58:34 +0200
gst-plugins-good0.10 (0.10.5-6) unstable; urgency=low
* debian/patches/30_speex-rtp-fixes.patch
+ Added. Fix the speex rtp payloader and depayloader. (From upstream CVS)
-- Sjoerd Simons <sjoerd@debian.org> Thu, 10 May 2007 13:27:36 +0200
gst-plugins-good0.10 (0.10.5-5) unstable; urgency=low
* Upload to unstable
* Merge experimental branch:
[ Loic Minier ]
+ Build-depend on libpng12-dev instead of libpng12-0-dev to get the
libpng12.pc file.
[ Sebastian Dröge ]
+ New upstream release 0.10.5, "The Path of Thorns":
- Fixes playback of some internet radio streams (Closes: #384377)
- debian/patches/12_gstcacasink-header-include.patch,
debian/patches/13_separate-handle-for-avc-ops.patch:
. Dropped, merged upstream
- debian/rules,
- debian/build-deps.in:
. Build depend on gstreamer / gst-plugins-base >= 0.10.10.1
- debian/gstreamer-plugins-good.install:
. Add audiofx plugin
+ debian/patches/11_esdsink-priority.patch:
- Dropped, priorities are cached in the gst registry, thus this patch had
almost no effect. This should somehow be solved by a determined priority
order for sinks
+ debian/control:
- Updated to use my debian.org mail address
+ debian/control,
debian/gstreamer-plugins-good.install:
- Only build the video4linux2 plugin on Linux. Fixes FTBFS everywhere else
+ debian/build-deps.in,
debian/rules:
- Use type-handling to only depend on libraw1394 and friends on Linux
[ Sjoerd Simons ]
+ Enable experimental plugins (the v4l2src plugin)
+ Conflict with gstreamer0.10-plugins-bad < 0.10.4 which used to provide the
v4l2src plugin.
+ Add myself to uploaders
* debian/patches/20_gstavidemux-error-out-on-pull_range.patch:
+ Updated for the new upstream version
-- Sebastian Dröge <slomo@debian.org> Tue, 10 Apr 2007 20:34:53 +0200
gst-plugins-good0.10 (0.10.4-3) unstable; urgency=high
* New patch, 13_separate-handle-for-avc-ops, to use a separate handle on
raw1394 for AVC operations.
* Urgency high as the dv plugin is unusable without this patch.
* Merge 0.10.4-2.
-- Loic Minier <lool@dooz.org> Wed, 25 Oct 2006 16:07:07 +0200
gst-plugins-good0.10 (0.10.4-2) experimental; urgency=low
* Re-add -dbg package and target at experimental.
-- Loic Minier <lool@dooz.org> Fri, 13 Oct 2006 12:27:45 +0200
gst-plugins-good0.10 (0.10.4-1) unstable; urgency=low
[ Loic Minier ]
* New patch, 11_esdsink-priority, taken from Ubuntu to include esdsink in
the candidates of autoaudiosink. (Closes: #373703)
[ Sebastian Dröge ]
* New upstream release, "Dear Leader".
- Fixes reading and parsing of some id3v2 tags. (Closes: #361310)
- Tries esdsink but does not autospawn esound. (Closes: #361841)
- Fixes crash of dv1394src by using a separate handle for AVC operations.
(Closes: #369936)
- debian/patches/10_fix-h263-caps.patch:
+ dropped, merged upstream
- debian/patches/11_esdsink-priority.patch:
+ Updated, partially upstream
- debian/rules:
+ Require libraw1394-dev (>= 1.2.1) and libiec61883-dev (>= 1.0.0)
* debian/control.in:
+ Added myself to Uploaders
* debian/gstreamer-plugins-good.install:
+ Remove the duplicated entries for the dv1394 element
* debian/compat,
debian/build-deps.in:
+ Update to debhelper compat level 5
* debian/rules,
debian/control.in:
+ Add a -dbg package
[ Loic Minier ]
* Rename patch 11_gstcacasink-header-include to
12_gstcacasink-header-include.
* Drop -dbg package for now, this version is for etch.
-- Loic Minier <lool@dooz.org> Fri, 13 Oct 2006 12:13:08 +0200
gst-plugins-good0.10 (0.10.3-3) unstable; urgency=medium
* New patch, 11_gstcacasink-header-include, to fix building of the libcaca
plugin; thanks Sam Hocevar. (Closes: #386169)
-- Loic Minier <lool@dooz.org> Sat, 9 Sep 2006 20:32:43 +0200
gst-plugins-good0.10 (0.10.3-2) unstable; urgency=low
* Bump up Standards-Version to 3.7.2.
[debian/control, debian/control.in]
* New patch from upstream to fix caps of H263 RTP streams, thanks Paul van
Tilburg.
[debian/patches/10_fix-h263-caps.patch]
* Export OIL_CPU_FLAGS=0 for commands launched during the build process as
it can cause build failures on buildds with specific hardware at build
time.
[debian/rules]
-- Loic Minier <lool@dooz.org> Wed, 17 May 2006 23:05:56 +0200
gst-plugins-good0.10 (0.10.3-1) unstable; urgency=low
* New upstream release, "Desplazado".
- Bump libgstreamer0.10-dev build-dep to 0.10.4.1.
[debian/control, debian/rules]
- Bump libgstreamer-plugins-base0.10-dev build-dep to 0.10.5.1.
[debian/build-deps.in, debian/build-deps, debian/control]
- New ximagesrc plugin.
. Add libxdamage-dev, libxext-dev, and libxfixes-dev build-deps.
[debian/build-deps.in, debian/build-deps, debian/control]
. Install in gstreamer-plugins-good.
[debian/gstreamer-plugins-good.install]
- New annodex plugin.
. Add libxml2-dev build-dep.
[debian/build-deps.in, debian/build-deps, debian/control]
. Install in gstreamer-plugins-good.
[debian/gstreamer-plugins-good.install]
- New gdkpixbuf plugin.
. Add libgtk2.0-dev build-dep.
[debian/build-deps.in, debian/build-deps, debian/control]
. Install in gstreamer-plugins-good.
[debian/gstreamer-plugins-good.install]
- New halelements plugin.
. Add libdbus-1-dev (>= 0.32) and libhal-dev (>= 0.5.6) build-deps.
[debian/build-deps.in, debian/build-deps, debian/control]
. Install in gstreamer-plugins-good.
[debian/gstreamer-plugins-good.install]
- New taglib plugin.
. Add libtag1-dev build-dep.
[debian/build-deps.in, debian/build-deps, debian/control]
. Install in gstreamer-plugins-good.
[debian/gstreamer-plugins-good.install]
- New videobalance plugin, installed in gstreamer-plugins-good.
[debian/gstreamer-plugins-good.install]
- New icydemux plugin.
. Install in gstreamer-plugins-good.
[debian/gstreamer-plugins-good.install]
-- Loic Minier <lool@dooz.org> Sat, 6 May 2006 11:52:57 +0200
gst-plugins-good0.10 (0.10.2-2) unstable; urgency=low
* Depend on the alsa package instead of recommending it, since package
managers don't honor Recommends: in all cases. (Closes: #352212)
[debian/control, debian/control.in]
-- Loic Minier <lool@dooz.org> Thu, 16 Feb 2006 14:45:38 +0100
gst-plugins-good0.10 (0.10.2-1) unstable; urgency=low
* New upstream release, "Papa was a rolling stone".
-- Loic Minier <lool@dooz.org> Tue, 14 Feb 2006 10:44:13 +0100
gst-plugins-good0.10 (0.10.1.2-1) unstable; urgency=low
* New upstream pre-release.
- Bump up libgstreamer0.10-dev build-dep to >= 0.10.2.2.
[debian/control, debian/rules]
- Bump up libgstreamer-plugins-base0.10-dev to >= 0.10.2.2.
[debian/build-deps.in, debian/build-deps, debian/control]
- Add apetag plugin.
. Install plugin.
[debian/gstreamer-plugins-good.install]
- Add cdio plugin.
. Add libcdio-dev >= 0.71 build-dep.
. Install plugin.
[debian/build-deps, debian/build-deps.in, debian/control, debian/gstreamer-plugins-good.install]
* Use upstream descriptions in packages descriptions.
[debian/control, debian/control.in]
-- Loic Minier <lool@dooz.org> Sat, 11 Feb 2006 17:30:38 +0100
gst-plugins-good0.10 (0.10.1-2) unstable; urgency=low
* Recommend gstreamer0.10-alsa and gstreamer0.10-x, as these are used by
default upstream -- in the GConf schemas -- and used from the autodetect
audio and videosinks.
[debian/control, debian/control.in]
-- Loic Minier <lool@dooz.org> Sun, 5 Feb 2006 15:08:53 +0100
gst-plugins-good0.10 (0.10.1-1) unstable; urgency=low
* New upstream release, "Li".
- Bump libgstreamer-plugins-base0.10-dev build-dep to >= 0.10.1.
[debian/build-deps.in, debian/control]
- Bump libgstreamer0.10-dev build-dep to >= 0.10.1.
[debian/control, debian/rules]
- Add id3demux plugin.
[debian/gstreamer-plugins-good.install]
- Add translated strings from /usr/share/locale.
[debian/gstreamer-plugins-good.install]
* Drop useless gst_plugins_base_lib_dev_dep, gst_plugins_base_lib_dev,
gst_plugins_base_lib, and gst_plugins_good_version definitions.
[debian/rules]
-- Loic Minier <lool@dooz.org> Sun, 15 Jan 2006 18:04:49 +0100
gst-plugins-good0.10 (0.10.0-1) unstable; urgency=low
[ Sebastien Bacher ]
* New package:
- clean patches
[debian/patches/50_cdparanoia-fix-eos-detection-of-last-title.patch]
- updated Build-Depends [debian/build-deps.in]
- updated documentation [debian/README.Debian, debian/TODO.Debian]
- updated packages list [debian/control.in, debian/gstreamer-alsa.install,
debian/gstreamer-gnomevfs.install, debian/gstreamer-misc.install,
debian/gstreamer-plugins-base-apps.instal,
debian/gstreamer-plugins-base-apps.manpages,
debian/gstreamer-plugins-base-doc.install,
debian/gstreamer-x.install, debian/libgstreamer-plugins-base-dev.install,
debian/libgstreamer-plugins-base.install, debian/gstreamer-aa.install,
debian/gstreamer-auto.install, debian/gstreamer-caca.install,
debian/gstreamer-esd.install, debian/gstreamer-misc-good.install,
debian/gstreamer-oss.install, debian/gstreamer-plugins-good-doc.install,
debian/rules]
- updated upstream location [debian/watch]
- don't use type-handling it's not useful
[debian/build-deps.in, debian/control.in, debian/rules]
[ Loic Minier ]
* Merge aa, auto, caca, and oss packages and plugins in misc and let it
provide audio and videosinks; use a couple of @GST_ABI@s where