File: ChangeLog

package info (click to toggle)
cortado 0.6.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 1,744 kB
  • sloc: java: 21,834; xml: 592; sh: 78; makefile: 17
file content (2142 lines) | stat: -rw-r--r-- 71,559 bytes parent folder | download | duplicates (6)
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
2007-05-28  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jheora/DCTDecode.java:
	(DCTDecode.....ExpandKFBlock), (DCTDecode.....ExpandBlock):
	* src/com/fluendo/jheora/Info.java: (Info):
	* src/com/fluendo/jheora/Playback.java: (Playback),
	(Playback.clearTmpBuffers), (Playback.initTmpBuffers),
	(Playback.initHuffmanTrees), (Playback.copyQTables):
	* src/com/fluendo/jheora/Quant.java: (Quant.readQTables), (Quant),
	(Quant.BuildQuantIndex_Generic), (Quant.init_dequantizer):
	Add support for 6 matrices in the decoder. Fixes #611.

2006-12-11  Wim Taymans  <wim@fluendo.com>

	Patch by: Tahseen Mohammad <tahseen dot mohammad at gmail dot com>

	* src/com/fluendo/plugin/OggDemux.java:
	(OggDemux.....OggStream.OggChain.pushPage):
	Ignore annodex streams when discovering streams.

2006-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/com/fluendo/player/Cortado.java: (Cortado...paint):
	  Log when appletDimension is wrong.
	  height == statusHeight should be acceptable.

2006-11-17  Michael Smith  <msmith@fluendo.com>

	* src/com/fluendo/plugin/AudioSinkJ2.java: (AudioSinkJ2.open):
	  Attempt to use Real Alsa Devices instead of the software mixer,
	  which doesn't provide good sync, if possible.

2006-11-16  Michael Smith  <msmith@fluendo.com>

	* src/com/fluendo/player/Cortado.java: (Cortado...init):
	  Use seekable parameter instead of live to determine seekability.

2006-11-16  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/player/Cortado.java: (Cortado...actionPerformed),
	(Cortado...realRun), (Cortado...mouseDragged),
	(Cortado...mouseMoved), (Cortado...handleMessage),
	(Cortado...newState), (Cortado...newSeek), (Cortado...start):
	Handle resize correctly.

	* src/com/fluendo/plugin/VideoSink.java: (VideoSink.setCapsFunc),
	(VideoSink.render), (VideoSink), (VideoSink.getFactoryName),
	(VideoSink.setProperty):
	Fix keep-aspect. Added scale property.

2006-11-16  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Message.java: (Message), (Message.toString),
	(Message.newEOS), (Message.newError), (Message.newWarning),
	(Message.newStateDirty):
	Add duration message.

	* README:
	* src/com/fluendo/player/Cortado.java: (Cortado),
	(Cortado...getAppletInfo), (Cortado...getRevision),
	(Cortado...getParameterInfo), (Cortado...init),
	(Cortado...handleMessage):
	Make live and seekable enums so that they can be configured
	automatically on request.
	When we get a duration message, make the stream seekable and
	non-live in auto mode.

	* src/com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.getInputStream):
	Post duration message when the length is known.

2006-11-16  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/plugin/OggDemux.java: (OggDemux.....OggStream),
	(OggDemux.....OggStream.OggStream),
	(OggDemux.....OggStream.deActivate),
	(OggDemux.....OggStream.reStart):
	Get the time right for streams that don't start with timestamp 0.

2006-11-16  Wim Taymans  <wim@fluendo.com>

	* README:
	* src/com/fluendo/player/Cortado.java: (Cortado),
	(Cortado..getParameterInfo), (Cortado..init):
	* src/com/fluendo/player/Status.java: (Status),
	(Status.paintPercent), (Status.paintButton1), (Status.paintTime),
	(Status.paintSpeaker), (Status.paint), (Status.setMessage),
	(Status.setHaveAudio), (Status.setHavePercent),
	(Status.setSeekable), (Status.mousePressed),
	(Status.mouseReleased):
	Added a live property to disable PAUSE.

2006-11-16  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/plugin/OggDemux.java:
	(OggDemux.....OggStream.reStart):
	Stream time starts from 0

2006-11-03  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	* scripts/update-source-info:
	  ready for automated building

2006-11-03  Thomas Vander Stichele  <thomas at apestaart dot org>

	* cortado.spec:
	  delete
	* cortado.spec.in:
	  template for cortado.spec
	* scripts/update-spec-file:
	  add a script to generate cortado.spec from template, filling
	  in Version and Release information
	  Use Release tag to keep track of svn revision, branch and status
	  if the nano is set
	* build.xml:
	  add a spec target

2006-11-03  Thomas Vander Stichele  <thomas at apestaart dot org>

	* scripts/update-source-info:
	  add a script to generate src/com/fluendo/jst/SourceInfo.java
	  This file describes the repository version of the source code.
	* build.xml:
	  use the new script to generate SourceInfo.java
	* src/com/fluendo/player/Cortado.java:
	(Cortado.AboutFrame.AboutFrame):
	  Get the source info and display it
	This makes sure that a cortado built from a dist still has this
	revision information

2006-11-03  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.Pad),
	(HTTPSrc.openWithConnection), (HTTPSrc.openWithSocket):
	Set default contentLength to -1 and take care we don't use invalid
	contentLength.

2006-11-02  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/player/Status.java: (Status.setBufferPercent):
	Use correct variable...

2006-11-02  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/player/Status.java: (Status.paint),
	(Status.intersectSeekbar), (Status.mouseMoved):
	Don't allow the user to press play/pause when we are buffering.

2006-11-02  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/player/Status.java: (Status.paint):
	Don't paint the time if the applet is buffering.

2006-11-02  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/player/Status.java: (Status.paint):
	Rearange status area, always show start/stop even if the file is not
	seekable.

2006-11-02  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/player/Cortado.java: (Cortado..stop):
	Ignore potential errors in shutdown.

2006-11-02  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/player/Cortado.java: (Cortado..init):
	Some more debug.

	* src/com/fluendo/plugin/HTTPSrc.java: (HTTPSrc), (HTTPSrc.Pad),
	(HTTPSrc.openWithConnection), (HTTPSrc.getInputStream),
	(HTTPSrc.getFactoryName):
	Keep track of offset, Don't rely on the server sending EOS.
	close connection on EOS.
	Work around EOS bug in MS JVM with twisted by not reading the last
	byte.

2006-11-01  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/plugin/AudioSink.java: (AudioSink.AudioClock),
	(AudioSink.AudioClock.setStarted), (AudioSink.RingBuffer.commit),
	(AudioSink.RingBuffer.setSample), (AudioSink.RingBuffer.pause),
	(AudioSink.RingBuffer.stop):
	Remove the lock of the clock to further avoid deadly embraces.

2006-11-01  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/player/Cortado.java: (Cortado..getParam),
	(Cortado..getBoolParam), (Cortado.), (Cortado..getDoubleParam),
	(Cortado..getIntParam), (Cortado..shutDown), (Cortado..init):
	Print parameter values and how they are parsed.
	Accept 1 as true for boolean parameters.

2006-11-01  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/plugin/AudioSink.java: (AudioSink.RingBuffer),
	(AudioSink.RingBuffer.setAutoStart):
	Fix potential deadly embrace.

2006-11-01  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/player/CortadoPipeline.java:
	(CortadoPipeline.doSendEvent):
	Wait for preroll befre setting the state to PLAYING after a seek.

2006-11-01  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Sink.java: (Sink.Pad):
	Backport race fix in the sink where the state change function could have
	updated the state variables before the streaming thread did, resulting
	in an inconsistent state.

2006-11-01  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Sink.java: (Sink), (Sink.Pad), (Sink.query),
	(Sink.changeState):
	Make position reporting much more accurate.

2006-11-01  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Element.java: (Element.postMessage):
	cleanup

	* src/com/fluendo/jst/SystemClock.java: (SystemClock.waitFunc):
	When we are right on time, we return OK.

	* src/com/fluendo/player/Cortado.java: (Cortado..realRun),
	(Cortado..paint), (Cortado.), (Cortado..mousePressed),
	(Cortado..mouseReleased), (Cortado..start), (Cortado..stop):
	Try to limit the number of repaints.
	Cancel any pending mouse operations in the status bar when we release
	the mouse button outside of it.

	* src/com/fluendo/player/Status.java: (Status.paint),
	(Status.setHaveAudio), (Status), (Status.setHavePercent),
	(Status.setSeekable), (Status.intersectSeekbar),
	(Status.findComponent), (Status.mouseReleased),
	(Status.mouseDragged):
	Try to limit the number of repaints.

2006-10-26  Thomas Vander Stichele  <thomas at apestaart dot org>

	* HACKING:
	* TODO:
	  add some notes
	* build.properties:
	* build.xml:
	* cortado.spec:
	  back to TRUNK
	* cortado.doap:
	  fix

=== release 0.2.2 ===

2006-10-26  Thomas Vander Stichele  <thomas at apestaart dot org>

	* NEWS:
	* RELEASE:
	* build.properties:
	* cortado.doap:
	  Releasing 0.2.2, "Really Tested Verily Exceptionally"

2006-10-26  Thomas Vander Stichele  <thomas at apestaart dot org>

	* TODO:
	* build.xml:
	* cortado.doap:
	* cortado.spec:
	  add doap file

2006-10-26  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/com/fluendo/player/CortadoPipeline.java:
	(CortadoPipeline.build):
	  wrap completely in try block and use extra var

2006-10-26  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/com/fluendo/player/CortadoPipeline.java:
	(CortadoPipeline.build):
	  Microsoft VM does not allow accessing http.agent, so try/catch

2006-10-26  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	  make sure building the player depends on distinfo target
	* src/com/fluendo/player/CortadoPipeline.java:
	(CortadoPipeline.build):
	  add a space

2006-10-26  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	  separate dist-time variables in to separate class, since it
	  should be decided at dist time and not build time
	* scripts/get-branch:
	* scripts/get-revision:
	  make scripts work in the absence of .svn dirs, returning (unknown)
	* src/com/fluendo/player/Cortado.java:
	(Cortado.AboutFrame.AboutFrame):
	* src/com/fluendo/player/CortadoPipeline.java:
	(CortadoPipeline.build):
	  Try to get the User-Agent to include http.agent if available

2006-10-26  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	* scripts/get-branch:
	* scripts/get-revision:
	  two scripts to help identify branch and revision/modification
	* src/com/fluendo/player/Cortado.java:
	(Cortado.AboutFrame.AboutFrame):
	* src/com/fluendo/player/CortadoPipeline.java: (CortadoPipeline),
	(CortadoPipeline.build):
	* src/com/fluendo/plugin/HTTPSrc.java: (HTTPSrc),
	(HTTPSrc.openWithConnection), (HTTPSrc.setProperty):
	  set User-Agent string so that we identify ourselves with
	  version of cortado, version of Java VM, and os name

2006-10-25  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/player/Cortado.java: (Cortado..init):
	Disable seeking for MS JVM.

2006-10-25  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/plugin/VideoSink.java: (VideoSink.setCapsFunc):
	Add comment.

2006-10-25  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/plugin/VideoSink.java: (VideoSink.setCapsFunc):
	Don't mess with the component size, the parent does that for us.

2006-10-25  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Pipeline.java: (Pipeline.reCalcState):
	release lock when continuing the state change.

2006-10-25  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Pipeline.java: (Pipeline.doChildStateChange):
	More DEBUG.

	* src/com/fluendo/plugin/OggDemux.java:
	(OggDemux.....OggStream.Pad):
	Make sure the streaming thread is not running when we do our cleanup.

2006-10-25  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Pipeline.java: (Pipeline.shutDown):
	Don't join the state thread, it might be performing a callback when
	being joined.

2006-10-25  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Pad.java: (Pad), (Pad.pauseTask):
	Take lock a little differently.

	* src/com/fluendo/jst/Pipeline.java: (Pipeline.shutDown):
	Don't try to join the bus thread as this might cause a deadly embrace.

	* src/com/fluendo/plugin/OggDemux.java:
	(OggDemux.....OggStream.reStart):
	Add some debug for the segment/timestamps

2006-10-25  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Pad.java: (Pad.startTask):
	Avoid deadly embrace, the variable is now unprotected but that is fine.

	* src/com/fluendo/jst/Sink.java: (Sink.Pad):
	* src/com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.Pad), (HTTPSrc),
	(HTTPSrc.openWithConnection), (HTTPSrc.openWithSocket),
	(HTTPSrc.getInputStream):
	* src/com/fluendo/plugin/OggDemux.java:
	(OggDemux.....OggStream.OggChain.activate),
	(OggDemux.....OggStream.OggChain.deActivate),
	(OggDemux.....OggStream.OggChain.pushPage),
	(OggDemux.....OggStream.Pad):
	* src/com/fluendo/plugin/Queue.java: (Queue.Pad):
	* src/com/fluendo/plugin/TheoraDec.java: (TheoraDec..Pad):
	* src/com/fluendo/plugin/VorbisDec.java: (VorbisDec..Pad):
	Fix debug.
	Don't try to seek percentagesize when we don't know the total length.

2006-10-25  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Pad.java: (Pad.startTask), (Pad.stopTask):
	Protect task state with streamLock.

	* src/com/fluendo/jst/Pipeline.java: (Pipeline.doChildStateChange):
	* src/com/fluendo/jst/Sink.java: (Sink.changeState):
	Add debug info for state changes.

	* src/com/fluendo/player/Cortado.java: (Cortado..handleMessage):
	Fix indentation.

	* src/com/fluendo/player/Status.java: (Status.mousePressed),
	(Status.mouseReleased), (Status.mouseMoved):
	Don't try to seek when we are stopped.

	* src/com/fluendo/plugin/AudioSink.java:
	(AudioSink.RingBuffer.setAutoStart):
	Fix potential deadly embracy between clock lock and ringbuffer lock.

	* src/com/fluendo/plugin/AudioSinkJ2.java: (AudioSinkJ2.delay):
	Add debug info.

	* src/com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.Pad),
	(HTTPSrc.openWithConnection), (HTTPSrc), (HTTPSrc.openWithSocket),
	(HTTPSrc.getInputStream):
	Add more debug info.
	Catch seek failures in a better way.
	Add start of IE JVM compatible HTTP range requests. 

	* src/com/fluendo/plugin/OggDemux.java:
	(OggDemux.....OggStream.Pad):
	Don't deactivate non-existing chains.

2006-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/com/fluendo/player/Cortado.java: (Cortado..getAppletInfo),
	(Cortado..init), (Cortado.AppFrame.windowDeiconified),
	(Cortado.AppFrame), (Cortado.AppFrame.windowIconified),
	(Cortado.AppFrame.windowOpened), (Cortado),
	(Cortado.AboutFrame.AboutFrame):
	  trying to get svn revision in the output

2006-10-24  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/player/Status.java: (Status.paint):
	Don't crash on null pointers.

2006-10-24  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Pad.java: (Pad.run), (Pad), (Pad.startTask),
	(Pad.pauseTask):
	Catch and report Exceptions exiting the taskFunc instead of stopping the
	task.
	Fix possible race in shutting down a task.

	* src/com/fluendo/jst/Sink.java: (Sink.Pad):
	Catch prerol/render Exception and post an error.

	* src/com/fluendo/player/Cortado.java: (Cortado..init),
	(Cortado..newSeek), (Cortado.), (Cortado..start):
	Add some more debug info.

	* src/com/fluendo/player/CortadoPipeline.java:
	(CortadoPipeline.doSendEvent):
	Refuse a seek when we are not ready yet

2006-10-24  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Object.java: (Object.Object):
	Call super constructor

	* src/com/fluendo/player/Cortado.java: (Cortado..getEnum),
	(Cortado..init), (Cortado..actionPerformed),
	(Cortado..getGraphics), (Cortado.), (Cortado..run),
	(Cortado..realRun), (Cortado..newState), (Cortado..newSeek),
	(Cortado..start):
	Remove a bunch of synchronized calls that could potentially lock
	up the AWT thread.
	Add synchronized calls to init/start/stop

	* src/com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.getInputStream):
	Do some stuff differently.

2006-10-24  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Bus.java: (Bus), (Bus.post), (Bus.poll):
	Implement flush().

	* src/com/fluendo/jst/Pipeline.java: (Pipeline),
	(Pipeline.BusThread), (Pipeline.StateThread), (Pipeline.Pipeline):
	cleanup threads.

	* src/com/fluendo/jst/Pad.java: (Pad), (Pad.run):
	* src/com/fluendo/player/Cortado.java: (Cortado..start):
	* src/com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.Pad),
	(HTTPSrc.getInputStream):
	* src/com/fluendo/plugin/Queue.java: (Queue.Pad):
	Give Threads a name.
	Don't send range for offset 0.

	* src/com/fluendo/utils/Debug.java: (Debug):
	Add code to generate unique ids.

2006-10-24  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Sink.java: (Sink.Pad):
	Add needed locks.

	* src/com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.getInputStream):
	Work around IE bug of parsing absolute URLS in a documentBase.

2006-10-24  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.Pad):
	Only push EOS on fatal errors so we don't screw up seeking.

2006-10-23  Wim Taymans  <wim@fluendo.com>

	* README:
	Adds docs about hideTimeout param.

	* src/com/fluendo/player/Cortado.java: (Cortado..init),
	(Cortado..run), (Cortado.), (Cortado..realRun), (Cortado..paint),
	(Cortado..setStatusVisible), (Cortado..handleMessage),
	(Cortado..doPause), (Cortado..doPlay), (Cortado..doStop):
	Add hideTimeout param.
	Fix stop again.

2006-10-23  Wim Taymans  <wim@fluendo.com>

	* README:
	Document javascrip methods.

	* src/com/fluendo/player/Cortado.java: (Cortado..handleMessage):
	Add doPlay(),doPause(),doStop(),doSeek() methods so that they can be
	used from javascript. Fixes #155

2006-10-23  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jheora/YUVBuffer.java:
	(YUVBuffer.prepareRGBData):
	Catch Exceptions while doing color conversions. Fixes #283.

	* src/com/fluendo/player/Cortado.java: (Cortado..handleMessage):
	Don't overwrite error messages.

	* src/com/fluendo/player/CortadoPipeline.java:
	(CortadoPipeline.buildMultipart), (CortadoPipeline.cleanup):
	Post an error when the media type cannot be found.

	* src/com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.Pad):
	Post an error when streaming stops.

2006-10-23  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/player/Cortado.java: (Cortado..handleMessage):
	Make sure we never overwrite error messages. Fixes #351.

2006-10-23  Wim Taymans  <wim@fluendo.com>

	* README:
	Add showStatus param

	* src/com/fluendo/player/Cortado.java: (Cortado),
	(Cortado..getParameterInfo), (Cortado..getParam),
	(Cortado..shutdown), (Cortado.), (Cortado..init),
	(Cortado..realRun), (Cortado..paint), (Cortado..setStatusVisible),
	(Cortado..intersectStatus), (Cortado..mouseClicked),
	(Cortado..mouseEntered), (Cortado..mouseExited),
	(Cortado..mousePressed), (Cortado..mouseReleased),
	(Cortado..mouseDragged), (Cortado..mouseMoved),
	(Cortado..handleMessage), (Cortado..newState):
	Add showStatus param.
	Handle hiding/showing of status area based on param. Fixes #389.

	* src/com/fluendo/player/Status.java: (Status.setState):
	Don't error out when the statusbar is invisible when we hover over it.

2006-10-23  Wim Taymans  <wim@fluendo.com>

	* README:
	Add new properties to README

2006-10-23  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/player/Cortado.java: (Cortado),
	(Cortado.handleMessage):
	Handle errors a bit better.

	* src/com/fluendo/player/CortadoPipeline.java: (CortadoPipeline),
	(CortadoPipeline.padAdded), (CortadoPipeline.cleanup):
	Do some more cleanups.

2006-10-23  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Pipeline.java: (Pipeline),
	(Pipeline.enumSinks), (Pipeline.reCalcState),
	(Pipeline.doChildStateChange), (Pipeline.changeState):
	Catch, store, replace EOS messages and detect when all sinks posted
	EOS so that we can forward EOS to the app.

	* src/com/fluendo/jst/Sink.java: (Sink.Pad):
	Remove locks, they are already taken.

	* src/com/fluendo/player/Cortado.java: (Cortado.handleMessage):
	Stop playback on EOS.

	* src/com/fluendo/plugin/TheoraDec.java: (TheoraDec..Pad):
	* src/com/fluendo/plugin/VorbisDec.java: (VorbisDec..Pad):
	Add some debugging in EOS.

2006-10-22  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/player/Cortado.java: (Cortado.init):
	* src/com/fluendo/player/CortadoPipeline.java: (CortadoPipeline),
	(CortadoPipeline.setComponent), (CortadoPipeline.getComponent),
	(CortadoPipeline.build):
	Set documentBase when configuring HTTPSrc.

	* src/com/fluendo/plugin/HTTPSrc.java: (HTTPSrc),
	(HTTPSrc.getInputStream), (HTTPSrc.HTTPSrc), (HTTPSrc.setProperty):
	Add documentBase property and parse the URL in that context. Fixes #467.

2006-10-22  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Pad.java: (Pad):
	Add helper function.

	* src/com/fluendo/plugin/OggDemux.java: (OggDemux.....OggStream),
	(OggDemux.....OggStream.OggStream),
	(OggDemux.....OggStream.markDiscont),
	(OggDemux.....OggStream.reset),
	(OggDemux.....OggStream.isComplete),
	(OggDemux.....OggStream.activate),
	(OggDemux.....OggStream.pushPacket), (OggDemux.....OggStream.Pad):
	Combine the flow of all streams so that we don't crap out when only one
	stream is linked. Fixes #434 

2006-10-22  Wim Taymans  <wim@fluendo.com>

	* README:
	Review readme, Fixes #390.

	* src/com/fluendo/jst/Sink.java: (Sink.Pad):
	Small cleanup.

	* src/com/fluendo/player/Cortado.java: (Cortado.newState):
	Remove superfluous setState call.

2006-10-22  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Element.java: (Element),
	(Element.getStateNext), (Element.continueState):
	Make state transitions more debuggable.
	Mark element as busy while it performs a state change.

	* src/com/fluendo/jst/Pipeline.java: (Pipeline),
	(Pipeline.Pipeline), (Pipeline.add), (Pipeline.remove),
	(Pipeline.SortedEnumerator.queueNextElement),
	(Pipeline.SinkEnumerator.nextElement), (Pipeline.SinkEnumerator),
	(Pipeline.enumSinks), (Pipeline.handleSyncMessage),
	(Pipeline.getState), (Pipeline.reCalcState):
	Handle switching of clock providers.
	Mark state dirty when removing elements.
	Add helper method to mark state dirty and force a state recalc.

	* src/com/fluendo/player/CortadoPipeline.java:
	(CortadoPipeline.padRemoved):
	Remove unused sinks after all media is detected. (Fixes #157)

2006-10-21  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Pipeline.java: (Pipeline.doChildStateChange):
	changeState is supposed to be protected.

	* src/com/fluendo/player/Cortado.java: (Cortado),
	(Cortado.getParameterInfo), (Cortado.init), (Cortado.run),
	(Cortado.start):
	Fix statusThread not working after going to STOP
	Move pipeline construction to the state change.

	* src/com/fluendo/player/CortadoPipeline.java: (CortadoPipeline),
	(CortadoPipeline.setupAudioDec), (CortadoPipeline.setupVideoDec),
	(CortadoPipeline.padAdded), (CortadoPipeline.setUrl),
	(CortadoPipeline.getUrl), (CortadoPipeline.setUserId),
	(CortadoPipeline.setPassword), (CortadoPipeline.enableAudio),
	(CortadoPipeline.isAudioEnabled), (CortadoPipeline.enableVideo),
	(CortadoPipeline.isVideoEnabled), (CortadoPipeline.setComponent),
	(CortadoPipeline.getComponent), (CortadoPipeline.setBufferSize),
	(CortadoPipeline.getBufferSize), (CortadoPipeline.setBufferLow),
	(CortadoPipeline.getBufferLow), (CortadoPipeline.setBufferHigh),
	(CortadoPipeline.getBufferHigh), (CortadoPipeline.buildOgg),
	(CortadoPipeline.buildMultipart), (CortadoPipeline.capsChanged),
	(CortadoPipeline.noSuchElement), (CortadoPipeline.build):
	Fix cleanup when going to STOP.
	Give better error messages for missing codecs.

	* src/com/fluendo/plugin/OggDemux.java:
	(OggDemux.....OggStream.Pad):
	* src/com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.Pad):
	* src/com/fluendo/plugin/Queue.java: (Queue.Pad):
	* src/com/fluendo/plugin/TheoraDec.java: (TheoraDec..changeState):
	Do some more cleanups when stopping/starting.

2006-10-19  Wim Taymans  <wim@fluendo.com>

	Patch by <j at v2v dot cc>.

	* src/com/fluendo/jst/ElementFactory.java:
	Don't try to load the .ini file from the webserver. Fixes #387.

	* src/com/fluendo/player/Status.java: (Status.paintPlayPause),
	(Status.paintStop), (Status.paintSeekBar):
	Change the colors a bit to make the buttons more visible.

2006-10-19  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Pipeline.java: (Pipeline), (Pipeline.doSeek):
	Improve handling of seek wrt state changes and errors.

	* src/com/fluendo/player/Cortado.java: (Cortado),
	(Cortado.getParameterInfo), (Cortado.init), (Cortado.run),
	(Cortado.handleMessage), (Cortado.newState), (Cortado.newSeek),
	(Cortado.start):
	Add autoPlay option. Fixes #384.
	Simplify state management a little.

2006-10-19  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/player/Status.java: (Status),
	(Status.intersectButton2), (Status.intersectSeeker),
	(Status.findComponent), (Status.mouseClicked),
	(Status.mouseEntered), (Status.mouseExited), (Status.mousePressed),
	(Status.mouseReleased), (Status.mouseDragged), (Status.mouseMoved):
	Allow seeking by clicking on the timeline instead of trying to grab the
	slider. Fixes #358.

2006-10-19  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jheora/DCTDecode.java: (DCTDecode.....CopyRecon),
	(DCTDecode.....CopyNotRecon), (DCTDecode.....ReconRefFrames):
	Move UpdateUMVBorder after the loop functions.

	* src/com/fluendo/jheora/iDCT.java: (iDCT.IDctSlow), (iDCT.IDct10):
	Update IDCT 16 bit truncating updates. 

	* src/com/fluendo/player/Cortado.java: (Cortado),
	(Cortado.getParameterInfo), (Cortado.init), (Cortado.getGraphics),
	(Cortado.paint):
	Remove framerate property
	Added statusHeight property to configure the size of the status area.

	* src/com/fluendo/player/Status.java: (Status), (Status.paintStop),
	(Status.paintMessage), (Status.paintBuffering), (Status.paint),
	(Status.setHavePercent), (Status.setSeekable), (Status.setState),
	(Status.intersectButton1), (Status.intersectButton2),
	(Status.intersectSeek), (Status.mouseReleased),
	(Status.mouseDragged):
	Make statusHeight configurable.
	Make the slider handle a bit bigger.

=== release 0.2.1 ===

2006-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>

	* NEWS:
	* RELEASE:
	* build.properties:
	  releasing 0.2.1, "Flapoorke"

2006-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>

	patch by: <j at v2v dot cc>

	* README:
	  fix bufferSize default values 

2006-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	  separate out install_applet, install_class, install_doc
	* cortado.spec:
	  add a first spec file

2006-08-23  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Message.java: (Message.newError):
	Add constructor for WARNING messages.

	* src/com/fluendo/plugin/OggDemux.java: (OggDemux),
	(OggDemux.....OggStream),
	(OggDemux.....OggStream.bufferFromPacket),
	(OggDemux.....OggStream.OggChain),
	(OggDemux.....OggStream.OggChain.OggChain),
	(OggDemux.....OggStream.OggChain.isActive),
	(OggDemux.....OggStream.OggChain.activate),
	(OggDemux.....OggStream.OggChain.deActivate),
	(OggDemux.....OggStream.OggChain.reStart),
	(OggDemux.....OggStream.OggChain.findStream),
	(OggDemux.....OggStream.OggChain.resetStreams),
	(OggDemux.....OggStream.OggChain.forwardEvent),
	(OggDemux.....OggStream.OggChain.pushPage),
	(OggDemux.....OggStream.Pad),
	(OggDemux.....OggStream.getFactoryName),
	(OggDemux.....OggStream.getMime):
	Improve how new streams are typefound and handled. 
	Added field to mark the stream type.
	Add skeleton and CMML stream detection very losely based on a
	patch by Tahseen Mohammad. 
	Skip unknown and non media streams.
	Fix compilation.
	Use startsWith in typefind to reduce code.

	* src/com/fluendo/plugin/TheoraDec.java: (TheoraDec..getMime):
	* src/com/fluendo/plugin/VorbisDec.java: (VorbisDec..getMime):
	Use startsWith to reduce code.

	* src/com/fluendo/utils/MemUtils.java: (MemUtils..cmp),
	(MemUtils..set):
	Add startsWith mostly to check for signatures in typefinding.
	Make functions final to improve inlining.

2006-07-07  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/plugin/OggDemux.java:
	Improve user experience (tm)

2006-07-07  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/plugin/OggDemux.java:
	Don't try to push events when we have no chain.
	Post an error if we run EOS and still haven't found a chain.

2006-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.properties:
	  back to TRUNK

=== release 0.2.0 ===

2006-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>

	* HACKING:
	* NEWS:
	* README:
	* RELEASE:
	* build.xml:
	  make release target build everything, plus distcheck
	  add release notes, update other notes
	  Releasing 0.2.0, "Broken Record"

2006-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	  add a release target

2006-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.config.sample:
	* build.properties:
	* build.xml:
	  change "release" type to "stripped" type

2006-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	  now actually fix make distcheck by disting jst code

2006-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	  fix distcheck; it was actually building inplace and thus
	  not catching missing jst code

2006-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>

	* README:
	  update properties in use
	* src/com/fluendo/player/Cortado.java: (Cortado),
	(Cortado.getParameterInfo), (Cortado.shutdown), (Cortado.init),
	(AboutFrame.AboutFrame):
	* src/com/fluendo/player/Status.java:
	  use a double for duration, is more intuitive than HMMSS
	  only mention audio backend details if the applet is configured to
	  play audio
	  show VM information in about box

2006-05-19  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/player/Cortado.java: (Cortado),
	(Cortado.getParameterInfo), (Cortado.init):
	Remove some unused properties

2006-05-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>

	* src/com/fluendo/player/Cortado.java: (Cortado.stringToTime):
	Bounds checking!

2006-03-20  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/com/fluendo/plugin/AudioSinkJ2.java: (AudioSinkJ2.write):
	* src/com/fluendo/plugin/AudioSinkSA.java:
	(AudioSinkSA...RingReader.RingReader):
	  fix more warnings, one error left

2006-03-20  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/com/fluendo/plugin/AudioSink.java:
	(AudioSink.RingBuffer.acquire):
	* src/com/fluendo/plugin/OggDemux.java:
	(OggDemux...OggStream.pushPacket):
	* src/com/fluendo/plugin/TheoraDec.java: (TheoraDec.),
	(TheoraDec..getFirstTs):
	* src/com/fluendo/plugin/VorbisDec.java: (VorbisDec.),
	(VorbisDec..getFirstTs):
	  Fix some warnings

2006-03-20  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	  apparently 1.2 is not accepted, and it needs to be 1.3 ? Hope this
	  is ok, need to double check on 1.1 VM's.

2006-03-20  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	  add source="1.2" to javac targets, because some javac's and ant
	  complain about this

2006-03-20  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.Pad), (HTTPSrc),
	(HTTPSrc.getInputStream):
	Do typefind on the data instead of trusting the servers
	contentType. Fixes #317

	* src/com/fluendo/plugin/OggDemux.java: (OggDemux),
	(OggDemux...OggStream.getMime):
	Implement typeFind function.

2006-03-20  Thomas Vander Stichele  <thomas at apestaart dot org>

	* Makefile:
	  removed
	* build.xml:
	  added dist, distcheck and distclean targets

2006-03-20  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Pad.java: (Pad.Pad), (Pad.eventFunc), (Pad),
	(Pad.sendEvent):
	Don't crash when printing a pad name without parent.
	Grab streamLock when needed.

	* src/com/fluendo/player/Cortado.java: (Cortado.init):
	Build pipeline after we have the needed infrastructure to
	handle errors and such.

	* src/com/fluendo/player/CortadoPipeline.java:
	(CortadoPipeline.padAdded), (CortadoPipeline.setBufferLow),
	(CortadoPipeline), (CortadoPipeline.getBufferLow),
	(CortadoPipeline.setBufferHigh), (CortadoPipeline.getBufferHigh),
	(CortadoPipeline.buildOgg), (CortadoPipeline.buildMultipart),
	(CortadoPipeline.capsChanged), (CortadoPipeline.noSuchElement),
	(CortadoPipeline.build):
	Post an error when we cannot create an element.

	* src/com/fluendo/plugin/OggDemux.java:
	(OggDemux..OggStream.deActivate), (OggDemux..OggStream.pushPacket),
	(OggDemux..OggStream.OggChain.isActive),
	(OggDemux..OggStream.OggChain),
	(OggDemux..OggStream.OggChain.activate), (OggDemux..OggStream.Pad):
	First remove pad so we can throw away the eos event.
	Create new instance of the payload
	Fire noMorePads.
	post error messages when something is wrong.
	No need to take streamLock, core does that now.

	* src/com/fluendo/plugin/JPEGDec.java: (JPEGDec.Pad):
	* src/com/fluendo/plugin/MulawDec.java: (MulawDec.Pad):
	* src/com/fluendo/plugin/SmokeDec.java: (SmokeDec.Pad):
	* src/com/fluendo/plugin/TheoraDec.java: (TheoraDec..Pad):
	* src/com/fluendo/plugin/VorbisDec.java: (VorbisDec..Pad):
	No need to take streamLock, core does that for us.

	* src/com/fluendo/plugin/AudioSinkJ2.java: (AudioSinkJ2.open):
	Post better error message.

	* src/com/fluendo/plugin/Queue.java: (Queue.Pad), (Queue):
	Stop flow on EOS.
	No need for streamLock.

2006-03-20  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/com/fluendo/examples/Player2.java:
	  removed
	* src/com/fluendo/examples/Player3.java:
	  renamed to Player.java

2006-03-20  Thomas Vander Stichele  <thomas at apestaart dot org>

	* README:
	  update
	* build.xml:
	  make sure that "all" target builds in order, so the examples work

2006-03-20  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Clock.java: (Clock):
	Time are longs, avoids overflows.

	* src/com/fluendo/jst/Sink.java: (Sink.Pad):
	First pass at posting EOS.

	* src/com/fluendo/player/Cortado.java: (Cortado.handleMessage):
	Some more debugging about buffering and EOS.

	* src/com/fluendo/plugin/OggDemux.java:
	(OggDemux..OggStream.bufferFromPacket):
	Timestamp outgoing buffers.

	* src/com/fluendo/plugin/Queue.java: (Queue.updateBuffering),
	(Queue.Pad):
	Handle EOS when we are buffering. Fixes #247.

	* src/com/fluendo/plugin/TheoraDec.java: (TheoraDec..takeHeader),
	(TheoraDec..getFirstTs), (TheoraDec..Pad):
	Don't try to convert granulepos if we did not receive headers
	yet.

2006-03-20  Wim Taymans  <wim@fluendo.com>

	* TODO:
	Updated TODO.

	* src/com/fluendo/jst/Sink.java: (Sink.Pad):
	Set flushing flag correctly when we shutdown.

	* src/com/fluendo/plugin/AudioSink.java: (AudioSink.RingBuffer),
	(AudioSink.RingBuffer.acquire), (AudioSink.RingBuffer.setSample),
	(AudioSink.setCapsFunc), (AudioSink), (AudioSink.changeState):
	Fix race in going to paused.
	Don't deadlock when we try to release the audio device.

2006-02-28  Andy Wingo  <wingo@pobox.com>

	* TESTIMONIALS: New file, random testimonials culled from the
	mailing list.

2006-01-23  Wim Taymans  <wim@fluendo.com>

	* TODO:
	Updated TODO

	* src/com/fluendo/examples/Player2.java:
	(PlayPipeline.doSendEvent):
	Fix for API removal.

	* src/com/fluendo/jst/Buffer.java: (Buffer), (Buffer.create),
	(Buffer.Buffer):
	Added buffer flags.
	Prepare for using timestampEnd.

	* src/com/fluendo/jst/Event.java: (Event),
	Update newsegment event info to match GStreamer.

	(Event.parseSeekPosition), (Event.parseSeekFormat):
	* src/com/fluendo/jst/Pipeline.java: (Pipeline.doChildStateChange):
	Remove preroll hack.

	* src/com/fluendo/jst/Sink.java: (Sink), (Sink.Pad), (Sink.doSync),
	(Sink.query), (Sink.changeState):
	Remove preroll hack, parse segment info. Clip buffers outside of
	the segment. Handle DISCONT and clocking.
	
	* src/com/fluendo/plugin/AudioSink.java:
	(AudioSink.RingBuffer.commit), (AudioSink.doEvent):
	Clip around segments.

	* src/com/fluendo/plugin/HTTPSrc.java: (HTTPSrc), (HTTPSrc.Pad),
	(HTTPSrc.getInputStream):
	* src/com/fluendo/plugin/OggDemux.java: (OggDemux),
	(OggDemux..OggStream), (OggDemux..OggStream.OggStream),
	(OggDemux..OggStream.deActivate), (OggDemux..OggStream.reStart),
	(OggDemux..OggStream.getFirstTs),
	(OggDemux..OggStream.bufferFromPacket),
	(OggDemux..OggStream.pushPacket), (OggDemux..OggStream.pushPage),
	(OggDemux..OggStream.eventFunc), (OggDemux..OggStream.OggChain),
	(OggDemux..OggStream.OggChain.OggChain),
	(OggDemux..OggStream.OggChain.isActive),
	(OggDemux..OggStream.OggChain.activate),
	(OggDemux..OggStream.OggChain.deActivate),
	(OggDemux..OggStream.OggChain.reStart),
	(OggDemux..OggStream.OggChain.addStream),
	(OggDemux..OggStream.OggChain.markDiscont),
	(OggDemux..OggStream.OggChain.findStream),
	(OggDemux..OggStream.OggChain.resetStreams),
	(OggDemux..OggStream.OggChain.forwardEvent),
	(OggDemux..OggStream.OggChain.pushPage), (OggDemux..OggStream.Pad),
	(OggDemux..OggStream.getFactoryName),
	(OggDemux..OggStream.getMime), (OggDemux..OggStream.typeFind),
	(OggDemux..OggStream.OggDemux):
	Preroll sync and calc timestamps of payloads.
	Added preliminary support for chained oggs.
	Handle discont.
	
	* src/com/fluendo/plugin/OggPayload.java:
	Interface for payloads in ogg containers.

	* src/com/fluendo/plugin/TheoraDec.java: (TheoraDec..Pad),
	(TheoraDec.), (TheoraDec..TheoraDec), (TheoraDec..changeState),
	(TheoraDec..getFactoryName), (TheoraDec..getMime):
	* src/com/fluendo/plugin/VorbisDec.java: (VorbisDec),
	(VorbisDec..Pad), (VorbisDec.), (VorbisDec..VorbisDec),
	(VorbisDec..changeState), (VorbisDec..getFactoryName),
	(VorbisDec..getMime):
	Implement OggPayload.
	Handle discont.
	Remove timestamp hacks.

2006-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	* src/com/fluendo/player/Cortado.java: (Cortado.init),
	(Cortado.stop):
	* src/com/fluendo/player/CortadoPipeline.java: (CortadoPipeline),
	(CortadoPipeline.build):
	* src/com/fluendo/plugin/AudioSinkSA.java: (AudioSinkSA):
	  added an about dialog

2006-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	  add time of build as well, useful when debugging builds

2006-01-20  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/plugin/AudioSinkSA.java:
	(AudioSinkSA...RingReader.read),
	(AudioSinkSA...RingReader.RingBufferSA.read):
	Change read behaviour to please both IE and jdk

2006-01-20  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Pad.java: (Pad.setCaps):
	Don't call the listeners with null caps.

	* src/com/fluendo/plugin/AudioSinkSA.java:
	(AudioSinkSA...RingReader.stop):
	Some debugging

2006-01-20  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/plugin/AudioSinkSA.java: (AudioSinkSA),
	(AudioSinkSA...toUlaw), (AudioSinkSA...RingReader.pause),
	(AudioSinkSA...RingReader.stop):
	Redid sun.audio backend to work on bytes and do more
	accurate resampling.

2006-01-20  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/plugin/AudioSinkSA.java:
	(AudioSinkSA...RingReader.stop):
	Convert byte to int.

2006-01-20  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/plugin/AudioSinkSA.java:
	(AudioSinkSA...RingReader), (AudioSinkSA...RingReader.RingReader),
	(AudioSinkSA...RingReader.pause), (AudioSinkSA...RingReader.stop),
	(AudioSinkSA...RingReader.read),
	(AudioSinkSA...RingReader.RingBufferSA.play),
	(AudioSinkSA...RingReader.RingBufferSA),
	(AudioSinkSA...RingReader.RingBufferSA.pause),
	(AudioSinkSA...RingReader.RingBufferSA.stop),
	(AudioSinkSA...RingReader.RingBufferSA.read):
	Implement read() for IE JVM.

2006-01-19  Wim Taymans  <wim@fluendo.com>

	* TODO:
	* src/com/fluendo/plugin/Queue.java: (Queue), (Queue.clearQueue),
	(Queue.Pad):
	Handle EOS gracefully.

2006-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/com/fluendo/jst/Bus.java: (Bus.peek):
	* src/com/fluendo/jst/Pipeline.java: (Pipeline.SortedEnumerator),
	(Pipeline.SortedEnumerator.queueNextElement):
	* src/com/fluendo/player/Status.java:
	* src/com/fluendo/plugin/Queue.java: (Queue.Pad):
	  Fix Vector calls to work with 1.1 API - partially fixes applet
	  in Explorer

2006-01-19  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/plugin/AudioSinkSA.java:
	(AudioSinkSA...RingReader.stop):
	Print some errors when unimplemented methods are called.

2006-01-19  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/player/Cortado.java: (Cortado.paint):
	Don't try to render with bogus width/height values.

2006-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>

	* README:
	* TODO:
	  update
	* build.xml:
	  build non-jikes with correct debug as well

2006-01-19  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Pipeline.java: (Pipeline.useClock),
	(Pipeline.add), (Pipeline), (Pipeline.remove):
	Don't accept null elements in add and remove.

2006-01-19  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/player/Cortado.java: (Cortado), (Cortado.init),
	(Cortado.handleMessage):
	Cleanups.
	Pause pipeline while buffering.
	
	* src/com/fluendo/plugin/AudioSink.java:
	(AudioSink.RingBuffer.setSample), (AudioSink.RingBuffer.play),
	(AudioSink.RingBuffer.pause):
	* src/com/fluendo/plugin/AudioSinkJ2.java:
	Compile fixes.

	* src/com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.Pad):
	Post stream status messages.

	* src/com/fluendo/plugin/Queue.java: (Queue.updateBuffering),
	(Queue.Pad):
	Never pause the stream when we are buffering so that we can
	preroll while buffering.

2006-01-19  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/player/Cortado.java: (Cortado.stringToTime),
	(Cortado.handleMessage):
	Update buffering info.

	* src/com/fluendo/player/Status.java: (Status):
	Print buffering nicely.

	* src/com/fluendo/plugin/AudioSink.java:
	(AudioSink.RingBuffer.stop):
	* src/com/fluendo/plugin/AudioSinkSA.java: (AudioSinkSA),
	(AudioSinkSA...RingReader.RingBufferSA),
	(AudioSinkSA...RingReader.RingBufferSA.startWriteThread),
	(AudioSinkSA...RingReader.open), (AudioSinkSA...RingReader.write):
	Some cleanups.

2006-01-19  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/player/CortadoPipeline.java:
	(CortadoPipeline.build):
	Autodetect audio backend.

	* src/com/fluendo/plugin/AudioSinkSA.java:
	(AudioSinkSA...RingReader.createRingBuffer),
	(AudioSinkSA...RingReader.write):
	Fix sync in sun.audio backend.

2006-01-19  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/plugin/AudioSink.java: (AudioSink),
	(AudioSink.AudioClock.getInternalTime), (AudioSink.RingBuffer.run),
	(AudioSink.RingBuffer.acquire),
	(AudioSink.RingBuffer.samplesPlayed), (AudioSink.doEvent):
	* src/com/fluendo/plugin/AudioSinkJ2.java: (AudioSinkJ2),
	(AudioSinkJ2.open), (AudioSinkJ2.close):
	* src/com/fluendo/plugin/AudioSinkSA.java:
	* src/com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.getInputStream):
	* src/com/fluendo/plugin/MultipartDemux.java:
	* src/com/fluendo/plugin/OggDemux.java: (OggDemux.Pad):
	* src/com/fluendo/plugin/Queue.java:
	Code cleanups. Remove unused vars.
	Calculate delay more accurately in javax.sound backend.
	Don't set caps on HTTPSrc when already set.

2006-01-19  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/examples/Player2.java:
	* src/com/fluendo/examples/Player3.java:
	* src/com/fluendo/player/Cortado.java:
	* src/com/fluendo/player/CortadoPipeline.java:
	(CortadoPipeline.build):
	* src/com/fluendo/player/Status.java:
	Code reformatting and cleanups.

2006-01-19  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jst/Buffer.java: (Buffer.ensureSize):
	* src/com/fluendo/jst/Pad.java: (Pad):
	* src/com/fluendo/jst/Pipeline.java: (Pipeline):
	Remove unused vars.

2006-01-19  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/codecs/SmokeCodec.java: (SmokeCodec),
	(SmokeCodec.parseHeader):
	Fix unused vars.

2006-01-19  Wim Taymans  <wim@fluendo.com>

	* src/com/fluendo/jheora/Colorspace.java:
	* src/com/fluendo/jheora/DCTDecode.java:
	(DCTDecode.....ReconRefFrames):
	* src/com/fluendo/jheora/Decode.java:
	* src/com/fluendo/jheora/Filter.java: (Filter..LoopFilter):
	* src/com/fluendo/jheora/JTheoraException.java:
	* src/com/fluendo/jheora/Playback.java:
	* src/com/fluendo/jheora/Quant.java:
	Remove lots of unused vars

2006-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	  compile is now a virtual target

2006-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>

	* HACKING:
	  expand on the file layout
	* src/com/fluendo/examples/OggPerf.java:
	* src/com/fluendo/examples/OggTheoraPerf.java:
	* src/com/fluendo/examples/Player2.java:
	* src/com/fluendo/examples/Player3.java:
	* src/com/fluendo/jst/Sink.java:
	* src/com/fluendo/plugin/VideoSink.java:
	  more build cleanups

2006-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	  remove plugins.ini rule
	  invoke includes rule for applet builds and compile-examples

2006-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	  fix up various build issues; can now run the Player2 example with
	  java --cp output/build/debug com.fluendo.examples.Player2 http://stream.fluendo.com:8800

2006-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	  various build fixes so that plugins are correctly found
	  add compile-examples

2006-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.properties:
	* build.xml:
	  various cleanups for the build
	* src/com/fluendo/jst/Pipeline.java:
	* src/com/fluendo/jst/Sink.java:
	* src/com/fluendo/plugin/Sink.java:
	  move Sink.java to jst, as it's used in Pipeline

2006-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.config.sample:
	  add a sample build.config file to customize
	* build.xml:
	  fix up clean rule
	  add more jars

2006-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>

	* Makefile:
	* build.xml:
	* gen-Configure:
	  remove gen-Configure; implement it in ant; output during build

2006-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	  split out more of the jars and compiles

2006-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	  always include stubs in classpath for now;
	  see what this does with the Sun compiler
	* src/com/fluendo/jst/Element.java:
	* src/com/fluendo/plugin/AudioSink.java:
	  remove unneeded imports

2006-01-17  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	  clean up rules further
	  set out.build to a build-type-specific location for all rules
	  add applet and jar rules that build all of them
	  add debug and release targets

2006-01-17  Thomas Vander Stichele  <thomas at apestaart dot org>

	* HACKING:
	* Makefile:
	* build.properties:
	* build.xml:
	  allow for debug and release builds
	  various cleanups, learnt about ant -projecthelp, looks nice now

2006-01-17  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/com/fluendo/jst/Element.java: (Element):
	* src/com/fluendo/jst/Object.java: (Object):
	* src/com/fluendo/jst/Pad.java: (Pad):
	* src/com/fluendo/jst/Pipeline.java: (Pipeline),
	(Pipeline.SortedEnumerator.updateDegree):
	* src/com/fluendo/plugin/Sink.java: (Sink.changeState):
	  further compile cleanups

2006-01-17  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	  make compile-jcraft and jar-jcraft targets and shut up warnings
	  for them

2006-01-17  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/com/fluendo/codecs/SmokeCodec.java: (SmokeCodec):
	* src/com/fluendo/jheora/DCTDecode.java:
	(DCTDecode.....UpdateUMV_HBorders):
	* src/com/fluendo/jheora/Info.java: (Info._tp_readlsbint):
	* src/com/fluendo/jheora/iDCT.java: (iDCT.IDct10):
	* src/com/fluendo/jst/Element.java: (Element.getPad):
	* src/com/fluendo/jst/Pad.java: (Pad.doCapsListeners):
	* src/com/fluendo/jst/Pipeline.java: (Pipeline.doChildStateChange):
	* src/com/fluendo/player/CortadoPipeline.java: (CortadoPipeline):
	  remove unused vars

2006-01-17  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.properties:
	* src/com/fluendo/codecs/SmokeCodec.java:
	* src/com/fluendo/jheora/DCTDecode.java:
	* src/com/fluendo/jheora/Info.java:
	* src/com/fluendo/jheora/YUVBuffer.java:
	* src/com/fluendo/jst/Element.java:
	* src/com/fluendo/jst/Event.java:
	* src/com/fluendo/jst/Message.java:
	* src/com/fluendo/jst/Pipeline.java:
	* src/com/fluendo/jst/Query.java:
	* src/com/fluendo/player/Cortado.java:
	* src/com/fluendo/player/CortadoPipeline.java:
	* src/com/fluendo/player/Status.java:
	* src/com/fluendo/plugin/JPEGDec.java:
	* src/com/fluendo/plugin/Sink.java:
	* src/com/fluendo/plugin/SmokeDec.java:
	* src/com/fluendo/plugin/TheoraDec.java:
	  remove unneeded imports

2006-01-17  Thomas Vander Stichele  <thomas at apestaart dot org>

	* merged "build" branch:
	  svn merge -r 2703:HEAD branches/build/ trunk/

2006-01-17  Thomas Vander Stichele  <thomas at apestaart dot org>

	* Makefile:
	* build.properties:
	* build.xml:
	  add build.properties
	  merge sun and jikes build in one, should now be adaptable
	  to all compilers

2006-01-17  Thomas Vander Stichele  <thomas at apestaart dot org>

	* Makefile:
	* build.xml:
	* HACKING:
	  reorganize build further.  "make ovt" and "make mmjs" seem to
	  produce applets. add HACING notes

2006-01-16  Thomas Vander Stichele  <thomas at apestaart dot org>

	* custom/mp-jpeg.sh:
	* custom/theora-ogg.sh:
	  remove old custom scripts

2006-01-10  Wim Taymans  <wim@fluendo.com>

	* com/fluendo/player/CortadoPipeline.java: (CortadoPipeline.build):
	Enable sun.audio backend.

	* com/fluendo/plugin/AudioSink.java: (AudioSink.provideClock),
	(AudioSink.RingBuffer.run), (AudioSink.RingBuffer.setFlushing),
	(AudioSink.RingBuffer.startWriteThread), (AudioSink.RingBuffer),
	(AudioSink.RingBuffer.acquire), (AudioSink.RingBuffer.release),
	(AudioSink.RingBuffer.waitSegment), (AudioSink.RingBuffer.commit),
	(AudioSink.RingBuffer.samplesPlayed):
	Make fields protected.
	Abstract the reader thread.

	* com/fluendo/plugin/AudioSinkSA.java:
	* plugins.ini:
	Added sun.audio backend.

2006-01-09  Wim Taymans  <wim@fluendo.com>

	* com/fluendo/jst/Caps.java: (Caps), (Caps.Caps), (Caps.toString),
	(Caps.setField), (Caps.setFieldInt), (Caps.getField),
	(Caps.getFieldInt):
	Parse extra properties on caps.

	* com/fluendo/jst/CapsListener.java:
	Added capslistener.

	* com/fluendo/jst/Pad.java: (Pad), (Pad.Pad), (Pad.toString),
	(Pad.query), (Pad.getCaps), (Pad.setCapsFunc), (Pad.setCaps):
	Notify capslisteners when caps changed.

	* com/fluendo/player/CortadoPipeline.java:
	(CortadoPipeline.padAdded), (CortadoPipeline.getComponent),
	(CortadoPipeline), (CortadoPipeline.setBufferSize),
	(CortadoPipeline.getBufferSize), (CortadoPipeline.setBufferLow),
	(CortadoPipeline.getBufferLow), (CortadoPipeline.setBufferHigh),
	(CortadoPipeline.getBufferHigh), (CortadoPipeline.buildOgg),
	(CortadoPipeline.build):
	Autoplug based on mime type.

	* com/fluendo/player/Status.java:
	Don't show unknown position values.

	* com/fluendo/plugin/HTTPSrc.java: (HTTPSrc), (HTTPSrc.Pad),
	(HTTPSrc.getInputStream):
	Parse mimetype and set as caps on the buffers and pad.

	* com/fluendo/plugin/MultipartDemux.java:
	(MultipartDemux.MultipartStream), (MultipartDemux),
	(MultipartDemux.Pad), (MultipartDemux.getFactoryName):
	Parse input caps and use caps boundary string field.

2006-01-09  Wim Taymans  <wim@fluendo.com>

	* com/fluendo/jst/ElementFactory.java:
	Fix deprecated method.

	* com/fluendo/jst/Pipeline.java: (Pipeline.calcPrerollTime):
	Max/min syncOffset handling.

	* com/fluendo/plugin/AudioSink.java: (AudioSink.RingBuffer.stop),
	(AudioSink.render):
	* com/fluendo/plugin/Sink.java: (Sink.Pad), (Sink), (Sink.preroll),
	(Sink.doEvent):
	Don't render buffers before the syncOffset.

	* com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.Pad):
	Remove debug.

2006-01-05  Wim Taymans  <wim@fluendo.com>

	* com/fluendo/examples/Player3.java: (Player3.Player3):
	New testcase.

	* com/fluendo/jst/ElementFactory.java:
	Print real element names.

	* com/fluendo/jst/Pipeline.java: (Pipeline.calcPrerollTime),
	(Pipeline.changeState):
	Remove debugging.

	* com/fluendo/player/Cortado.java: (Cortado.handleMessage):
	More debugging.

	* com/fluendo/plugin/AudioSink.java:
	(AudioSink.RingBuffer.acquire), (AudioSink.RingBuffer.commit),
	(AudioSink.RingBuffer), (AudioSink.RingBuffer.samplesPlayed):
	* com/fluendo/plugin/AudioSinkJ2.java: (AudioSinkJ2.open):
	Make sure we have at least 4 segments to work with.
	Detect disconts.

	* com/fluendo/plugin/Sink.java: (Sink.doSync):
	Small cleanups.


2006-01-05  Wim Taymans  <wim@fluendo.com>

	* com/fluendo/jst/Clock.java: (Clock):
	* com/fluendo/player/Cortado.java: (Cortado.handleMessage):
	Small cleanups.

	* com/fluendo/jst/Element.java: (Element.getMime):
	An element must provide a factoryName.

	* com/fluendo/jst/ElementFactory.java:
	Allow setting custom element names.

	* com/fluendo/jst/Message.java: (Message.toString),
	(Message.newStateDirty):
	More info in stream status messages.

	* com/fluendo/jst/Pad.java: (Pad.isFlowFatal):
	Make flowname usable by other classes.

	* com/fluendo/jst/Pipeline.java: (Pipeline.Pipeline),
	(Pipeline.calcPrerollTime), (Pipeline), (Pipeline.changeState):
	Calc syncOffset and distribute after a seek.

	* com/fluendo/examples/Player2.java: (PlayPipeline):
	* com/fluendo/player/CortadoPipeline.java: (CortadoPipeline),
	(CortadoPipeline.buildOgg), (CortadoPipeline.build):
	Name elements properly.

	* com/fluendo/plugin/AudioSink.java: (AudioSink.AudioClock),
	(AudioSink.AudioClock.getInternalTime),
	(AudioSink.RingBuffer.commit),
	(AudioSink.RingBuffer.samplesPlayed), (AudioSink.RingBuffer),
	(AudioSink.RingBuffer.clear), (AudioSink.RingBuffer.clearAll),
	(AudioSink.RingBuffer.setSample), (AudioSink.RingBuffer.play),
	(AudioSink.RingBuffer.pause), (AudioSink.doEvent), (AudioSink),
	(AudioSink.render), (AudioSink.setCapsFunc),
	(AudioSink.changeState):
	* com/fluendo/plugin/AudioSinkJ2.java: (AudioSinkJ2):
	* com/fluendo/plugin/FakeSink.java: (FakeSink.render):
	* com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.Pad),
	(HTTPSrc.getInputStream):
	* com/fluendo/plugin/JPEGDec.java: (JPEGDec.getProperty):
	* com/fluendo/plugin/MulawDec.java: (MulawDec.MulawDec):
	* com/fluendo/plugin/MultipartDemux.java: (MultipartDemux.Pad):
	* com/fluendo/plugin/OggDemux.java: (OggDemux.Pad):
	* com/fluendo/plugin/Queue.java: (Queue.updateBuffering), (Queue),
	(Queue.start), (Queue.Pad), (Queue.Queue):
	* com/fluendo/plugin/Sink.java: (Sink), (Sink.getPrerollTime),
	(Sink.Pad), (Sink.doSync), (Sink.query), (Sink.changeState):
	* com/fluendo/plugin/SmokeDec.java: (SmokeDec.getProperty):
	* com/fluendo/plugin/TheoraDec.java: (TheoraDec.changeState):
	* com/fluendo/plugin/VideoSink.java: (VideoSink.render):
	* com/fluendo/plugin/VorbisDec.java: (VorbisDec.changeState):
	Fix factory names.
	Remove ringbuffer sync hack.
	Preroll and syncOffset implemented in Sink.
	Post stream status.
	Don't run the clock when we are paused in the audiosink.


2006-01-04  Wim Taymans  <wim@fluendo.com>

	* Makefile:
	Some updates.
	Compile with deprecation warnings.

	* com/fluendo/player/CortadoPipeline.java:
	(CortadoPipeline.padAdded), (CortadoPipeline.buildOgg),
	(CortadoPipeline.buildMultipartJPEG),
	(CortadoPipeline.buildMultipartSmoke), (CortadoPipeline),
	(CortadoPipeline.build):
	Added Smoke pipeline,

	* com/fluendo/plugin/MultipartDemux.java: (MultipartDemux.Pad):
	Small cleanup.

	* com/fluendo/plugin/SmokeDec.java: (SmokeDec.Pad), (SmokeDec),
	(SmokeDec.SmokeDec):
	Add property to configure component.

	* com/fluendo/plugin/VideoSink.java: (VideoSink.setCapsFunc):
	Replace deprecated method.

	* plugins.ini:
	Add smoke plugins to registry.

2005-12-21  Wim Taymans  <wim@fluendo.com>

	* com/fluendo/examples/Player3.java: (Player3.Player3):
	Enable multipart.

	* com/fluendo/jst/Pad.java: (Pad):
	Return NOT_LINKED when there is no peer.

	* com/fluendo/player/CortadoPipeline.java: (CortadoPipeline),
	(CortadoPipeline.padAdded), (CortadoPipeline.setBufferHigh),
	(CortadoPipeline.getBufferHigh), (CortadoPipeline.buildOgg),
	(CortadoPipeline.buildMultipart), (CortadoPipeline.build):
	Check for null caps.
	Add multipart jpeg pipelines,

	* com/fluendo/plugin/JPEGDec.java: (JPEGDec), (JPEGDec.Pad),
	(JPEGDec.JPEGDec), (JPEGDec.changeState):
	Send images downstream after we created them in the media tracker.

	* com/fluendo/plugin/MulawDec.java: (MulawDec), (MulawDec.Pad),
	(MulawDec.MulawDec):
	Make variable names java-like.

	* com/fluendo/plugin/MultipartDemux.java: (MultipartDemux),
	(MultipartDemux.MultipartStream),
	(MultipartDemux.MultipartStream.MultipartStream),
	(MultipartDemux.MultipartStream.eventFunc), (MultipartDemux.Pad),
	(MultipartDemux.getName), (MultipartDemux.getMime),
	(MultipartDemux.typeFind), (MultipartDemux.MultipartDemux):
	Implement the multipart demuxer.


2005-12-20  Wim Taymans  <wim@fluendo.com>

	* com/fluendo/jst/Event.java: (Event.newSeek),
	(Event.newNewsegment):
	Make method names consistent as in Query/Message.

	* com/fluendo/jst/Pipeline.java: (Pipeline.doChildStateChange),
	(Pipeline.calcPrerollTime), (Pipeline), (Pipeline.changeState),
	(Pipeline.doSendEvent), (Pipeline.doSeek), (Pipeline.sendEvent),
	(Pipeline.query):
	Do correct preroll time distribution in pipeline.

	* com/fluendo/player/Cortado.java: (Cortado.newState),
	(Cortado.newSeek):
	Warn when seek failed.

	* com/fluendo/player/CortadoPipeline.java:
	The pipeline used by the applet.

	* com/fluendo/player/StatusListener.java:
	Get info on actions performed in the Status area.

	* com/fluendo/plugin/JPEGDec.java:
	* com/fluendo/plugin/MulawDec.java:
	* com/fluendo/plugin/MultipartDemux.java:
	* com/fluendo/plugin/SmokeDec.java:
	* plugins.ini:
	New plugins added.

	* com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.Pad):
	* com/fluendo/plugin/Sink.java: (Sink.Pad):
	Update for name change.

2005-12-19  Wim Taymans  <wim@fluendo.com>

	* README:
	Add some new params to docs.

	* com/fluendo/examples/Player2.java: (PlayPipeline.PlayPipeline):
	* com/fluendo/examples/Player3.java:
	Added player that instantiates the Cortado applet.

	* com/fluendo/jst/Element.java: (Element.getState):
	the timeout for wait is in milliseconds, make correct conversion
	from gst time.

	* com/fluendo/jst/Message.java: (Message), (Message.toString),
	(Message.newError), (Message.parseErrorString):
	Added buffering message.

	* com/fluendo/player/Cortado.java: (Cortado),
	(Cortado.getParameterInfo), (Cortado.init), (Cortado.paint),
	(Cortado.handleMessage), (Cortado.newState), (Cortado.newSeek),
	(Cortado.start), (Cortado.stop):
	Added buffering.

	* com/fluendo/player/Status.java:
	Print buffering percent.

	* com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.Pad):
	Small debug updates.
	Don't try to use a null inputstream.

	* com/fluendo/plugin/Queue.java: (Queue), (Queue.isFilled),
	(Queue.isEmpty), (Queue.clearQueue), (Queue.updateBuffering),
	(Queue.start), (Queue.stop), (Queue.Pad), (Queue.Queue),
	(Queue.getName):
	Added buffering to queue.

2005-12-19  Wim Taymans  <wim@fluendo.com>

	* com/fluendo/jst/Pad.java: (Pad.run), (Pad.startTask):
	Make method public.

	* com/fluendo/jst/Queue.java:
	* com/fluendo/plugin/Queue.java:
	* plugins.ini:
	Move queue to plugins.

2005-12-19  Wim Taymans  <wim@fluendo.com>

	* com/fluendo/jst/Element.java: (Element.sendEvent):
	Added query method.

	* com/fluendo/jst/Pad.java: (Pad.unlink), (Pad.sendEvent):
	Add query and getpeer methods.

	* com/fluendo/jst/Pipeline.java: (Pipeline.sendEvent):
	Forward queries to the sinks,

	* com/fluendo/jst/Query.java: (Query.newPosition),
	(Query.parsePositionValue), (Query), (Query.newDuration):
	Implement setting query result.

	* com/fluendo/player/Cortado.java: (Cortado),
	(Cortado.getParameterInfo), (Cortado.shutdown),
	(Cortado.stringToTime), (Cortado.init), (Cortado.getGraphics),
	(Cortado.getSize), (Cortado.update), (Cortado.run),
	(Cortado.realRun), (Cortado.newState), (Cortado.newSeek),
	(Cortado.start):
	Added option to configure the duration.
	start thread to update current position in statusbar.

	* com/fluendo/player/Status.java:
	Paint current position in time.

	* com/fluendo/plugin/Sink.java: (Sink.sendEvent):
	Implement POSITION query.

2005-12-15  Wim Taymans  <wim@fluendo.com>

	* com/fluendo/jst/Pipeline.java: (Pipeline.doSeek):
	A seek sets the stream time to 0 since we always do 
	flushing seeks.

	* com/fluendo/jst/Queue.java: (Queue.Pad):
	Fix nasty deadlock.

	* com/fluendo/player/Configure.java:
	* com/fluendo/player/Cortado.java: (Cortado), (Cortado.init),
	(Cortado.setStatusVisible), (Cortado.mouseClicked),
	(Cortado.mouseEntered), (Cortado.mouseExited),
	(Cortado.mousePressed), (Cortado.mouseReleased),
	(Cortado.mouseDragged), (Cortado.mouseMoved),
	(Cortado.handleMessage), (Cortado.newState):
	Forward dragging events in the status area.
	React to seek signals.
	Try not to hide the statusbar when the pointer is in it.

	* com/fluendo/player/Status.java: (Status):
	Refactor painting a bit.
	Implement seek bar and make it emit a newSeek signal.
	
	* com/fluendo/plugin/AudioSink.java: (AudioSink.RingBuffer.commit),
	(AudioSink.RingBuffer.samplesPlayed), (AudioSink.render),
	(AudioSink.changeState):
	Do timestamp calc.

	* com/fluendo/plugin/AudioSinkJ2.java:
	(AudioSinkJ2.createRingBuffer):
	Reenable syncing.

	* com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.Pad), (HTTPSrc),
	(HTTPSrc.getInputStream):
	* com/fluendo/plugin/OggDemux.java: (OggDemux.Pad):
	* com/fluendo/plugin/TheoraDec.java: (TheoraDec.Pad):
	Nicer debug and error messages.

	* com/fluendo/plugin/Sink.java: (Sink), (Sink.Pad), (Sink.doEvent),
	(Sink.doSync), (Sink.changeState):
	Calc correct timestamps based on prerolled time and basetime.

2005-12-15  Wim Taymans  <wim@fluendo.com>

	* com/fluendo/jst/Pad.java: (Pad.setCapsFunc), (Pad.activate):
	Allow setting null caps.

	* com/fluendo/jst/Queue.java: (Queue.Pad):
	Properly shut down the queue, avoid deadlock.

	* com/fluendo/player/Configure.java:
	* com/fluendo/player/Cortado.java: (Cortado.handleMessage):
	Also print errors and stream status to console.

	* com/fluendo/player/Status.java:
	Allow setting playing state when in stopped.

	* com/fluendo/plugin/AudioSink.java: (AudioSink),
	(AudioSink.AudioClock.getInternalTime), (AudioSink.RingBuffer),
	(AudioSink.RingBuffer.run), (AudioSink.RingBuffer.samplesPlayed),
	(AudioSink.RingBuffer.play), (AudioSink.RingBuffer.pause),
	(AudioSink.changeState):
	Allow shutdown.

	* com/fluendo/plugin/AudioSinkJ2.java:
	(AudioSinkJ2.createRingBuffer):
	Remove temp hack.

	* com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.Pad):
	Remove stupid print.

	* com/fluendo/plugin/OggDemux.java: (OggDemux.Pad):
	Do proper shutdown.

	* com/fluendo/plugin/Sink.java: (Sink.Pad), (Sink.changeState):
	* com/fluendo/plugin/TheoraDec.java: (TheoraDec), (TheoraDec.Pad),
	(TheoraDec.TheoraDec):
	* com/fluendo/plugin/VorbisDec.java: (VorbisDec), (VorbisDec.Pad),
	(VorbisDec.VorbisDec):
	Fix shutdown.

2005-12-14  Wim Taymans  <wim@fluendo.com>

	* Makefile:
	Added some targets.

	* com/fluendo/jst/Clock.java: (Clock.ClockID.waitID):
	No need to check for unscheduled here, it'll be done in 
	the waitFunc.

	* com/fluendo/jst/Element.java: (Element.getTransitionNext),
	(Element.continueState), (Element.changeState), (Element),
	(Element.doChangeState):
	Bring state changes up to data with GStreamer core.
	Fix race condition that probably also exist in GST when we update
	the lastReturn right after the element commited state ASYNC.
	
	* com/fluendo/jst/Pad.java: (Pad.isFlowFatal):
	Added debugging function
	
	* com/fluendo/jst/Pipeline.java: (Pipeline.StateThread.run),
	(Pipeline.reCalcState):
	Use new API to continue state change.

	* com/fluendo/jst/Query.java: (Query), (Query.newPosition),
	(Query.newDuration):
	Fix compilation

	* com/fluendo/jst/Queue.java: (Queue.Pad):
	Better debugging. Don't post an error when we did not cause the
	error but instead post a stream-status message to notify that we
	stopped streaming.

	* com/fluendo/player/Configure.java:
	* com/fluendo/player/Cortado.java:
	* com/fluendo/player/CortadoPipeline.java:
	* com/fluendo/player/Status.java:
	New Applet using JST along with JST pipelines and gui.

	* com/fluendo/plugin/AudioSink.java: (AudioSink.render),
	(AudioSink.changeState):
	* com/fluendo/plugin/Sink.java: (Sink.Pad), (Sink.changeState):
	Update to latest GST base classes.

	* com/fluendo/plugin/AudioSinkJ2.java: (AudioSinkJ2.open):
	Post error when we cannot open the device.

	* com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.Pad), (HTTPSrc),
	(HTTPSrc.getInputStream):
	Better error handling.

	* com/fluendo/plugin/VideoSink.java: (VideoSink),
	(VideoSink.setCapsFunc), (VideoSink.preroll), (VideoSink.render),
	(VideoSink.getName):
	Make videosink work with foreign Components.

	* com/fluendo/plugin/VorbisDec.java: (VorbisDec.Pad):
	Forward flow errors.

2005-11-07  Wim Taymans  <wim@fluendo.com>

	* com/fluendo/examples/Player2.java: (PlayPipeline),
	(PlayPipeline.padRemoved), (PlayPipeline.noMorePads), (Player2),
	(Player2.handleMessage):
	Fix player to handle any uri.

	* com/fluendo/jst/ElementFactory.java:
	Added typefind.

	* com/fluendo/jst/Pad.java: (Pad.sendEvent), (Pad.chain):
	Handle setCaps().

	* com/fluendo/plugin/OggDemux.java: (OggDemux.OggStream),
	(OggDemux.OggStream.OggStream), (OggDemux.Pad):
	Set caps.

	* com/fluendo/plugin/AudioSink.java: (AudioSink.render):
	* com/fluendo/plugin/Sink.java: (Sink.Pad), (Sink.doSync):
	* com/fluendo/plugin/VideoSink.java: (VideoSink):
	Handle new caps.

2005-11-04  Wim Taymans  <wim@fluendo.com>

	* com/fluendo/jst/Query.java:
	Added Query API.

2005-11-04  Wim Taymans  <wim@fluendo.com>

	* com/fluendo/examples/Player2.java: (PlayPipeline.PlayPipeline),
	(PlayPipeline.doSendEvent):
	Simplified after changes in the core.

	* com/fluendo/jst/Element.java: (Element.getTransitionNext),
	(Element.commitState), (Element.doChangeState), (Element.setState):
	Propagate state change return values to the caller.

	* com/fluendo/jst/Format.java: (Format):
	Implement PERCENT format constants.

	* com/fluendo/jst/Pad.java: (Pad):
	Added isFlowFatal().

	* com/fluendo/jst/Pipeline.java: (Pipeline.reCalcState),
	(Pipeline.doChildStateChange), (Pipeline.changeState):
	State change updates.
	Send events to all sinks by default.

	* com/fluendo/jst/Queue.java: (Queue), (Queue.isFilled),
	(Queue.isEmpty), (Queue.clearQueue), (Queue.Pad):
	Updates to queue to make it flush faster.
	Fix refcounting of buffers when clearing the queue.

	* com/fluendo/player/Configure.java:
	* com/fluendo/plugin/AudioSink.java: (AudioSink.RingBuffer),
	(AudioSink.RingBuffer.run), (AudioSink.RingBuffer.release),
	(AudioSink.RingBuffer.waitSegment),
	(AudioSink.RingBuffer.samplesPlayed), (AudioSink.RingBuffer.clear),
	(AudioSink.RingBuffer.clearAll), (AudioSink.RingBuffer.setSample),
	(AudioSink.RingBuffer.stop), (AudioSink), (AudioSink.doSync),
	(AudioSink.doEvent):
	Added setFlushing so that we never enter a blocking call again.

	* com/fluendo/plugin/HTTPSrc.java: (HTTPSrc), (HTTPSrc.Pad),
	(HTTPSrc.getInputStream), (HTTPSrc.getName), (HTTPSrc.HTTPSrc),
	(HTTPSrc.setProperty):
	Get Content-Length from HTTP response header to get the length of
	the file.
	Implement percent seeking.
	Added property to configure readSize.
	
	* com/fluendo/plugin/OggDemux.java: (OggDemux.Pad):
	Add proper locks around event handling code.

	* com/fluendo/plugin/Sink.java: (Sink.Sink):
	Implement sendEvent.

	* com/fluendo/plugin/TheoraDec.java: (TheoraDec.Pad):
	* com/fluendo/plugin/VorbisDec.java: (VorbisDec.Pad):
	Take proper locks around event handling code.
	free buffers when clearing the queued buffers.

2005-11-03  Wim Taymans  <wim@fluendo.com>

	* Makefile:
	* com/fluendo/examples/Player.java:
	* com/fluendo/examples/Player2.java: (PlayPipeline),
	(PlayPipeline.PlayPipeline):
	* com/fluendo/jst/Element.java: (Element), (Element.typeFind),
	(Element.Element), (Element.setComponent), (Element.setClock),
	(Element.getClock), (Element.getBus), (Element.addPadListener),
	(Element.removePadListener), (Element.doPadListeners),
	(Element.addPad), (Element.removePad), (Element.noMorePads),
	(Element.getState), (Element.padsActivate), (Element.commitState),
	(Element.abortState), (Element.lostState), (Element.changeState):
	* com/fluendo/jst/Event.java: (Event), (Event.newFlushStart),
	(Event.getSeekFormat):
	* com/fluendo/jst/Object.java: (Object), (Object.getParent),
	(Object.unParent):
	* com/fluendo/jst/Pad.java: (Pad), (Pad.eventFunc),
	(Pad.sendEvent), (Pad.configureSink), (Pad.chain):
	* com/fluendo/jst/PadListener.java:
	* com/fluendo/jst/Pipeline.java: (Pipeline.BusThread),
	(Pipeline.BusThread.BusThread), (Pipeline.BusThread.run),
	(Pipeline.BusThread.shutDown), (Pipeline), (Pipeline.StateThread),
	(Pipeline.StateThread.StateThread), (Pipeline.StateThread.run),
	(Pipeline.StateThread.stateDirty), (Pipeline.Pipeline),
	(Pipeline.useClock):
	* com/fluendo/jst/Queue.java: (Queue.Pad):
	* com/fluendo/player/Buffer.java:
	* com/fluendo/player/Caps.java:
	* com/fluendo/player/Clock.java:
	* com/fluendo/player/ClockProvider.java:
	* com/fluendo/player/Configure.java:
	* com/fluendo/player/Element.java:
	* com/fluendo/player/ElementFactory.java:
	* com/fluendo/player/Event.java:
	* com/fluendo/player/Format.java:
	* com/fluendo/player/Object.java:
	* com/fluendo/player/Pad.java:
	* com/fluendo/player/PadListener.java:
	* com/fluendo/player/Pipeline.java:
	* com/fluendo/player/Queue.java:
	* com/fluendo/player/SystemClock.java:
	* com/fluendo/plugin/AudioSink.java: (AudioSink.RingBuffer.commit),
	(AudioSink.RingBuffer.stop), (AudioSink.doEvent),
	(AudioSink.render), (AudioSink.setCaps), (AudioSink.changeState):
	* com/fluendo/plugin/HTTPSrc.java: (HTTPSrc.Pad),
	(HTTPSrc.getInputStream):
	* com/fluendo/plugin/OggDemux.java: (OggDemux.Pad):
	* com/fluendo/plugin/Sink.java: (Sink), (Sink.Pad), (Sink.preroll),
	(Sink.doEvent), (Sink.doSync), (Sink.setCaps), (Sink.render),
	(Sink.Sink), (Sink.changeState):
	* com/fluendo/plugin/TheoraDec.java: (TheoraDec.Pad):
	* com/fluendo/plugin/VideoSink.java: (VideoSink.getProperty):
	* com/fluendo/plugin/VorbisDec.java: (VorbisDec.Pad):
	Updated jst to match latest GStreamer core, updated examples,
	implemented bus, messages. Fix deadlocks while seeking.
	Implemented state changes with topologocal sort.

=== release 0.1.2 ===

2005-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>

	* Makefile:
	* build.xml:
	* gen-Configure:
	  do some more versioning

2005-04-22  Wim Taymans <wim at fluendo dot com>

	  make multiple instances of cortado work correctly

2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>

	* Makefile:
	  bump nano

=== release 0.1.0 ===

2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>

	* Makefile:
	* README:
	  more notes and fixes

2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>

	* Makefile:
	* README:
	* build.xml:
	  updates for public release

=== release 0.0.1 ===

2004-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>

	* Makefile:
	* build.xml:
	  add targets for two kinds of applets and version

	* stubs/sun/audio/AudioPlayer.java:
	* stubs/sun/audio/AudioStream.java:
	  Fix stubs by decompiling the sun java class files

2004-11-19  Thomas Vander Stichele  <thomas at apestaart dot org>

	* com/fluendo/player/Cortado.java:
	  fix compiler warning

2004-11-19  Thomas Vander Stichele  <thomas at apestaart dot org>

	* build.xml:
	  allow excluding functionality with -Dexclude=(which,...)

2004-11-19  Thomas Vander Stichele  <thomas at apestaart dot org>

	reviewed by: Wim Taymans

	* com/fluendo/player/Cortado.java:
	* com/fluendo/player/Status.java:
	  Replace getWidth and getHeight with getSize (1.1)