~bwy/+junk/gnash-temp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2008-10-13  Russell Nelson <nelson@crynwr.com>

	[9987] add flvdumper documentation, update preformmated docs, fix the
	required bzr version, and make the ltdl patch work correctly if srcdir
	<> builddir

2008-10-13  Russell Nelson <nelson@crynwr.com>

	[9986] we ship libtoolize; don't detect the version they've installed

2008-10-12  Russell Nelson <nelson@crynwr.com>

	[9985] updated NEWS, README for the release, and changed version in
	configure.ac to 0.8.4

2008-10-11  Russell Nelson <nelson@crynwr.com>

	[9984] Make install-plugins a little more clear.

2008-10-11  bastiaan <bastiaan@smeg>

	[9983] Wallpaper over the MIT-SHM crashbug. (bug #23624)

2008-10-11  strk <strk@ubuntu>

	[9982] Add a RECCOMMENDED label on configure output, and put in this
	list libcurl and modern pbutils

2008-10-10  strk <strk@ubuntu>

	[9981] drop duplicated ERROR label in logging output

2008-10-10  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9980] Set default stream timeout to 60 seconds because sites like
	youtube redirect a lot and with poor network performance (e.g. DNS
	lookups) 10 isn't enough.  Change stream timeout chooser in the
	preferences box to a spin box with a  max of 300.

2008-10-10  Bastiaan Jacques <bastiaan@bjacques.org>

	[9979] configure.ac: Properly test for windows. Disable MIT-SHM by
	default. gui: Fix compilation for MIT-SHM enabled GTK build.

2008-10-10  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9978] Drop debugging.

2008-10-10  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9977] Return the actual size of the buffer. Fixes bug #24503.

2008-10-10  Russell Nelson <nelson@crynwr.com>

	[9976] need to call pkg-config for libs; restore cerr outs to make
	xpi's getHome work.

2008-10-09  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9975] Drop tests with inconsistent results for now.

2008-10-08  Bastiaan Jacques <bastiaan@bjacques.org>

	[9974] Bring back support for missing-plugins installation.

2008-10-08  Sandro Santilli <strk@keybit.net>

	[9973] Register media handler before sound handler (next step would be
	having the sound handler cache the media handler pointer...)

2008-10-08  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9972] More tests for Sound.

2008-10-08  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9971] More tests.

2008-10-08  Sandro Santilli <strk@keybit.net>

	[9970] be more verbose about failure in AudioDecoder initialization

2008-10-08  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9969] Update expected results for ffmpeg. Gstreamer fails an extra
	one.  Add onSoundComplete to named strings.

2008-10-08  Sandro Santilli <strk@keybit.net>

	[9968] comment out debugging lines

2008-10-08  Sandro Santilli <strk@keybit.net>

	[9967] Rework the expected resampler output size computation, and put
	the abort back. Seems sane now.

2008-10-08  Sandro Santilli <strk@keybit.net>

	[9966] Make the resampler output buffer even-sized (as it's being
	considered an array of int16); don't abort if the samples-based
	computation of output buffer doesn't match the input one, as
	EmbeddedSoundTest.swf shows a case in which it fails but doesn't
	trigger any invalid write (using valgrind).

2008-10-08  Sandro Santilli <strk@keybit.net>

	[9965] Change sound_handler::create_sound interface to take a
	SimpleBuffer by auto_ptr, avoiding memory copies for event sounds (and
	improving readability); have sound_data constructor make sure that if
	a SimpleBuffer is passed it's padded a MediaHandler requires; have
	DEFINESOUND tag loader query MediaHandler for padding bytes when
	allocating the buffer for sound data. Fixes an invalid read of ffmpeg
	on EmbeddedSoundTest.swf

2008-10-08  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9964] Get padding information from media backend.

2008-10-08  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9963] Test for onSoundComplete and duration.

2008-10-08  Sandro Santilli <strk@keybit.net>

	[9962] copyright dates and totals count

2008-10-08  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9961] Add simple MovieTester-based runner for EmbeddedSound, enable
	automatic run of test.

2008-10-08  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9960] Test for embedded sound and the Sound object. Not yet enabled.

2008-10-08  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9959] Test for ming version 0.4.3.

2008-10-08  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9958] Add some media files for testing.

2008-10-08  Sandro Santilli <strk@keybit.net>

	[9957] Remove dead code (old matrix mat, non-cached matrix params)

2008-10-08  Sandro Santilli <strk@keybit.net>

	[9956] Add some info about libmedia layout (how it is and how it needs
	to be changed)

2008-10-08  Sandro Santilli <strk@keybit.net>

	[9955] Change some methods and member names in sound stuff
	(readability)

2008-10-08  Sandro Santilli <strk@keybit.net>

	[9954] Fix computation of sound duration for stereo sounds. See bug
	#24481.

2008-10-07  Sandro Santilli <strk@keybit.net>

	[9953] Correct use of tmpnam

2008-10-07  Sandro Santilli <strk@keybit.net>

	[9952] More cleanups for xpcom: 1. Rename --with-xpcom-lib to --with-
	xpcom-sdk-dir 2. Don't use pkg-config to find libs (won't work),
	rather scan /usr/lib/iceape 3. Use libxpcomglue_s.a, not
	libxpcomglue.a 4. Re-introduce use of XPCOM_LIB in plugin link line

2008-10-07  Sandro Santilli <strk@keybit.net>

	[9951] Cleanups on the cookie code. Still #if 0'ed out (due to linking
	errors) but now dumps the cookie file in its own method and has code
	prepared to unlink it.

2008-10-07  Sandro Santilli <strk@keybit.net>

	[9950] Have xpi packaging scripts define GNASH_XPI_PLUGIN, don't force
	it from HAVE_XPCOM

2008-10-07  Sandro Santilli <strk@keybit.net>

	[9949] Don't add XPCOM ldflags. Fixes plugin load under iceapi on
	lenny. See bug #24469.

2008-10-07  Sandro Santilli <strk@keybit.net>

	[9948] Tried to make the plugin section more informative.

2008-10-06  Russell Nelson <nelson@crynwr.com>

	[9947] Make note about make install-plugins

2008-10-06  Bastiaan Jacques <bastiaan@bjacques.org>

	[9946] FLVParser sometimes provides the wrong dimensions for video, so
	let Gstreamer figure them out by itself. Fixes the video "scaling"
	issue.

2008-10-06  Bastiaan Jacques <bastiaan@bjacques.org>

	[9945] Don't forget the break inside switch...

2008-10-06  Bastiaan Jacques <bastiaan@bjacques.org>

	[9944] {Audio,Video}DecoderGst.cpp: don't unref a buffer owned by the
	bin, even if pushing failed.  VideoDecoderGst.cpp: Handle VP6A
	correctly.  MediaParserGst.{cpp,h}: Comment fixes.

2008-10-06  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9943] Allow build with all versions of ffmpeg up to current trunk.

2008-10-06  Bastiaan Jacques <bastiaan@bjacques.org>

	[9942] Stop using _stream inside getBytesLoaded. (fixes #24460)
	AudioDecoderGst: use ffaudioresample, or fallback on speexresample; if
	neither are available, use audioresample. ("fixes" #24417)

2008-10-06  Sandro Santilli <strk@keybit.net>

	[9941] Committed cookies patch by asac, with umask fixed and actual
	dump disabled till we properly unlink it on exit

2008-10-06  Sandro Santilli <strk@keybit.net>

	[9940] Don't use DISTCHECK flags for configuring the xpi builds, also
	disable testsuite for that task.

2008-10-06  Sandro Santilli <strk@keybit.net>

	[9939] Make less pkg_config --exist calls, aimed at readability

2008-10-06  Sandro Santilli <strk@keybit.net>

	[9938] comment out debugging lines as they make self-contained
	instructions fall off the bounds

2008-10-06  Sandro Santilli <strk@keybit.net>

	[9937] hush some sound debugging

2008-10-06  Sandro Santilli <strk@keybit.net>

	[9936] Avoid newlines in log messages

2008-10-06  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9935] Drop a last reference to libmad.

2008-10-06  Sandro Santilli <strk@keybit.net>

	[9934] Consisteny checking for NetStream-SquareTest

2008-10-06  Sandro Santilli <strk@keybit.net>

	[9933] Don't wait for more frames to arrive when last advertised frame
	was already parsed at time of symbol table lookup. Should fix bug
	#24455.

2008-10-06  Bastiaan Jacques <bastiaan@bjacques.org>

	[9932] libmedia/Makefile.am: Stop building our own versions and copies
	of   Gstreamer elements.  Remove many files now unused.

2008-10-06  Sandro Santilli <strk@keybit.net>

	[9931] document debugging macro

2008-10-06  Sandro Santilli <strk@keybit.net>

	[9930] define GST_TIME_AS_MSECONDS when not already defined

2008-10-06  Sandro Santilli <strk@keybit.net>

	[9929] call gst_init in VideoDecoderGst constructor (for consistency
	with AudioDecoderGst) -- I thikn this may be saner to do in
	MediaHandlerGst ctor btw...

2008-10-06  Sandro Santilli <strk@keybit.net>

	[9928] Don't call gstreamer functions before gst_init ! Fixes bug
	#24459.

2008-10-05  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9927] Fix properly now I've tested the branch that changed.

2008-10-05  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9926] Get initialization order right.

2008-10-04  Sandro Santilli <strk@keybit.net>

	[9925] Make creation of preferences dialogue easier to read and hack
	on; add Network preferences tab (streamsTimeout)

2008-10-04  Bastiaan Jacques <bastiaan@bjacques.org>

	[9924] libmedia:   Makefile.am: Stop building SoundHandlerGst and
	SoundGst.      MediaParser.cpp: In waitIfNeeded(), check that thread
	kill has not been     requested. Previously, if the kill was
	requested, and the parser     thread subsequently called
	pushEncoded{Audio,Video}Frame,     waitIfNeeded() could again lock,
	which caused a deadlock.   MediaParser.cpp: Move thread::join() out of
	the destructor. As the     destructor is run *after* the child
	constructor (i.e,      ~MediaParser{Gst,Ffmpeg}), the parser thread,
	will be running after     the child destructor has finished. If the
	parser thread then attempts     to access the child data (which is
	expected), Pandora's box opens. Now,     every user of MediaParser
	must call join() before it destroys the     MediaParser object.
	MediaParser.h: Add extra data fields to encoded frame classes. Should
	be     done more cleanly in the future.
	gst/AudioDecoderGst.{cpp,h}: Clean up. Also, make sure that all the
	buffers     available after the data push in decode() are accumulated
	and returned.     Should fix some audio issues.
	gst/MediaHandlerGst.cpp: Start using MediaParserGst.
	gst/MediaParserGst.{cpp,h}: New Gstreamer based MediaParser
	implementation. Should theoretically work even with Debian stable.
	gst/VideoDecoderGst.{cpp,h}: Reimplement (and simplify) using swfdec's
	Gstreamer bindings.    gst/swfdec_codec_gst.{c,h}: Make
	specializations of the factory finder     for other types of
	factories, such as parsers and demuxers.      libcore/asobj:
	Makefile.am: Stop building Sound's child classes.   Sound.{h,cpp}:
	Merge SoundFFmpeg. Call MediaParser::join() before its     destructor
	is called.    NetStream.cpp: call MediaParser::join() before its
	destructor is called.

2008-10-04  Sandro Santilli <strk@keybit.net>

	[9923] Raise the default streams timeout from 1.5 to 3 seconds. See
	bug #24449

2008-10-04  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9922] Remove macros from Date.cpp.

2008-10-04  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9921] More tests, fewer macros for Date class to try and catch why
	there is a failure on Debian Lenny.

2008-10-04  Sandro Santilli <strk@keybit.net>

	[9920] Don't force update of gnash.pot on 'make dist'

2008-10-04  Sandro Santilli <strk@keybit.net>

	[9919] few translation lines, just for fun

2008-10-04  Sandro Santilli <strk@keybit.net>

	[9918] Update po files (this time with relative paths)

2008-10-04  Sandro Santilli <strk@keybit.net>

	[9917] Use paths relative to top sourcedir for po files, so updates
	from different hosts don't change just for that. Other cleanups.

2008-10-03  Sandro Santilli <strk@keybit.net>

	[9916] NetStream doesn't need to be virtual anymore

2008-10-03  Sandro Santilli <strk@keybit.net>

	[9915] Maintain audio/video buffers in timestamp order

2008-10-03  Sandro Santilli <strk@keybit.net>

	[9914] Minor comment and debug cleanups

2008-10-03  Sandro Santilli <strk@keybit.net>

	[9913] Consider the media stream fully parsed on parse error.

2008-10-03  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9912] Document gnashSleep.

2008-10-03  Sandro Santilli <strk@keybit.net>

	[9911] Don't distribute .gmo files, you'll need gettext for an
	internationalized gnash.

2008-10-03  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9910] ifdefs round pthreads.h include.

2008-10-03  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9909] htons...

2008-10-03  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9908] Use GnashSleep in rtmp_client.cpp. A FIXME suggests it might be
	better to drop the sleep entirely, but since I don't know I'll leave
	this to someone else.

2008-10-03  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9907] Initial stage in fixing sleep compatibility. Will hopefully
	allow windows build to complete.

2008-10-03  Sandro Santilli <strk@keybit.net>

	[9906] Have 'dumpconfig' say about jemalloc use; say about LIBINTL,
	not INTLIBS.

2008-10-02  Sandro Santilli <strk@keybit.net>

	[9905] Make sure the parser consumes all input, even on error. Fixes
	bug #24429.

2008-10-02  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9904] Compiler warning fixes (visibility).

2008-10-02  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9903] Tests.

2008-10-02  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9902] Correct totals.

2008-10-02  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9901] Fix compiler warnings. Test for LoadVars.

2008-10-01  Russell Nelson <nelson@crynwr.com>

	[9900] Add a query to XPCOM code to get our XPI install directory.
	Install via XPI now works!

2008-10-01  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9899] Correct configure output for cairo/sdl.

2008-10-01  Sandro Santilli <strk@keybit.net>

	[9898] Fix CURL-full build (eh)

2008-10-01  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9897] Make sure 'close' closes the about dialogue.

2008-10-01  Sandro Santilli <strk@keybit.net>

	[9896] Fix CURL-less build (please test CURL-full ones)

2008-10-01  Sandro Santilli <strk@keybit.net>

	[9895] Gnash is an SWF player (not that other trademarked thing)

2008-10-01  strk <strk@lo>

	[9894] SDL is now a requirement for GST media handler too..

2008-10-01  strk <strk@lo>

	[9893] Make GTK about dialog compatible with libgtk 2.8.20 (fixes bug
	#24426)

2008-10-01  strk <strk@lo>

	[9892] answer the 'why not CODEC_ID_H263I?' question

2008-10-01  strk <strk@lo>

	[9891] log errors cleanups

2008-10-01  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9890] Initialize _auxStreamerAttached, sort out initialization order
	properly.

2008-10-01  strk <strk@lo>

	[9889] Implement output operator for videoCodecType and audioCodecType
	enums

2008-10-01  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9888] More compiler warnings.

2008-10-01  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9887] Silence compiler warnings and verbose debugging messages.

2008-09-30  Sandro Santilli <strk@keybit.net>

	[9886] Add comment about why PROBE_BYTES has that value

2008-09-30  Sandro Santilli <strk@keybit.net>

	[9885] drop annoying error message about matrix not being invertible,
	the code is correct and tested in matrix_test.swf

2008-09-30  Sandro Santilli <strk@keybit.net>

	[9884] Re-enable a test in MovieClip.as temporarely commented-out to
	avoid having to fix immediately (it's fixed now). Add anotehr test to
	matrix_test.swf to show effects of negative _xscale cache at time of
	setting _rotation. I'm pretty satisfied about matrices at this point.

2008-09-30  Sandro Santilli <strk@keybit.net>

	[9883] remove things already done, try adding more todo

2008-09-30  Sandro Santilli <strk@keybit.net>

	[9882] unused variables warnings..

2008-09-30  Sandro Santilli <strk@keybit.net>

	[9881] Drop the get_parent hack in character::set_rotation, only add
	PI if xscale cache is negative, no matter yscale. Fixes the last known
	failing tests in matrix_test.swf. We need more tests!

2008-09-30  Sandro Santilli <strk@keybit.net>

	[9880] Another test, showing that success/failure of gnash on the last
	added test is based on the _yscale cache values (while expected result
	doesn't)

2008-09-30  Sandro Santilli <strk@keybit.net>

	[9879] Add failing test in matrix_test.swf (sign related, triggered on
	_rotation set)

2008-09-30  Sandro Santilli <strk@keybit.net>

	[9878] Round more for the checks only failing due to accuracy. This
	way we have NO expected failures in matrix_test.swf and can work on
	getting some of them (in particular a reproduction of the one failing
	in MovieClip.as with the get_parent hack in ::set_rotation removed)

2008-09-30  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9877] Swap the matrix scale sign appropriately. Fixes the _xscale and
	_yscale tests in MovieClip.as and matrix_test.c. Fixes mario.swf and
	snowy.swf, no FAILs in the testsuite. Senocular transform_grabber.swf
	also works again.

2008-09-30  Sandro Santilli <strk@keybit.net>

	[9876] Add another matrix test showing that the failures in
	MovieClip.as were not related to being _root or not. We get the matrix
	values wrong but the actual transforms succeed...

2008-09-30  Sandro Santilli <strk@keybit.net>

	[9875] Have character's matrix parameter setters use parameter-
	specific setters of gnash::matrix but only if the character is not a
	root one. Gets only XPASS in matrix_test.swf  (the XFAIL left seem
	related to accuracy) and doesn't break the MovieClip-v8.swf ones.

2008-09-30  Sandro Santilli <strk@keybit.net>

	[9874] Test: matrix caches not updated assigning Matrix to Transform

2008-09-29  Bastiaan Jacques <bastiaan@bjacques.org>

	[9873] Use the new Gstreamer preprocessor conditional.

2008-09-29  Bastiaan Jacques <bastiaan@bjacques.org>

	[9872] Don't bother including pbutils.h.

2008-09-29  Sandro Santilli <strk@keybit.net>

	[9871] Few more tests for matrix of root.

2008-09-29  Bastiaan Jacques <bastiaan@bjacques.org>

	[9870] configure.ac: fix typo. libmedia/gst/AudioDecoderGst.cpp: For
	now, default to audioresample.

2008-09-29  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9869] Fixes for more robustness issues and code cleanup.

2008-09-29  Bastiaan Jacques <bastiaan@bjacques.org>

	[9868] Make Gstreamer also use SDL sound handler. Reimplement
	AudioDecoderGst. Merge NetStreamFfmpeg up. Raise FLV probing limit.

2008-09-29  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9867] Another abort in action_buffer.

2008-09-29  Sandro Santilli <strk@keybit.net>

	[9866] Reset yscale sign on setting _width

2008-09-29  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9865] Another robustness fix.

2008-09-29  Sandro Santilli <strk@keybit.net>

	[9864] enable new math by default

2008-09-29  Sandro Santilli <strk@keybit.net>

	[9863] Add a test showing that setting _width changes _yscale too !
	(sign of it)

2008-09-29  strk <strk@gnash>

	[9862] Add character::set_width and ::set_height, closing the circle
	of AS-accessible matrix setters

2008-09-29  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9861] Fix malformed SWF abort.

2008-09-29  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9860] Separate LoadVars properly with "&" when converting to string
	and don't add the "?" there. It's only necessary when actually
	sending. Allow XML to be sent using the GET method, appropriately URL
	encoded (undocumented).  Add documentation, drop default "post"
	argument for sendAndLoad, as all users now need to specify a method.

2008-09-29  strk <strk@gnash>

	[9859] Hint deb package name for swfmill

2008-09-28  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9858] Check that data is returned in XMLSocket_as::fillMessageList to
	prevent out-of-bounds reads. Don't recycle the return from select()
	for read(), which doesn't help clarity. And make the function void, as
	we don't care about the return.  Fixes an abort in the CSU. Er, I mean
	the tagesschau.de election monitor (which almost works now, by the
	way).

2008-09-27  strk <strk@lo>

	[9857] Make sure sol files copied over SOLDIR are writable by user
	while running the SharedObjectTestRunner. On 'distcheck' they aren't
	by default writeable because they inherit permission flags from the
	source copy which is in a read-only tree (this is an hack of
	'distcheck' to verify there's NO copy on the source tree while
	building)

2008-09-26  strk <strk@xtops>

	[9856] Force cleanup of target soldir

2008-09-26  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9855] Workaround for older ming.

2008-09-26  strk <strk@xtops>

	[9854] For the sake of testing framework, still push sounds to the
	active sounds container when asked to play them.

2008-09-26  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9853] Drop render.h includes.

2008-09-26  strk <strk@xtops>

	[9852] Increment the count of sounds start/stop requests (for testing
	framework) even if it isn't possible to actually start sounds (system
	audio errors).

2008-09-26  strk <strk@xtops>

	[9851] Don't increment callback clients count if not registerin a new
	one.

2008-09-26  strk <strk@xtops>

	[9850] Add a SoundException class; Have attach_aux_streamer
	implementation for SDL throw a SoundException when it can't fullfill
	the caller request; refactor NetStreamFfmpeg to not only check for the
	existance of a SoundHandler but also an actual success in registering
	as an aux_streamer. This fixes the hung-on-audio-error on mx1.

2008-09-26  strk <strk@xtops>

	[9849] Fix readNetworkLong version found in NetConnection.cpp too

2008-09-26  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9848] Fix a bug in readNetworkLong and amf0_read_value.

2008-09-26  strk <strk@xtops>

	[9847] Don't read one byte more for META FLV tag; log unimpl if type
	of first AMF0 value is not STRING as expected.

2008-09-25  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9846] Prevent aborts in some malformed SWFs.

2008-09-25  Russell Nelson <nelson@crynwr.com>

	[9845] update README with building options, and README_CVS for bzr.

2008-09-25  strk <strk@lo>

	[9844] Don't add +5 to the "beta" version of Ming if ming-config
	--version  returns NO beta and NO rc substrings. Fixes recognition of
	latest Ming release (0.4.2). Fix Ming-version dependent stuff in
	matrix_test.c; it will fail with ming-head but just due to the fact
	version hasn't been updated in Ming cvs yet (ie: cvs appers to be the
	same version of latest release). I'll be fixing the Ming part next..

2008-09-25  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9843] Fix bug #24363.

2008-09-25  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9842] Bugfixes to and more tests for flash.geom.Transform class.

2008-09-25  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9841] Log warning if an unsuitable locale is used.

2008-09-25  Jason Woofenden <jason@jasonwoof.com>

	[9840] set startstopped off for gnash testing and fix typo (see bug
	#24372)

2008-09-25  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9839] Update for new swfdec tests, correct Color class propflags.

2008-09-25  strk <strk@lo>

	[9838] Limit the FLV streams probe to a compile-time defined number of
	bytes. Always probe the stream, even if FLV headers flag say there's
	nothing in it (tested as expected behavior). See bug #24371 for more
	info.

2008-09-25  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9837] Passing test, complete / correct Key class.

2008-09-25  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9836] Set valid bounds to full window, not 1 less. Fixes graphical
	rubbish on the bottom line of some movies.

2008-09-25  strk <strk@lo>

	[9835] Fix streams info scan in FLVParser (bug #24371); turn the a/v
	flags off when no actual tags were found; log an error when a/v tags
	are  found while not expected.

2008-09-25  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9834] Small improvement to logging, correct propflags.  More help
	interpreting the swfdec testsuite run.

2008-09-24  strk <strk@lo>

	[9833] Don't reset a TextField bounding box if autoSize!=none BUT
	wordWrap=true Fixes bug #24348.

2008-09-24  strk <strk@lo>

	[9832] Just tested plugin with Iceweasel 2.0.0.6

2008-09-24  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9831] Minor cleanups, minor AS compatibility fixes.

2008-09-24  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9830] Const correctness, reduce unnecessary const_casts (const_casts
	are particularly evil), optimize Button (button_character_instance)
	class.  Minor actionscript compatibility fixes.  Drop unused methods.

2008-09-24  strk <strk@lo>

	[9829] as_errors are as_errors...

2008-09-24  strk <strk@lo>

	[9828] Make matrix_test.c aware of latest Ming bugfixes.

2008-09-24  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9827] Minor cleanups, simplification and documentation of Gui class.

2008-09-23  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9826] Improve swfdec testsuite run.

2008-09-23  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9825] Fix bug #24355.

2008-09-23  strk <strk@xtops>

	[9824] ignore SIGHUP while running tests. Fixes false failures on
	debian stable.

2008-09-23  strk <strk@xtops>

	[9823] add comments above snippet of code handling exceptional returns

2008-09-23  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9822] Update docs for libmad removal.

2008-09-23  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9821] Remove all mad code finally.

2008-09-23  Sandro Santilli <strk@keybit.net>

	[9820] Add more matrix tests

2008-09-23  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9819] Another tested browser.

2008-09-23  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9818] Missing commit from yesterday.  Update README a bit.

2008-09-23  Sandro Santilli <strk@keybit.net>

	[9817] Add test for matrix values right before the tests that fail
	with new math (the new tests succeed with current code)

2008-09-22  Sandro Santilli <strk@keybit.net>

	[9816] Look for LIBAVCODEC_VERSION_TRIPLET before LIBAVCODEC_VERSION
	as the latter is defined in terms of the former when available. Fixes
	configuration on fedora9.

2008-09-22  Sandro Santilli <strk@keybit.net>

	[9815] Don't forget the dust-hiding carpet !

2008-09-22  Sandro Santilli <strk@keybit.net>

	[9814] Hide ffmpeg include dust in a custom header, included by all
	users. Provide the damn INT64_C macro if not defined. Fixes support
	for 51.40.2 and 51.40.4 and 51.12.1  and who knows what else

2008-09-22  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9813] Improve flash package testing. Add new tests for
	ColorTransform.  Make corrections to availability of
	flash.geom.Transform based on tests (also in swfdec testsuite).
	Implement ColorTransform and Transform.colorTransform.  Passes in
	MovieClip, Transform and all the new tests for ColorTransform.
	Cleanups to flash package classes.

2008-09-22  Russell Nelson <nelson@crynwr.com>

	[9812] warn ppl about changing doc/C without --enable-docbook

2008-09-22  strk <strk@xtops>

	[9811] Fixes to support ffmpeg in debian stable (51.11.0).

2008-09-22  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9810] More tests for ColorTransform.

2008-09-22  Sandro Santilli <strk@keybit.net>

	[9809] Include external headers with <>

2008-09-22  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9808] Tests for flash.geom.ColorTransform.

2008-09-22  Sandro Santilli <strk@keybit.net>

	[9807] Fail ffmpeg version check if version > 52.0.0 and swscale isn't
	found

2008-09-22  Sandro Santilli <strk@keybit.net>

	[9806] Don't assume an 'ffmpeg' substring in avcodec.h path means the
	layout is ffmpeg/avcodec.h rather then libavcodec/avcodec.h. Be more
	accurate about the test...

2008-09-22  Sandro Santilli <strk@keybit.net>

	[9805] Pad ffmpeg version to make space for 2 digit per version level,
	cleanups and improvements in output. See bug #24310.

2008-09-22  Sandro Santilli <strk@keybit.net>

	[9804] Don't add -I/usr/include for X11 headers

2008-09-22  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9803] Some localization for the release.  Fix the SAMPLE_FMT_S24
	build problem.  Credit translators in GTK gui.

2008-09-20  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9802] Make Transform_as's sprite_instance reference safe (I think),
	pending more tests about how the binding should be done.  Implement
	matrix setter because it's easy, may be useful in testing, and makes
	all the senocular Matrix demonstrations work, which is nice.
	Transform.as matrix tests all pass (apart from one accuracy-based
	one).

2008-09-20  Sandro Santilli <strk@keybit.net>

	[9801] Expect more successes about MovieClip.transform

2008-09-20  Sandro Santilli <strk@keybit.net>

	[9800] Add zou's new matrix math (compile-time off for now)

2008-09-20  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9799] MovieClip binding tests.

2008-09-20  Sandro Santilli <strk@keybit.net>

	[9798] Sound is still an object, needs to mark proper properties too
	for GC! NOTE: this isn't tested, to test it should be enough to add a
	custom property to a Sound instance and access it on next frame (and
	check with valgrind if that isn't enough for a segfault)

2008-09-20  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9797] Working but *not sufficiently tested* implementation of
	MovieClip.transform and flash.geom.Transform.matrix getter. This is
	for testing of the internal matrix.  Implementing the setter should be
	very easy.

2008-09-20  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9796] Another test for Transform.

2008-09-20  Sandro Santilli <strk@keybit.net>

	[9795] Use libungif if libgif isn't found. Minor tweaks in
	matrix_test.swf.

2008-09-19  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9794] Prevent an abort.  Test Transform more.

2008-09-19  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9793] Tests.

2008-09-19  Russell Nelson <nelson@crynwr.com>

	[9792] xpi needs a .../plugins directory

2008-09-19  Sandro Santilli <strk@keybit.net>

	[9791] Add info about corrispondence between gnash::matrix and
	flash.geom.Matrix

2008-09-19  Sandro Santilli <strk@keybit.net>

	[9790] Good stuff: inspect matrix values after setting parameters

2008-09-19  Sandro Santilli <strk@keybit.net>

	[9789] Fix make check (hopefully)

2008-09-19  Sandro Santilli <strk@keybit.net>

	[9788] More matrix tests using MovieClip.prototype.transform getter

2008-09-19  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9787] Define an as_object interface class for loadable objects, for
	use by LoadVars and XML. This reflects the relationship between the
	objects (and saves much code duplication).  Const correct property
	enumeration.

2008-09-18  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9786] Commit before merging...

2008-09-18  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9785] Tests for MovieClip properties, plus a rename that was
	languishing forgotten somewhere.

2008-09-18  Markus Gothe <nietzsche@lysator.liu.se>

	[9784] removed from now on

2008-09-18  Sandro Santilli <strk@keybit.net>

	[9783] add visual widget to better show effects of matrices. seems to
	me that gnash is failing there

2008-09-18  Sandro Santilli <strk@keybit.net>

	[9782] yet some other matrix test

2008-09-18  Sandro Santilli <strk@keybit.net>

	[9781] add test for inversion of not-invertible matrix

2008-09-18  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9780] Minor stuff.

2008-09-18  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9779] Simplify and tidy up.

2008-09-18  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9778] Simplify as_object interface.

2008-09-18  Sandro Santilli <strk@keybit.net>

	[9777] further improved matrix_test to use _rotation too

2008-09-18  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9776] Use namedStrings more.  Do more tidying up of old XML_as code.

2008-09-18  Sandro Santilli <strk@keybit.net>

	[9775] Add compile-time define to switch cached matrix parameters off

2008-09-17  Russell Nelson <nelson@crynwr.com>

	[9774] use portable shell

2008-09-17  Markus Gothe <nietzsche@lysator.liu.se>

	[9773] Note to self: KISS; Darwin's liboolize

2008-09-17  Markus Gothe <nietzsche@lysator.liu.se>

	[9772] Fix Darwin's liboolize to not run configure

2008-09-17  Markus Gothe <nietzsche@lysator.liu.se>

	[9771] Added Darwin's libtoolize support

2008-09-17  Markus Gothe <nietzsche@lysator.liu.se>

	[9770] Added Darwin's libtoolize support

2008-09-17  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9769] Use PROP_uCUSTOM_HEADERS everywhere.

2008-09-17  Sandro Santilli <strk@keybit.net>

	[9768] Another read-matrix-from-swf case

2008-09-17  Sandro Santilli <strk@keybit.net>

	[9767] fix compiler errors in mysql extension

2008-09-17  Sandro Santilli <strk@keybit.net>

	[9766] fix build of extensions after array class rename

2008-09-17  Sandro Santilli <strk@keybit.net>

	[9765] Add tests for effects of setting _xscale and _yscale on
	characters with weird matrices read from SWF. Changed
	character::set_x_scale to use matrix::set_x_scale as that seems to
	give better results. (overall results are still frustrating though)

2008-09-17  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9764] Clarify ownership of network streams.  Implement
	addRequestHeaders for XML and LoadVars correctly (passes in swfdec and
	for new tests in actionscript.all). There's quite a bit of code
	duplication for these two classes.  Rename various as classes for
	consistency.

2008-09-17  Sandro Santilli <strk@keybit.net>

	[9763] Try hitTest with the transformed characters. Gnash succeeds.
	Note that this is with shapeFlag off (only checking boundaries). Dunno
	why, when trying shapeFlag on (check actual shape hit) the pp gives
	odd results.

2008-09-17  Sandro Santilli <strk@keybit.net>

	[9762] More tests for matrix to caches, fix computation of matrix
	caches in button instances, minor cleanup

2008-09-17  Bastiaan Jacques <bastiaan@bjacques.org>

	[9761] libcore/matrix.cpp: document determinant() implementation.
	libcore/vm/CallStack.h: allow vector as_value class visibility; fixes
	compile.

2008-09-16  Sandro Santilli <strk@keybit.net>

	[9760] Use named strings where appropriate, shake code a bit in array

2008-09-16  Sandro Santilli <strk@keybit.net>

	[9759] add test for 'constructor' property of array instances

2008-09-16  Sandro Santilli <strk@keybit.net>

	[9758] - Drop another static member (CallStack) - Implement
	arguments.caller

2008-09-16  Russell Nelson <nelson@crynwr.com>

	[9757] simplify code and only look where we expect testrun.sum files

2008-09-16  Russell Nelson <nelson@crynwr.com>

	[9756] testsuite/MovieTester.cpp: back out debugging printfs

2008-09-16  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9755] Do the same for LoadVars as for XML (sendAndLoad).

2008-09-16  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9754] Allow XML.sendAndLoad to take any object as second argument
	(tested in  actionscript.all/XML.as).  Allow loading of data into
	either XML or LoadVars (not automatically tested). Fixes Twitter's
	SWF, which expects data to be loaded into a passed LoadVars.  Partial
	implementation of XML.addRequestHeader (not automatically tested),
	which may not be completely correct but is better than nothing.

2008-09-16  Sandro Santilli <strk@keybit.net>

	[9753] Test that _parent of a new TextField is undefined

2008-09-16  Sandro Santilli <strk@keybit.net>

	[9752] more ignores

2008-09-15  Russell Nelson <nelson@crynwr.com>

	[9751] Can't use ``thingie'' in a shell script

2008-09-15  Sandro Santilli <strk@keybit.net>

	[9750] Fix bug #24266 (handling of TextField's _width & _height)

2008-09-15  Bastiaan Jacques <bastiaan@bjacques.org>

	[9749] Simplify SimpleBuffer using a scoped array.

2008-09-15  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9748] Check whether sound has been deleted before mixing; might fix
	bug #22314.

2008-09-15  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9747] Don't write the address of std::ofsteam out to the rcfile.

2008-09-15  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9746] We don't protect the stack any more. Clarify std::bad_alloc
	handling.

2008-09-15  Bastiaan Jacques <bastiaan@bjacques.org>

	[9745] Make sed expression BSD-compatible.

2008-09-15  Sandro Santilli <strk@keybit.net>

	[9744] minor cleanups

2008-09-15  Sandro Santilli <strk@keybit.net>

	[9743] modify test to be compatible with an older Ming having troubles
	with enumeration syntax (fixes run on gnashdev).

2008-09-15  Sandro Santilli <strk@keybit.net>

	[9742] - Allow MovieClip.getBounds to be called for any character and
	with   any character as first arg - Add more tests to TextField.as -
	Fix debugging output of SharedObjectTestRunner

2008-09-15  Sandro Santilli <strk@keybit.net>

	[9741] update expected swfdec test results

2008-09-15  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9740] Fix for bug #24265 (crash loading malformed jpeg).

2008-09-15  Sandro Santilli <strk@keybit.net>

	[9739] - Fix haxe-based testsuite build scripts. - Don't pretend
	as_value by Element is able to construct sprites (isn't)

2008-09-15  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9738] Revert plugin to snprintf, as it didn't work (forgot make
	install-plugin). Should be sorted out properly later, but we can't
	have the plugin not working...

2008-09-15  Sandro Santilli <strk@keybit.net>

	[9737] Test/fix MOVIECLIP types with amf0

2008-09-14  Sandro Santilli <strk@keybit.net>

	[9736] Improvements in AMF0 serialization (skip hidden props, skip
	functions)

2008-09-14  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9735] Simplify gui interface.  Use C++ for conversion.

2008-09-14  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9734] snprintf is barely better than printf and isn't at all
	standard. Use stringstreams instead. Use strncpy to copy data into a C
	string.

2008-09-13  Sandro Santilli <strk@keybit.net>

	[9733] Switch default AMF decode/encode implementation used for
	SharedObject to buffer-based, stub missing SharedObject methods

2008-09-12  Russell Nelson <nelson@crynwr.com>

	[9732] testsuite/actionscript.all/SharedObject.as: don't create files
	with spaces in their namesplugin/xpcom/README.txt: point at the
	tutorial and author.

2008-09-12  Russell Nelson <nelson@crynwr.com>

	[9731] Ugly but necessary switch from 'flash' to 'SWF' everywhere
	appropriate

2008-09-12  Russell Nelson <nelson@crynwr.com>

	[9730] testsuite/misc-haxe.all/Makefile.am: improvements for
	distcheckpackaging/xpi.am: really ought to include the version.

2008-09-12  Sandro Santilli <strk@keybit.net>

	[9729] Fix latest youtube player.

2008-09-12  Sandro Santilli <strk@keybit.net>

	[9728] - Improve Element to as_value converter. - Add log_amferror and
	related gnashrc directive.

2008-09-12  Sandro Santilli <strk@keybit.net>

	[9727] - Fix make dist (SharedObjectTest stuff) - Update expected
	results from swfdec testsuite - Improve SharedObjectTest.as (effects
	of prop flags over serialization) - Improve SharedObjectTestRunner
	(now tests both reading and writing) - Make object property visitor a
	virtual non templated method, so to   allow scanning array properties
	in the short term (they should really   be normal properties instead).
	- Improve AMF deserialization (readAMF0) - Improve AMF serialization
	(writeAMF0) - Fix enumeration of array properties and add tests for it

2008-09-12  Bastiaan <bastiaan@apex.bjacques.org>

	[9726] Make sure exported symbols are visible across DSOs.
	http://wiki.gnashdev.org/CodingStyle#Preprocessor_directives

2008-09-11  rob@welcomehome.org

	[9725] build libtool2 in it's own directory. Make distcheck work again
	using either libtool 1.5.x or 2.2.6.

2008-09-11  Sandro Santilli <strk@keybit.net>

	[9724] Test ECMA_ARRAY amf0 parsing (still bogus in gnash)

2008-09-11  Sandro Santilli <strk@keybit.net>

	[9723] Don't access the VM singleton from movie_root. Hold a ref
	instead. Hush debugging for remoting.

2008-09-11  Sandro Santilli <strk@keybit.net>

	[9722] Improve SharedObject test. Commit patches contributed by Jason
	Woofenden implementing SharedObject.cpp using the buffer-based
	encoder/decoder. Jason code make all of the self-contained test
	succeed except comparison of input and output (gnash fails in
	producing an optimization version of the .sol file for a strict
	array). NOTE: Jason code doesn't replace original code; instead it's
	DISABLED BY DEFAULT and can be enabled by defining a macro in
	SharedObject.cpp for further testing (#define BUFFERED_AMF_SOL).

2008-09-11  Sandro Santilli <strk@keybit.net>

	[9721] Expect failures in the test

2008-09-11  rob@welcomehome.org

	[9720] fix the conditionals for libtool, and for libtool 2.x, force
	the build directory paths to be libbase/libltdl

2008-09-11  rob@welcomehome.org

	[9719] install libltdl as a subdirectory of libbase when using libtool
	2.x

2008-09-11  rob@welcomehome.org

	[9718] use libbase as the top builddir.

2008-09-10  rob@welcomehome.org

	[9717] test for a yes value instead of a no value, which fixes builds
	for libtool 1.5 without specifing --enable-ltdl-install

2008-09-10  Bastiaan Jacques <bastiaan@bjacques.org>

	[9716] Let autotools figure out what the preprocessor is.

2008-09-10  Sandro Santilli <strk@keybit.net>

	[9715] More cleanups to SharedObject and normalization tests.

2008-09-10  Sandro Santilli <strk@keybit.net>

	[9714] Introduce SharedObjectLibrary, cleanup code (still using SOL)

2008-09-10  Sandro Santilli <strk@keybit.net>

	[9713] const-correctness in gnash::SOL, more tests about SharedObject

2008-09-10  Sandro Santilli <strk@keybit.net>

	[9712] test effects of calling SharedObject.getLocal with no arg

2008-09-10  Sandro Santilli <strk@keybit.net>

	[9711] run the new SharedObject test as part of 'make check'

2008-09-10  Sandro Santilli <strk@keybit.net>

	[9710] Add read/write test for SharedObject (self-contained).

2008-09-09  Sandro Santilli <strk@keybit.net>

	[9709] Fix name clash of PropsSerializer class (fixes bug #24224).
	Cleanups and tests for SharedObject.

2008-09-09  Sandro Santilli <strk@keybit.net>

	[9708] fix segfault on non-existing movie (bug #24232)

2008-09-09  Sandro Santilli <strk@keybit.net>

	[9707] SharedObject cleanups and test improvement

2008-09-09  Sandro Santilli <strk@keybit.net>

	[9706] Fix AMF0 serializer/deserializer (add OBJECT and ARRAY writing
	support, fix visibility of __proto__ and constructor members, fix
	reference indexing) Potlatch now works.

2008-09-09  Markus Gothe <nietzsche@lysator.liu.se>

	[9705] sprintf -> snprintf

2008-09-09  Markus Gothe <nietzsche@lysator.liu.se>

	[9704] atof -> strtof

2008-09-09  Markus Gothe <nietzsche@lysator.liu.se>

	[9703] atoi -> strto(u)l

2008-09-08  Markus Gothe <nietzsche@lysator.liu.se>

	[9702] signal.h -> csignal

2008-09-08  Markus Gothe <nietzsche@lysator.liu.se>

	[9701] atoi() -> strtol()

2008-09-08  Markus Gothe <nietzsche@lysator.liu.se>

	[9700] Use env.bottom() for debbuger

2008-09-08  Sandro Santilli <strk@keybit.net>

	[9699] fix amf reference debugging output

2008-09-08  Sandro Santilli <strk@keybit.net>

	[9698] Oops, fix serialization of object/reference

2008-09-08  Sandro Santilli <strk@keybit.net>

	[9697] add as_value serializer (writeAMF0) and support circular
	references

2008-09-08  rob@welcomehome.org

	[9696] don't waste time on client side RTMP support anymore.

2008-09-08  Sandro Santilli <strk@keybit.net>

	[9695] Fix last make check failure (but a bug is still around in
	collision detection)

2008-09-08  rob@welcomehome.org

	[9694] merge libtool2 support from branch

2008-09-07  Markus Gothe <nietzsche@lysator.liu.se>

	[9693] implemted set_stack_index()

2008-09-07  Markus Gothe <nietzsche@lysator.liu.se>

	[9692] Fixed make check

2008-09-07  Markus Gothe <nietzsche@lysator.liu.se>

	[9691] remove non-existent libcygnal.la

2008-09-06  Markus Gothe <nietzsche@lysator.liu.se>

	[9690] Fix debugger

2008-09-06  Sandro Santilli <strk@keybit.net>

	[9689] Add .vimrc file helping with the 4-spaces tabs style.

2008-09-06  Russell Nelson <nelson@crynwr.com>

	[9688] Fixed a couple of problems that prevented 'make xpi' from
	working.

2008-09-06  Bastiaan Jacques <bastiaan@bjacques.org>

	[9687] Pass Element by reference (and not by pointer) to as_value so
	it won't be converted to bool or int. Don't delete two objects that
	got their ownership transferred. Should fix AsValueTest all around.

2008-09-06  Bastiaan Jacques <bastiaan@bjacques.org>

	[9686] Allow the Ming tests to run on OpenBSD by added some includes
	and forcing the argument to sqrt to floating point to resolve
	ambiguity.

2008-09-06  Bastiaan Jacques <bastiaan@bjacques.org>

	[9685] Add extra includes for compatibility on OpenBSD.

2008-09-05  Russell Nelson <nelson@crynwr.com>

	[9684] May not fix XPCOM, but it doesn't break 'make check' any worse
	than it already is.

2008-09-05  Bastiaan Jacques <bastiaan@bjacques.org>

	[9683] Remove references to fixed bugs.

2008-09-04  Markus Gothe <nietzsche@lysator.liu.se>

	[9682] Fixed deletion of auto_ptr

2008-09-04  Sandro Santilli <strk@keybit.net>

	[9681] close loadVariables IOChannel as soon as done with it, prepare
	to debug more CURL haging due to IOCHannel leaks on exit.

2008-09-04  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9680] Pass movie_definition by reference, as it always has to be
	there.  Other minor cleanups.

2008-09-04  rob@welcomehome.org

	[9679] merge bug fix from rtmp branch for failing test cases

2008-09-04  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9678] Drop assertion in Sound.cpp, make mouse button events handling
	in movie_root a bit more sensible. Don't leak ClassHierarchy on VM
	destruction (doesn't really matter now, but would if SWFs could be
	played successively).

2008-09-04  Sandro Santilli <strk@keybit.net>

	[9677] Make as_value::to_element return by auto_ptr, have as_value by
	Element constructor take a const ref. Minor const correctness and
	headers streamline in libamf.

2008-09-04  Sandro Santilli <strk@keybit.net>

	[9676] Don't include element.h, a forward declaration is enough and
	avoids having to include libamf from lots of subdirs (testsuite and
	extensions)

2008-09-04  bastiaan <bastiaan@rimmer>

	[9675] Stop stating the obvious.

2008-09-03  Sandro Santilli <strk@keybit.net>

	[9674] Make Player's Gui non-static, rework core to host communication
	design

2008-09-03  rob@welcomehome.org

	[9673] merge support from branch for maming amf elements from
	as_values.

2008-09-03  rob@welcomehome.org

	[9672] merge patch from rtmp branch.

2008-09-03  rob@welcomehome.org

	[9671] merge patch for getting element data

2008-09-03  rob@welcomehome.org

	[9670] merge patch for creating as_values

2008-09-03  rob@welcomehome.org

	[9669] Merge from rtmp branch.

2008-09-03  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9668] Plug leak.

2008-09-03  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9667] Drop some unnecessary utility code.  Other maintenance
	(renaming, cleanups).

2008-09-03  Sandro Santilli <strk@keybit.net>

	[9666] Generated ChangeLog using 'bzr log --gnu -r 9417..'

2008-09-03  Sandro Santilli <strk@keybit.net>

	[9665] Reintroduce MIT_SHM for agg (was forced off); testsuite
	(matrix) cleanups; remoting cleanups

2008-09-03  bastiaan <bastiaan@rimmer>

	[9664] Use boost's numeric conversion instead of trunc to improve
	portability. This should not result in a change of behaviour.

2008-09-03  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9663] Failing tests for try.

2008-09-03  Sandro Santilli <strk@keybit.net>

	[9662] add tag interface to MediaParser; implement it in FLVParser and
	use from NetStreamFfmpeg

2008-09-02  Russell Nelson <nelson@nelson-desktop>

	[9661] removing -fshort-wchar; we need to use it only on the NPAPI

2008-09-02  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9660] Small cleanups.

2008-09-02  Sandro Santilli <strk@keybit.net>

	[9659] Cleanups in amf::Element class and libmedia

2008-09-01  Russell Nelson <nelson@nelson-desktop>

	[9658] Changes needed to make --enable-xpcom to compile on Gutsy
	Gibbon

2008-09-01  Sandro Santilli <strk@keybit.net>

	[9657] Use a single stack (VM-owned) for ActionScript execution

2008-09-01  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9656] Fix segfault when video pitch is not a multiple of 4. Fix
	segfault when decoder setup fails for embedded video. Don't abort when
	an unknown codec is encountered; instead, log error, fail to construct
	a VideoDecoder, and continue. Also don't construct a VideoDecoder when
	other fatal errors occur.  Add MediaException class for use in
	libmedia.

2008-09-01  Sandro Santilli <strk@keybit.net>

	[9655] some missing unimplemented messages and args marshalling
	optimization

2008-09-01  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9654] Remove obsolete code.

2008-08-31  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9653] Use an appropriate size_type for SafeStack so that it is always
	guaranteed to be valid (although the stack size is never likely to
	exceed an unsigned int).  Make more members private, which ought to
	fix any visibility problems. There's something wrong if private
	members need to be exported, and it builds fine for me now with
	visibility support enabled.  Comment out unused variables in obsolete
	functions.

2008-08-31  Markus Gothe <nietzsche@lysator.liu.se>

	[9652] fix std::min() as suggested by Bastiaan. TODO: Fix Debugger.cpp

2008-08-31  Markus Gothe <nietzsche@lysator.liu.se>

	[9651] visbility fix

2008-08-30  Markus Gothe <nietzsche@lysator.liu.se>

	[9650] Fix std:min on BSD

2008-08-30  Sandro Santilli <strk@keybit.net>

	[9649] Change AVM1 stack management to allow smashing as expected. Fix
	build with older ffmpeg.

2008-08-28  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9648] Convert VP6A video to image::ImageRGBA. This only succeeds with
	SwScale, not with older versions of ffmpeg.  Make renderers accept but
	ignore RGBA data. It is easy to get agg to render the RGBA images,
	slightly harder to get it to handle both RGB and RGBA, and so far I
	don't see how to get it to handle transparency correctly.

2008-08-28  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9647] Fix for bug #24144. It isn't very elegant, but should work
	until FLVParser gets some much needed attention.

2008-08-28  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9646] Drop the unused half of NetConnection so that it's clear how
	the class  works and what it's for. Some minor cleanups to logging and
	code. Use smart pointers when it's useful.  Allocate a SwsContext for
	each instance of the VideoDecoderFfmpeg class so that newer versions
	of Ffmpeg can decode more than one NetStream simultaneously. Make sure
	it's freed on destruction. The ifdefs make the code a bit messier, but
	that's ffmpeg's fault for changing its API.

2008-08-26  Sandro Santilli <strk@keybit.net>

	[9645] Add test for effects of setting _width on _xscale and _height
	on _yscale

2008-08-26  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9644] Minor optimizations and removal of unused functions.

2008-08-26  Sandro Santilli <strk@keybit.net>

	[9643] Fix the matrix regression (youtube, potlatch and friends). See
	bug #24094 and bug #21756.

2008-08-25  Sandro Santilli <strk@keybit.net>

	[9642] fix up the annoinlgy failing testcase

2008-08-25  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9641] Reduce XMLSocket code, various bugfixes and AS compatibility
	corrections.  Improve tests.

2008-08-25  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9640] Stub unimplemented XMLNode functions.

2008-08-25  Sandro Santilli <strk@keybit.net>

	[9639] Fix ffmpeg version detection for deb-based packages

2008-08-25  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9638] Some maintenance on XMLSocket class.  Tests for XMLNode.
	Update swfdec testsuite results.

2008-08-22  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9637] Fix build bug.

2008-08-22  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9636] Remerge of last few commits for the sake of the log messages.

2008-08-22  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9635] Apparently a partial merge doesn't include all the individual
	commit messages, which is rubbish and makes it hard to see what I've
	done, so I'm reverting and recommitting this.

2008-08-22  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9634] Missed in last merge.

2008-08-22  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9633] Fixes to Math class, cleanup in as_value.cpp.

2008-08-22  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9632] Progress in making tu_file redundant. It is now an ordinary
	derived class of IOChannel, with no custom callbacks, and is only used
	for opening files or file descriptors so can be replaced easily with
	anything  suitable.

2008-08-22  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9631] Some cleanups.

2008-08-21  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9630] Drop temporary debug logging, add ostream operator<< for
	event_id.

2008-08-20  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9629] Partial fix and major cleanup for XMLSocket. It is unfinished,
	but appears to fix a crash occurring whenever XMLSocket.onXML() is
	called (that is, when XMLSocket.onData is undefined), gets onData
	generally correct, and produces some sensible output for onXML.
	Remove non-existent names from namedStrings.

2008-08-20  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9628] Minor cleanups only.

2008-08-20  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9627] Refine the test and make it a bit more robust.

2008-08-20  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9626] Add a Perl XMLSocket server and a self-contained test for
	XMLSocket.onData, which Gnash fails.  The server must be running
	before the SWF starts. It sends back everything it receives, replacing
	certain patterns with \n or \0.  Does anyone have any idea how to
	automate this?

2008-08-19  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9625] Use tRNS block, setting the image type to RGBA when it's used.

2008-08-19  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9624] Fix build with older versions of ffmpeg (which will abort if
	they encounter a VP6A video).

2008-08-19  Markus Gothe <markus@Coetzee>

	[9623] Leave out rtmpget

2008-08-19  Markus Gothe <nietzsche@lysator.liu.se>

	[9622] Fixed building

2008-08-19  Markus Gothe <nietzsche@lysator.liu.se>

	[9621] tidy up

2008-08-19  Markus Gothe <nietzsche@lysator.liu.se>

	[9620] Use csignal instead of signal.h

2008-08-19  Markus Gothe <nietzsche@lysator.liu.se>

	[9619] rtmpget added, take 1

2008-08-19  rob@welcomehome.org

	[9618] merge from rtmp branch.

2008-08-18  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9617] We use our own isNaN() now, not any non-standard isnan (whether
	or not it is in namespace std), and that it what we should test.

2008-08-18  Markus Gothe <nietzsche@lysator.liu.se>

	[9616] use namespace std for isnan

2008-08-18  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9615] Some abstractions and class clean-ups to make implementing
	transparent video possible.  Fix gstreamer again, which subclasses
	ImageBase (this seems unnecessary,  but it needs an immediate fix).

2008-08-18  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9614] More image abstraction, cleanup, and removal of unused code.

2008-08-17  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9613] Clean up some silly as_value constructors.

2008-08-17  rob@welcomehome.org

	[9612] Use trunk instead of cvs in the version string.

2008-08-17  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9611] Add some missing NAN->NaN and a missing
	INFINITY->numeric_limits<double>:: infinity().

2008-08-16  rob@welcomehome.org

	[9610] Don't use bogus test case as it has 64bit issues as well.

2008-08-16  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9609] Fix isnan conflict by renaming rather than undefining it. Drop
	other reliance on macros that may or may not exist and use our own
	methods everywhere.

2008-08-16  rob@welcomehome.org

	[9608] Include pthread.h, so it'll compile on the latest OpenBSD

2008-08-16  rob@welcomehome.org

	[9607] Cast squareDistance() to a double, whioch sqrt wants.

2008-08-16  rob@welcomehome.org

	[9606] Use -lm when looking for finite or isfinite as they are link
	tests.

2008-08-15  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9605] Minor cleanups in FreetypeGlyphsProvider. Drop unused function.

2008-08-15  rob@welcomehome.org

	[9604] Only use -Wextra for strict compiling.

2008-08-15  rob@welcomehome.org

	[9603] Decode the MetaData tag in the video stream. FLVParser needs to
	be fixed to pass in the entire packet before this will work 100%.

2008-08-15  rob@welcomehome.org

	[9602] Properly handle meta data tags without the leading type field.

2008-08-15  rob@welcomehome.org

	[9601] Add test cases for decoding meta tag headers without the
	leading type field.

2008-08-15  rob@welcomehome.org

	[9600] Change png to libpng, so it works with pkg-config.

2008-08-15  rob@welcomehome.org

	[9599] include boost/bin.hpp too

2008-08-15  rob@welcomehome.org

	[9598] undef isnan, otherwise we get conflicts on NetBSD.

2008-08-15  rob@welcomehome.org

	[9597] Use older version of the test case that actually compiles.

2008-08-15  Sandro Santilli <strk@keybit.net>

	[9596] Recompute matrix from parameters on update. Fixes MovieClip.as
	but still not potlatch.

2008-08-15  Sandro Santilli <strk@keybit.net>

	[9595] make check fixes and mit-shm leak fix (bug #24068)

2008-08-15  Sandro Santilli <strk@keybit.net>

	[9594] Cache matrix parameters in character instances.

2008-08-14  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9593] Let BitmapMovieDefinition take RGBA as well as RGB images,
	which allows creating transparent bitmap characters from PNG,
	potentially from GIF (not yet implemented) and should make
	implementing MovieClip.attachBitmap() possible.  Restore the clone()
	method of ImageBase, as I'm not sure it was a good idea to drop it.

2008-08-14  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9592] Fix cairo and ogl builds (oops).

2008-08-14  rob@welcomehome.org

	[9591] Merge from rtmp branch the new flvdumper utility, various other
	libamf patches, and some new test cases.

2008-08-13  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9590] Do PNG reading better.

2008-08-13  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9589] Various image-related bugfixes and improvements.

2008-08-13  rob@welcomehome.org

	[9588] We need to link against GIF_LIBS too.

2008-08-12  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9587] Bugfix to PNG image input.

2008-08-12  Sandro Santilli <strk@keybit.net>

	[9586] collision detection fixes, minor cleanups to remoting

2008-08-12  rob@welcomehome.org

	[9585] Merge new XPCOM support from branch.

2008-08-12  Sandro Santilli <strk@keybit.net>

	[9584] Fix remoting for GC, cleanups, fix support for short
	PLACEOBJECT tag

2008-08-12  Sandro Santilli <strk@keybit.net>

	[9583] improve headers parsing

2008-08-12  Sandro Santilli <strk@keybit.net>

	[9582] Fix 404 handling with non-blocking read (well, kind-of).
	Improve remoting by dropping any string_table lookups and properly
	handle 404.

2008-08-12  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9581] Write an RGBA image if an image::rgba is passed.

2008-08-12  Sandro Santilli <strk@keybit.net>

	[9580] Initial remoting support. Needs further cleanup, test and
	improvement .

2008-08-12  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9579] Minor cleanups to ImageOutput.

2008-08-12  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9578] Attempt to fix the Debian Etch build.

2008-08-11  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9577] Provide a unified image-writing interface: ImageOutput. Bring
	JPEG writing under this structure and implement PNG writing. I see no
	point in implementing GIF writing.  There are no users of these yet.
	They will write any valid image_base (presently just image::rgb) to
	the provided IOChannel.

2008-08-11  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9576] Rename stream.{h,cpp} to SWFStream.{h,cpp} to reflect the class
	name.  Add constructor to sprite_definition.cpp for creating an empty
	MovieClip; the SWFStream can then be passed by reference like
	everywhere else.

2008-08-10  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9575] Pass SWFStream always by reference, except in a couple of cases
	where a  NULL pointer has a meaning.  This is an unfinished general
	cleanup to take SWFStream always by reference instead of a mixture of
	pointers and references, with some classes having hacks to convert one
	to the other. It's being committed because others are also working on
	parsing and need to adapt them to this  tag loader interface change.

2008-08-10  rob@welcomehome.org

	[9574] update from branch, XPI packaging now works.

2008-08-10  rob@welcomehome.org

	[9573] Add actionscript.all and libnet.all into DIST_SUBDIRS Ming
	release rc1 is *after* beta5.

2008-08-09  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9572] Delete unused files in doc/C. I keep wasting time editing the
	wrong ones.  Update the correct files with current information.

2008-08-08  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9571] Some cleanups, drop unused functions.  Parse and implement
	DefineButtonCxform tag (SWF2 only).

2008-08-08  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9570] Restore support for SWF2 (PlaceObject tag), which stopped
	working sometime between 2006 and now.

2008-08-08  rob@welcomehome.org

	[9569] Newer version of ffmpeg use LIBAVCODEC_VERSION_TRIPLET instead
	of LIBAVCODEC_VERSION.

2008-08-07  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9568] Parse CSMTextSettings tag (used by myspace).

2008-08-07  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9567] Fix for a segfault in sound_handler_sdl.cpp.  Drop some unused
	functions.

2008-08-07  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9566] Minor addition to image cleanup.  Drop SIZET_FMT everywhere.

2008-08-06  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9565] Unify and clean up the image input interface.

2008-08-06  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9564] Add an interlaced gif in the test suite.

2008-08-06  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9563] Add GIF reading support, improve PNG reading support. Both are
	now a  subclass of ImageInput, which keeps format complications well
	away from the core.

2008-08-05  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9562] Manual test for loading gifs.

2008-08-05  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9561] Clean up logging.

2008-08-05  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9560] Add PNG-reading capabilities. This is only for PNG movies;
	there isn't a way of embedding them in a SWF (at least up to version
	8).  There still might be something to be said for unifying the
	interface to JPEG and PNG.

2008-08-04  Sandro Santilli <strk@keybit.net>

	[9559] Fix xtrace to also do off-visual trace

2008-08-04  Sandro Santilli <strk@keybit.net>

	[9558] First draft of an haxe-based testing framework plus some
	distribution fixes (looks like we weren't distributing the testsuite
	if configure didn't find the required tools to run them !)

2008-08-04  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9557] Enable toString() counting tests.

2008-08-04  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9556] Minor cleanup to gui code.  Log unimplemented when trying to
	jump to before the tag start. This gives a lot of logging when a movie
	is thoroughly obfuscated, but that corresponds to the way the SWF
	looks when it plays.

2008-08-04  Sandro Santilli <strk@keybit.net>

	[9555] SimpleBuffer and cross-blocks branching

2008-08-03  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9554] Give dump gui the C++ treatment. Minor cleanups to
	extention.cpp, comment on implementation of edit_text_character.cpp.

2008-08-01  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9553] Fix autogen.

2008-08-01  Russell Nelson <nelson@nelson-desktop>

	[9552] Fix typo in advice about libming-util

2008-07-31  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9551] Minor cleanups.

2008-07-31  Russell Nelson <nelson@nelson-desktop>

	[9550] Be more paranoid about ming versions

2008-07-31  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9549] Complete implementation of string methods with SWF5 to
	upper/lower. Improve String.toUpper and .toLower. Both need more work.

2008-07-30  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9548] New swfdec tests.

2008-07-30  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9547] Drop -ansi again.

2008-07-30  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9546] Cleanups of extension handling, replace C-style implementation
	with (unoptimized) C++ one. It won't be a bottleneck, but some further
	cleanup would be fine.  Other minor cleanups.  Restore -ansi now that
	some non-standard functions have gone and see how far the win32 build
	gets.

2008-07-30  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9545] Cleanup of extension / module / plugin loading, part I.

2008-07-30  Dossy Shiobara <dossy@panoptic.com>

	[9544] * configure.ac: MinGW gcc 3.4.5 on Win32 won't build with
	-ansi,   which undefines things like strdup, etc.  *
	libbase/Makefile.am: Win32 builds fail when linking against
	libltdl.dll.a, as it's missing the lt_* symbols.  Need to look   into
	this further, but in the meantime, this gets the build   going again.
	* libbase/utility.h: GetCurrentThreadId@0 symbol in kernel32.dll
	needs to be defined outside of the gnash C++ namespace.   Needless to
	say, this change is a fragile hack to get the   build moving again.  *
	libmedia/MediaParser.cpp: usleep() not available on Win32.   This
	should probably go into utility.h or some other platform   abstraction
	lib.

2008-07-29  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9543] Catch actionlimits exception thrown in executeTimers.

2008-07-28  Sandro Santilli <strk@keybit.net>

	[9542] Array fixes and negative matrix scale tests

2008-07-28  Sandro Santilli <strk@keybit.net>

	[9541] Tom's avm2 patches

2008-07-25  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9540] Some minor improvements to BitmapData. This needs more testing.

2008-07-25  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9539] A bit more BitmapData.

2008-07-25  Sandro Santilli <strk@keybit.net>

	[9538] check fixes

2008-07-25  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9537] More tests for instance construction, minor change to
	BitmapData.

2008-07-24  Markus Gothe <nietzsche@lysator.liu.se>

	[9536] comment might be threated as part of the preprocessor-statement

2008-07-24  Markus Gothe <nietzsche@lysator.liu.se>

	[9535] Removed all .cvsignore

2008-07-24  Sandro Santilli <strk@keybit.net>

	[9534] fix most of bwy new testcases (more needed)

2008-07-24  Sandro Santilli <strk@keybit.net>

	[9533] another "check" fix

2008-07-24  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9532] Tests for instance construction.

2008-07-23  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9531] Minor cleanups / Makefile bugfix.

2008-07-23  Sandro Santilli <strk@keybit.net>

	[9530] Fix 'make check' and runs with sound disabled

2008-07-23  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9529] Kill zombie files.

2008-07-23  Sandro Santilli <strk@keybit.net>

	[9528] Embedded streaming sound fix

2008-07-23  Sandro Santilli <strk@keybit.net>

	[9527] URL querystring parsing fix, agg cleanups, avm1 reduced
	paranoia

2008-07-23  Sandro Santilli <strk@keybit.net>

	[9526] Color class as verbosity cleanups

2008-07-23  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9525] Drop compatibility_include.h. Improve string implementation,
	many new passes in testsuite.

2008-07-23  Sandro Santilli <strk@keybit.net>

	[9524] typo

2008-07-23  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9523] Minor cleanups.

2008-07-23  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9522] Implement String.split more correctly. Document.

2008-07-23  Sandro Santilli <strk@keybit.net>

	[9521] ignore renames

2008-07-22  rob@welcomehome.org

	[9520]   Rename server directory to libcore. Change path in all
	Makefiles. Change   libgnashserver to libgnashcore, change name in all
	Makefiles. Move files from   libgeometry to libbase, and from
	testsuite/libgeometry to testsuite/libbase.   Rename testsuite/server
	to testsuite/libcore.all.

2008-07-22  Sandro Santilli <strk@keybit.net>

	[9519] Have TextFormat query fonts from relative movie root before
	then the global shared font lib; trim trailing nulls in string-with-
	length to avoid false negative equality comparisons. Fixes bug #23323.

2008-07-22  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9518] Add xcheck to failing tests.

2008-07-22  Sandro Santilli <strk@keybit.net>

	[9517] hopefully enough to fix 'distcheck'

2008-07-22  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9516] C++ify gtk_glue_agg.

2008-07-22  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9515] Minor cleanups.

2008-07-22  Markus Gothe <nietzsche@lysator.liu.se>

	[9514] Fixed DSOEXPORT

2008-07-22  Markus Gothe <nietzsche@lysator.liu.se>

	[9513] Added Leopard X11 support

2008-07-21  Sandro Santilli <strk@keybit.net>

	[9512] avm2 contributed patch

2008-07-21  Sandro Santilli <strk@keybit.net>

	[9511] more ignores

2008-07-21  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9510] Stub Accessibility class. Rename some asobj files for
	consistency.

2008-07-21  Sandro Santilli <strk@keybit.net>

	[9509] more ignores

2008-07-20  Sandro Santilli <strk@keybit.net>

	[9508] more ignores

2008-07-20  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9507] Fix to try/catch/finally with function returns. The fix is
	suspiciously simple, but has no more unexpected failures. There's more
	to do on try/catch.

2008-07-20  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9506] Modify Try.as for a bug-fixed ming. Don't build for versions of
	ming under 0.4.1 (CVS head of today).

2008-07-20  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9505] Add a test for try / catch with malformed output, as ming
	should now be correct. Add further tests for try / catch in mtasc
	(which produces correct output).

2008-07-20  Sandro Santilli <strk@keybit.net>

	[9504] pause/unpause sound handler, cairo build fix

2008-07-19  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9503] Logging changes.

2008-07-19  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9502] Correct MovieClip depth tests.

2008-07-18  Sandro Santilli <strk@keybit.net>

	[9501] Tom Stellard patches for AVM2 (sorry, I missed to use the
	'avm2' branch, still learning)

2008-07-18  Russell Nelson <nelson@nelson-desktop>

	[9500] libming has its own domain; ming.sourceforget.net redirects
	there.

2008-07-18  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9499] Add a group of tests for depth limits. Do depth checking on
	MovieClip.attachMovie, duplicateMovieClip and
	MovieClip.duplicateMovieClip. This conveniently also prevents UB when
	converting to int.  Allow attachMovie to accept all legal depths, not
	just 0-65535. Don't use depth as ID.  Add static constants to
	character class for upper and lower bounds.

2008-07-17  Sandro Santilli <strk@keybit.net>

	[9498] testsuite fixes, flv meta tag dumping

2008-07-17  Sandro Santilli <strk@keybit.net>

	[9497] avm2 starts to get some love (and bzr branches too)

2008-07-17  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9496] Fix SIZET_FMT warning.

2008-07-16  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9495] Merge of image class changes: slim down the class by removing
	unused code, move into gnash namespace, const correct where possible.

2008-07-16  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9494] Zou's fix to bug 23846 (stage matrix).

2008-07-16  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9493] Define PI properly and update character.cpp. This belongs with
	the last revision, but I forgot to commit locally before merging.

2008-07-16  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9492] Remove obsolete support for dlmalloc and dmalloc. Drop dlmalloc
	files and utility.cpp.

2008-07-15  Russell Nelson <nelson@nelson-desktop>

	[9491] abc_block.cpp requires gnashconfig.h because a boost header
	requires it. Added some protectors for asm blocks, but make check
	still not succeeding. It's a start....

2008-07-15  Sandro Santilli <strk@keybit.net>

	[9490] timers execution and ignores.

2008-07-15  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9489] Update for new swfdec tests.

2008-07-15  Russell Nelson <nelson@nelson-desktop>

	[9488] Add ChangeLog-0.8.3 and adjust ChangeLog

2008-07-15  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9487] Partial fix to bug #23624, minor changes to advance counter,
	cleanups.

2008-07-14  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9486] server/sprite_instance.cpp: minor comments update, added TODO
	about excessive depth handling (undefined behaviour if not checked
	elsewhere)

2008-07-13  Sandro Santilli <strk@keybit.net>

	[9485] Implement Rectangle.contains and add tests for it. Thanks to
	Sean Stangl for the initial draft.

2008-07-13  zou lunkai <zoulunkai@gmail.com>

	[9484] fixed rendering quality regression; fixed bug#23811

2008-07-11  Sandro Santilli <strk@keybit.net>

	[9483] Embedded video refactoring

2008-07-11  Sandro Santilli <strk@keybit.net>

	[9482] maintain last decoded frame for reuse on refresh or gaps

2008-07-10  Sandro Santilli <strk@keybit.net>

	[9481] Allow for binary post data

2008-07-10  Sandro Santilli <strk@keybit.net>

	[9480] Non-blocking IOChannel, heart-beating and distcheck

2008-07-09  Sandro Santilli <strk@keybit.net>

	[9479] version label change: cvs->trunk

2008-07-09  Markus Gothe <nietzsche@lysator.liu.se>

	[9478] Try to do some sanity checks, should fix bug #21095

2008-07-09  zou lunkai <zoulunkai@gmail.com>

	[9477] get rid of 'float to int conversion' warnings messages,
	cleanups, tabs to spaces

2008-07-09  Markus Gothe <nietzsche@lysator.liu.se>

	[9476] Fixed ls -dr check

2008-07-09  Sandro Santilli <strk@keybit.net>

	[9475] update bytes loaded on EOF during FLV indexing - reduce
	debugging noise while playing audio-only flvs with ffmpeg handler.

2008-07-09  Sandro Santilli <strk@keybit.net>

	[9474] Oops, I knew gstreamer would suffer (fix build)

2008-07-09  Sandro Santilli <strk@keybit.net>

	[9473] Use a private timer to advance a NetStream (don't rely on a
	video character driving it). Fixes bug #23802.

2008-07-08  Markus Gothe <nietzsche@lysator.liu.se>

	[9472] Added BOOST_CFLAGS to INCLUDE-path

2008-07-08  Markus Gothe <nietzsche@lysator.liu.se>

	[9471] Edge is not a template anymore

2008-07-08  zou lunkai <zoulunkai@gmail.com>

	[9470] get rid of debugging prints left in my last commit

2008-07-08  zou lunkai <zoulunkai@gmail.com>

	[9469] refactoring of Point2d, Edge and Path classes, now they are all
	implemented by integers

2008-07-08  Sandro Santilli <strk@keybit.net>

	[9468] Summer games : v9

2008-07-08  Sandro Santilli <strk@keybit.net>

	[9467] More swf5 scoping issues

2008-07-05  Sandro Santilli <strk@keybit.net>

	[9466] When calling a function in SWF5, set target to the 'this'
	pointer, if it is a character. Fixes many tests in setProperty.as but
	nothing new in other testsuites. We need more tests on this.

2008-07-04  zou lunkai <zoulunkai@gmail.com>

	[9465] fix some remaining warnings with float points and coordinates,
	cleanups

2008-07-04  zou lunkai <zoulunkai@gmail.com>

	[9464] add tests for boost types(intxx_x), minor cleanups in
	matrix.cpp

2008-07-04  Tom Stellard <tstellar@gmail.com>

	[9463] Patch #6556: Add tag_loader stub for
	DEFINESCENEANDFRAMELABELDATA tag

2008-07-03  Markus Gothe <nietzsche@lysator.liu.se>

	[9462] Added OpenGL dependencies

2008-07-03  Markus Gothe <nietzsche@lysator.liu.se>

	[9461] __APPLE__ should be dinfined by CPP

2008-07-03  Markus Gothe <nietzsche@lysator.liu.se>

	[9460] Use fmod() in favor of typecasting on OS X

2008-07-03  Markus Gothe <nietzsche@lysator.liu.se>

	[9459] Opppssss

2008-07-03  Markus Gothe <nietzsche@lysator.liu.se>

	[9458] Revert back to old behaviour but keep C++-typecsting

2008-07-02  Markus Gothe <nietzsche@lysator.liu.se>

	[9457] Fixes the fmod() issue as seen on OS X.

2008-07-02  Markus Gothe <nietzsche@lysator.liu.se>

	[9456] downcast double to float

2008-07-02  Markus Gothe <nietzsche@lysator.liu.se>

	[9455] Pass floats to sinf and cosf.

2008-07-02  Markus Gothe <nietzsche@lysator.liu.se>

	[9454] beautify

2008-07-02  Markus Gothe <nietzsche@lysator.liu.se>

	[9453] More typecast fixes

2008-07-02  Markus Gothe <nietzsche@lysator.liu.se>

	[9452] Fixed fmod() on some systems...

2008-07-02  Markus Gothe <nietzsche@lysator.liu.se>

	[9451] Clean-up typecasting...

2008-07-02  Markus Gothe <nietzsche@lysator.liu.se>

	[9450] Added #include <cmath>

2008-07-02  Markus Gothe <nietzsche@lysator.liu.se>

	[9449] use std::getline instead of getline() to avoid confusion.

2008-07-02  zou lunkai <zoulunkai@gmail.com>

	[9448] cleanups, float --> int32 conversion for coordinates related
	stuff

2008-07-01  Sandro Santilli <strk@keybit.net>

	[9447] Allow null target in as_environment. Fixes bug #23735 and a few
	cases in our and swfdec's testsuite.

2008-07-01  zou lunkai <zoulunkai@gmail.com>

	[9446] fix rect::expand_to_point(), fix regressions detected in swfdec
	and cvrveball.swf

2008-06-30  Sandro Santilli <strk@keybit.net>

	[9445] dlist.{cpp,h} -> DisplayList.{cpp,h} movie_def_impl.{cpp,h} ->
	SWFMovieDefinition.{cpp,h} Cleanups.

2008-06-30  Markus Gothe <nietzsche@lysator.liu.se>

	[9444] 1.0?

2008-06-30  Bastiaan Jacques <bastiaan@bjacques.org>

	[9443] Remove the unused and undocumented pixel-scale argument from
	many methods.

2008-06-30  zou lunkai <zoulunkai@gmail.com>

	[9442] don't set the height when the bounds is null, fix a regression
	made by my last commit

2008-06-30  zou lunkai <zoulunkai@gmail.com>

	[9441] use integer rect instead of float Range2D for instance bounds,
	more integer math

2008-06-30  Bastiaan Jacques <bastiaan@bjacques.org>

	[9440] PathParser: optimize by allowing inlining and other small
	cleanups. Cairo: Implement cap and line styles and cleanups.

2008-06-28  Bastiaan Jacques <bastiaan@bjacques.org

	[9439] Introducing PathParser for correct shape rendering for Cairo,
	compilation fixes for the Cairo GUI and related changes.

2008-06-27  zou lunkai <zoulunkai@gmail.com>

	[9438] rect class refactory, use integer math instead of float

2008-06-27  Sandro Santilli <strk@keybit.net>

	[9437] Register Gui with movie_root, have movie_root ask gui to prompt
	user on action limit hit.

2008-06-26  Markus Gothe <nietzsche@lysator.liu.se>

	[9436] Make sure we free only alloc'ed pointers.

2008-06-25  Sandro Santilli <strk@keybit.net>

	[9435] Fix leak in ffmpeg audio decoder, other minor cleanups

2008-06-25  Petr Pisar <petr.pisar@atlas.cz>

	[9434] updated Czech translation

2008-06-25  Ed Martin <edman007@edman007.com>

	[9433] This patch moves the argument list creation to before the fork
	removing the malloc/free calls preventing bogus FF3 jemalloc from
	causing a deadlock

2008-06-25  Sandro Santilli <strk@keybit.net>

	[9432] Only use fontconfig from main thread. Fixes bug #23697.

2008-06-25  Sandro Santilli <strk@keybit.net>

	[9431] Allocate just the required amount of bytes on audio resample
	(ffmpeg)

2008-06-25  Markus Gothe <nietzsche@lysator.liu.se>

	[9430] bzr ci

2008-06-25  Sandro Santilli <strk@keybit.net>

	[9429] simplify ignores, add Makefile (in any dir!)

2008-06-25  Daniel Drake <dsd@laptop.org>

	[9428] Fix missing libgnashplugin.so glib link. libgnashplugin uses
	functions like g_io_channel_unix_get_fd()
	http://dev.laptop.org/ticket/7328

2008-06-25  Sandro Santilli <strk@keybit.net>

	[9427] few more ignores (gmo don't get cleared on distcheck,
	expected?)

2008-06-24  Sandro Santilli <strk@keybit.net>

	[9426] Add CTRL-equals, CTRL-minus and CTRL-plus keystroke controlling
	FPS (gtk guys around willing to have fun with some slidebar?) Fix
	computation of "min" fps for fps-debugging.

2008-06-24  Sandro Santilli <strk@keybit.net>

	[9425] Implement fscommand:allowscale, drop debug output at each
	fscommand (unhandled ones will still be printed)

2008-06-24  zou lunkai <zoulunkai@gmail.com>

	[9424] bzr test

2008-06-23  Sandro Santilli <strk@keybit.net>

	[9423] Implement seeking in FLVParser, hopefully fix (or greatly
	reduce chances to incur in) race condition on seek.

2008-06-23  Sandro Santilli <strk@keybit.net>

	[9422] Add test for global/local registers; make registers access
	safer and more general

2008-06-23  Russell Nelson <nelson@nelson-desktop>

	[9421] Update the preformatted docs.

2008-06-22  Sandro Santilli <strk@keybit.net>

	[9420] ignores

2008-06-21  rob@welcomehome.org

	[9419] Disable for now

2008-06-21  rob@welcomehome.org

	[9418] merge from cygnal branch, drop old files

2008-06-21  Benjamin Wolsey <bwy@benjaminwolsey.de>

	[9417] Don't heap allocate vectors, as they allocate their elements on
	the heap anyway.