summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: df58b6763db82874bf0a95090ed091d940ff90af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
=== release 1.1.90 ===

2013-09-24  Thibault Saunier <thibault.saunier@collabora.com>

	* configure.ac:
	  releasing 1.1.90

2013-09-24 14:39:47 +0200  Thibault Saunier <thibault.saunier@collabora.com>

	* configure.ac:
	  RELEASE WIP

2013-08-31 12:05:43 -0400  Thibault Saunier <thibault.saunier@collabora.com>

	* gnl/gnlcomposition.c:
	  composition: Never take the OBJECTS_LOCK when sending events
	  We should never have the OBJECTS_LOCK when sending or receiving
	  events. This lock is usefull only when we deal with children of
	  composition, so it should be used exclusivly for that purpose
	  Avoiding deadlocks
	  https://bugzilla.gnome.org/show_bug.cgi?id=706831

2013-09-20 16:18:30 +0200  Edward Hervey <edward@collabora.com>

	* common:
	  Automatic update of common submodule
	  From b613661 to 6b03ba7

2013-09-19 18:45:49 +0100  Tim-Philipp Müller <tim@centricular.net>

	* common:
	  Automatic update of common submodule
	  From 74a6857 to b613661

2013-09-19 17:38:45 +0100  Tim-Philipp Müller <tim@centricular.net>

	* common:
	  Automatic update of common submodule
	  From 01a7a46 to 74a6857

2013-08-28 14:48:58 -0400  Thibault Saunier <thibault.saunier@collabora.com>

	* gnl/gnlcomposition.c:
	  composition: Do not update the pipeline if we are in NULL state
	  And always update start/duration when removing an object from the
	  composition

2013-08-26 16:26:31 -0400  Thibault Saunier <thibault.saunier@collabora.com>

	* gnl/gnlcomposition.c:
	  composition: Release objects lock while forwarding an event
	  There is no reason to keep it and in some rare cases it creates
	  deadlocks as followed:
	  t1:
	  → Composition receives a flushing seek, it takes the OBJECTS_LOCK
	  and fowards the flushing seek event upstream
	  → adder receives the seek and set its collectpad to flushing
	  This implies tacking STREAM_LOCK (collectpad)
	  t2:
	  → Collectpad has buffers ready, and has the STREAM_LOCK
	  (collectpad) and is EOS, so it sends it downstream
	  → The composition receives EOS, and needs to check if it is
	  the actual EOS or not, thus need to take the OBJECTS_LOCK
	  This create a deadlock, and in the first stage, we did not need the
	  OBJECTS_LOCK to forward downstream the flushing seek, so do not take
	  it.
	  https://bugzilla.gnome.org/show_bug.cgi?id=706831

2013-08-24 22:15:15 -0400  Thibault Saunier <thibault.saunier@collabora.com>

	* gnl/gnlcomposition.c:
	  composition: Validate stack right after it has been re computed

2013-08-15 21:57:49 +0200  Thibault Saunier <thibault.saunier@collabora.com>

	* gnl/gnlcomposition.c:
	  composition: Implement a separate probe to drop data.
	  It ensures that all data that still flows while we update the
	  pipeline is dropped, otherwise we have races where we could get
	  buffer from the old pipeline flowing into elements that are already
	  fully flushed (and have no segment caps, etc... set)
	  Also validate the stack a little later.
	  This commits finnishes what had been started with
	  a24a3be13b81c5d0080c061edf61daece6341f95

2013-08-13 18:20:27 +0200  Thibault Saunier <thibault.saunier@collabora.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Drop any buffer flowing from a source when updating pipeline
	  There is a race where we can have an EOS from the element which
	  srcpad is our ghost pad but other elements upstream are still outputing
	  data and we flush the element so its pads have no segment info
	  anymore, and we end up having warning about flow before segement event.
	  The solution here is that we do not let any data flowing when we are
	  updating the pipeline.

2013-08-02 14:19:28 +0200  Lubosz Sarnecki <lubosz@gmail.com>

	* configure.ac:
	  build: add subdir-objects to AM_INIT_AUTOMAKE
	  Fixes warnings with automake 1.14
	  https://bugzilla.gnome.org/show_bug.cgi?id=705350

2013-01-22 14:40:15 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* gnl/gnloperation.c:
	  gnloperation: check for request pads on the element class not the factory
	  When checking for request pads as fallback, just look at the
	  element's class, not the factory, since there might not be
	  a factory (in case of python elements) or the factory might
	  be the wrong one (in case of a GstBin sub-class) and doesn't
	  have complete information.
	  https://bugzilla.gnome.org/show_bug.cgi?id=582244

2013-06-05 15:14:54 +0200  Mathieu Duponchelle <mathieu.duponchelle@epitech.eu>

	* gnl/gnlcomposition.c:
	  gnlcomposition: grammar (childs -> children)
	  https://bugzilla.gnome.org/show_bug.cgi?id=701647

2013-07-09 23:16:53 +0200  Mathieu Duponchelle <mathieu.duponchelle@epitech.eu>

	* gnl/gnlcomposition.c:
	  composition: Check if we have an entry before trying to get its probeid
	  The object can be removed at the time the pad is removed, avoid segfaulting
	  when that happens.

2013-06-26 17:25:37 -0400  Thibault Saunier <thibault.saunier@collabora.com>

	* gnl/gnlcomposition.c:
	  composition: Add entry to the the hashtable before connecting to pad-added
	  Avoiding races where the pad would be added right between the connection
	  and inserting to the hashtable

2013-06-13 20:33:00 -0400  Thibault Saunier <thibault.saunier@collabora.com>

	* gnl/gnlcomposition.c:
	* tests/check/gnl/complex.c:
	  gnlcomposition: Remove support for gaps
	  The way we were handling gap was weird and not natural at all for
	  users, remove it for now.
	  In the long term, we should have a proper way of filling gaps in the
	  API and for now only emit an STREAM_ERROR message on the bus when a
	  gap is detected.
	  The user is now responsible for filling gaps in the composition
	  https://bugzilla.gnome.org/show_bug.cgi?id=701287

2013-06-13 19:39:55 -0400  Thibault Saunier <thibault.saunier@collabora.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Remove uneeded indents
	  Going from
	  if (something) {
	  do_something();
	  } else {
	  }
	  to
	  if (!something)
	  return;
	  do_something ();

2013-06-13 19:33:46 -0400  Thibault Saunier <thibault.saunier@collabora.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Make the pipeline update protected from any child changes
	  When calling the gnl_object_commit method, we need to make sure that no
	  object can be changed and, it should be true until the pipeline has
	  fully been udpated.
	  We now need the update_pipeline function to be called with the
	  COMP_OBJECTS_LOCK taken, and we do not unlock that lock during the whole
	  pipeline updating process.
	  https://bugzilla.gnome.org/show_bug.cgi?id=701287

2013-06-13 18:51:15 -0400  Thibault Saunier <thibault.saunier@collabora.com>

	* gnl/gnlcomposition.c:
	* gnl/gnlobject.c:
	  gnl: Setting priority == MAXUINT32 does not mean "default object"
	  This was how expandables worked prior to the expandable property.
	  Using MAXUINT32 has some limitation and which are fully covered by the
	  expandable property. Drop this support, as we will plan on implementing
	  an automatic way of filling gaps.
	  https://bugzilla.gnome.org/show_bug.cgi?id=701287

2013-06-07 18:58:24 -0400  Thibault Saunier <thibault.saunier@collabora.com>

	* gnl/gnlcomposition.c:
	* gnl/gnlobject.c:
	* gnl/gnlobject.h:
	* tests/check/gnl/common.c:
	* tests/check/gnl/complex.c:
	* tests/check/gnl/gnlcomposition.c:
	* tests/check/gnl/gnloperation.c:
	* tests/check/gnl/gnlsource.c:
	* tests/check/gnl/seek.c:
	* tests/check/gnl/simple.c:
	  gnl: First implementation of the commit based API
	  Currently, the only safe way to modify a composition, or an object, is to pause
	  the pipeline first. We think that this limitation eliminates many use cases for
	  GNonLin. Few video editors let you create a draft of your video by applying
	  multi-cam technic. Also people could want to eventually consider doing live
	  video production, which obviously require being able to change the composition
	  in playing state (and increase compositon duration as we go).
	  This commit is a first step making GNL fully commit base. Objects, Operations and
	  Compositon keep a copy of modified values, and only apply those changes
	  when a commit is executed. This potentially allows making the changes
	  (or group of changes) fully 'atomic' without having to pause the pipeline.
	  Added API:
	  ----------
	  GnlObject::commit action signal
	  Removed API:
	  ------------
	  GnlComposition:update property
	  + Fix the tests
	  https://bugzilla.gnome.org/show_bug.cgi?id=701287

2013-06-07 18:17:25 -0400  Thibault Saunier <thibault.saunier@collabora.com>

	* gnl/gnlcomposition.c:
	* gnl/gnlobject.c:
	  gnl: Remove trailling whitespaces and tabs in .c files

2013-06-07 11:39:17 -0400  Thibault Saunier <thibault.saunier@collabora.com>

	* gnl/gnlcomposition.c:
	* gnl/gnlghostpad.c:
	* gnl/gnlobject.c:
	* gnl/gnlobject.h:
	* tests/check/gnl/common.c:
	* tests/check/gnl/common.h:
	* tests/check/gnl/gnlcomposition.c:
	* tests/check/gnl/seek.c:
	* tests/check/gnl/simple.c:
	  gnl: Remove the notion of media-duration
	  Rational described at https://bugzilla.gnome.org/show_bug.cgi?id=701287

2013-05-30 17:48:47 -0400  Thibault Saunier <thibault.saunier@collabora.com>

	* docs/libs/gnonlin.args:
	* gnl/gnlcomposition.c:
	* gnl/gnlghostpad.c:
	* gnl/gnlobject.c:
	* gnl/gnlobject.h:
	* tests/check/gnl/common.c:
	* tests/check/gnl/common.h:
	* tests/check/gnl/gnlcomposition.c:
	  gnl: Rename media-start as inpoint
	  Rational described at https://bugzilla.gnome.org/show_bug.cgi?id=701287

2013-06-11 18:22:11 +0200  Mathieu Duponchelle <mathieu.duponchelle@epitech.eu>

	* gnl/gnlcomposition.c:
	  composition: update operations base time even when we don't update the pipeline.

2013-05-29 16:55:34 +0200  Mathieu Duponchelle <mathieu.duponchelle@epitech.eu>

	* gnl/gnlcomposition.c:
	  gnlcomposition: forward non time-resetting flush stops outside the composition, except those consecutive to a seek event.
	  The 'reset-time' parameter has been added in 1.0, and we need it to be FALSE
	  outside the composition.
	  Related to https://bugzilla.gnome.org/show_bug.cgi?id=701146

2013-05-28 19:09:23 +0200  Mathieu Duponchelle <mathieu.duponchelle@epitech.eu>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Don't flush_start / flush_stop according to user's flags.
	  We do it ourselves when needed, doing so led the pipeline to lose state,
	  which was updating the base time.
	  fixes https://bugzilla.gnome.org/show_bug.cgi?id=701146

2013-06-10 17:46:51 -0400  Thibault Saunier <thibault.saunier@collabora.com>

	* gnl/gnlcomposition.c:
	* gnl/gnlghostpad.c:
	* gnl/gnloperation.c:
	* gnl/gnloperation.h:
	  gnl: Properly set operations basetime
	  For operations (especially mixers) to be able to do proper
	  synchronization they need the segment from different sources to be in
	  the same running time context.
	  This commit makes sure that the basetime of the incoming segments of
	  operations will be the same, and equal to the duration of the
	  already "played" time of the operation at the position at which
	  the new portion of the composition starts.

2013-06-05 15:17:37 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 098c0d7 to 01a7a46

2013-05-27 20:52:36 +0200  Mathieu Duponchelle <mathieu.duponchelle@epitech.eu>

	* tests/check/Makefile.am:
	* tests/check/gnl/common.c:
	* tests/check/gnl/common.h:
	* tests/check/gnl/complex.c:
	* tests/check/gnl/gnlcomposition.c:
	* tests/check/gnl/gnloperation.c:
	* tests/check/gnl/gnlsource.c:
	* tests/check/gnl/seek.c:
	* tests/check/gnl/simple.c:
	  tests: sanitization.
	  + Create a no_install libtestutils.
	  + Remove code from common.h to put it in common.c
	  + Abstract away bus polling from test_simplest # TODO use it as much as possible.
	  + Fix various little errors spotted thanks to new flags.

2013-05-25 03:05:40 +0200  Mathieu Duponchelle <mathieu.duponchelle@epitech.eu>

	* gnl/gnlcomposition.c:
	  gnlcomposition: When removing a ghostpad, remove the probe_handlers associated to its target.

2013-05-25 03:43:20 +0200  Mathieu Duponchelle <mathieu.duponchelle@epitech.eu>

	* gnl/gnlcomposition.c:
	* gnl/gnlcomposition.h:
	  gnlcomposition:  replace eos_main_thread with update_pipeline_func.
	  + This function is called in a thread of its own.

2013-05-24 16:23:26 +0200  Mathieu Duponchelle <mathieu.duponchelle@epitech.eu>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Forward EOS from the streaming thread when appropriate.

2013-04-26 18:14:36 +0200  Nicolas Dufresne <nicolas.dufresne@collabora.com>

	* .gitignore:
	  Cleanup and fix gitignore

2012-09-11 18:35:17 -0400  Nicolas Dufresne <nicolas.dufresne@collabora.com>

	* gnl/gnlghostpad.c:
	* gnl/gnlghostpad.h:
	* gnl/gnloperation.c:
	* gnl/gnlsource.c:
	  ghostpad: Remove unsued parameter flush_hack
	  As a result, remove unused gnl_object_ghost_pad_full.

2013-01-25 10:35:22 -0500  Nicolas Dufresne <nicolas.dufresne@collabora.com>

	* gnl/gnlghostpad.c:
	  ghostpad: Remove uneeded set_caps()
	  Linking the element should automatically resend all sticky events.

2013-01-09 11:54:36 -0500  Nicolas Dufresne <nicolas.dufresne@collabora.com>

	* gnl/gnlghostpad.c:
	  ghostpad: Correctly handle pad creation failure
	  We where trying to activate the pad even if creating the ghostpad failed.
	  Instead, warn if that fails, and return NULL as expected.

2012-09-12 12:43:07 -0400  Nicolas Dufresne <nicolas.dufresne@collabora.com>

	* gnl/gnlsource.c:
	  source: Split change_state into prepare/cleanup

2012-09-12 12:37:04 -0400  Nicolas Dufresne <nicolas.dufresne@collabora.com>

	* gnl/gnlobject.c:
	  object: Fix function declaration coding style

2012-09-11 19:28:55 -0400  Nicolas Dufresne <nicolas.dufresne@collabora.com>

	* gnl/gnlobject.c:
	  doc: Add missing description

2012-09-11 19:28:42 -0400  Nicolas Dufresne <nicolas.dufresne@collabora.com>

	* gnl/gnlcomposition.c:
	* gnl/gnloperation.c:
	* gnl/gnlsource.c:
	* gnl/gnlurisource.c:
	  doc: Remove duplicate short description
	  nowadays the plugin description is used.

2012-09-11 19:09:30 -0400  Nicolas Dufresne <nicolas.dufresne@collabora.com>

	* docs/libs/gnonlin-sections.txt:
	* docs/libs/gnonlin.args:
	* docs/libs/gnonlin.hierarchy:
	* docs/libs/gnonlin.interfaces:
	* docs/random/design:
	  Drop remaining references to GnlFileSource

2013-05-23 21:09:58 -0400  Thibault Saunier <thibault.saunier@collabora.com>

	* gnl/gnlcomposition.c:
	  Revert "composition: Foward eos from the streaming thread when appropriate"
	  This reverts commit 9db8b0211bf64137ff3215b78172fe76de1994a1.
	  This should be implemented properly using our knowledge of the
	  composition's content

2013-05-23 20:35:58 -0400  Thibault Saunier <thibault.saunier@collabora.com>

	* gnl/gnlcomposition.c:
	  composition: Foward eos from the streaming thread when appropriate

2013-05-19 12:06:40 -0400  Thibault Saunier <thibault.saunier@collabora.com>

	* tests/check/gnl/common.h:
	  tests: Use spaces instead of tabs

2013-05-16 00:16:18 -0400  Thibault Saunier <thibault.saunier@collabora.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Only send stream-start once and for each source start
	  We concider the output of a gnlcomposition as 1 coherente stream.

2013-05-05 11:24:45 +0100  Thibault Saunier <thibault.saunier@collabora.com>

	* gnl/gnlcomposition.c:
	* gnl/gnlobject.c:
	  Remove useless GLib version checks

2013-04-12 18:16:40 -0300  Thibault Saunier <thibault.saunier@collabora.com>

	* tests/check/gnl/gnlcomposition.c:
	  tests: Add a simple test with adder

2013-05-15 10:54:24 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 5edcd85 to 098c0d7

2013-04-22 23:55:18 +0100  Tim-Philipp Müller <tim@centricular.net>

	* common:
	  Automatic update of common submodule
	  From 3cb3d3c to 5edcd85

2012-10-24 12:17:28 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* configure.ac:
	* gnl/Makefile.am:
	  gst: Add better support for static plugins

2013-04-14 17:57:45 +0100  Tim-Philipp Müller <tim@centricular.net>

	* common:
	  Automatic update of common submodule
	  From aed87ae to 3cb3d3c

2013-04-09 21:02:21 +0200  Stefan Sauer <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From 04c7a1e to aed87ae

2013-03-28 19:07:30 +0100  Edward Hervey <edward@collabora.com>

	* gnl/gnlcomposition.c:
	* tests/check/gnl/common.h:
	* tests/check/gnl/complex.c:
	* tests/check/gnl/gnloperation.c:
	* tests/check/gnl/seek.c:
	* tests/check/gnl/simple.c:
	  composition: Ensure segment base time is correct
	  We update it based on accumulated segment time.
	  Tests are also updated to check for valid base/time/duration

2013-03-28 17:26:52 +0000  Nicolas Dufresne <nicolas.dufresne@collabora.com>

	* gnl/gnlcomposition.c:
	  gnlcomposion: When seeking flush downstream before unlinking
	  The 'update' parameter in seek_handling is used to know if flush most be
	  performed before unlinking or linking new objects. It accidently set to
	  TRUE d196cd3cdc850f2355bb16518e22ccfda1170078.

2013-03-28 16:26:25 +0000  Nicolas Dufresne <nicolas.dufresne@collabora.com>

	* gnl/gnlcomposition.c:
	  gnlcomposion: objects lock must be taken to call _set_target()
	  gnl_composition_ghost_pad_set_target() require the objects_lock to be
	  taken. Aslo improve protection around user_seek_flush.

2013-03-07 00:03:43 +0000  Tim-Philipp Müller <tim@centricular.net>

	* common:
	  Automatic update of common submodule
	  From 2de221c to 04c7a1e

2013-01-30 15:12:55 +0000  Luis de Bethencourt <luis@debethencourt.com>

	* configure.ac:
	  configure: update to 1.0 dependency

2013-01-28 20:44:59 +0100  Stefan Sauer <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From a942293 to 2de221c

2013-01-16 12:30:11 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* docs/libs/Makefile.am:
	* tests/check/Makefile.am:
	  tests, docs: use GST_*_1_0 environment variables everywhere
	  The _1_0 suffixed environment variables override the
	  non-suffixed ones, so if we're in an environment that
	  sets the _1_0 suffixed ones, such as jhbuild, we need
	  to set those to make sure ours actually always get
	  used.

2013-01-15 15:08:44 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From a72faea to a942293

2012-12-30 23:19:05 +0000  Kerrick Staley <bugs@kerrickstaley.com>

	* configure.ac:
	  configure: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
	  AM_CONFIG_HEADER has been removed in the just-released automake 1.13:
	  https://lists.gnu.org/archive/html/automake/2012-12/msg00038.html
	  https://bugzilla.gnome.org/show_bug.cgi?id=690881

2012-11-28 15:59:43 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Add support for reverse playback
	  Conflicts:
	  gnl/gnlcomposition.c

2012-11-28 15:49:37 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Make sure to pass flushes downstream if flushing seeks were received
	  Conflicts:
	  gnl/gnlcomposition.c

2012-11-19 11:30:01 +0000  Tim-Philipp Müller <tim@centricular.net>

	* common:
	  Automatic update of common submodule
	  From 6bb6951 to a72faea

2012-11-07 12:30:51 +0100  Edward Hervey <edward@collabora.com>

	* tests/check/gnl/common.h:
	  check: Detect stray segments better

2012-11-04 00:13:12 +0000  Tim-Philipp Müller <tim@centricular.net>

	* COPYING:
	* COPYING.LIB:
	* LICENSE:
	* gnl/gnl.c:
	* gnl/gnl.h:
	* gnl/gnlcomposition.c:
	* gnl/gnlcomposition.h:
	* gnl/gnlghostpad.c:
	* gnl/gnlghostpad.h:
	* gnl/gnlobject.c:
	* gnl/gnlobject.h:
	* gnl/gnloperation.c:
	* gnl/gnloperation.h:
	* gnl/gnlsource.c:
	* gnl/gnlsource.h:
	* gnl/gnltypes.h:
	* gnl/gnlurisource.c:
	* gnl/gnlurisource.h:
	* tests/check/gnl/gnlcomposition.c:
	  Fix FSF address

2012-11-03 18:16:05 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/gnl/seek.c:
	  check: Re-enable more tests
	  Event though they don't succeed due to some issues in videomixer
	  segment handling (or lack thereof).

2012-11-03 18:15:20 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/gnl/gnlcomposition.c:
	  check: Fix usage of probe
	  We only care about downstream data, and we only need to be called once

2012-11-03 18:13:32 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnlghostpad.c:
	* tests/check/gnl/common.h:
	  misc: Add more/better debugging

2012-11-03 18:09:39 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnloperation.c:
	  gnloperation: Only release sink pads that need to be

2012-11-03 18:08:37 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnlghostpad.c:
	  gnlghostpad: Control internal pad straight away
	  The behaviour changed in 1.0, the internal (proxy) pad is always present
	  for a ghostpad. We therefore need to control straight away to avoid
	  races between the mode it is linked with the target and the moment we set
	  custom pad functions.

2012-11-03 18:03:58 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnlcomposition.c:
	  composition: Only care about source pads that go away
	  sink pads are handled by operations

2012-09-25 14:22:54 +0200  Edward Hervey <edward@collabora.com>

	* gnl/gnlcomposition.c:
	  composition: Ensure seeks always have flush/accurate
	  Otherwise we will never be able to unblock upstream elements

2012-09-25 14:21:55 +0200  Edward Hervey <edward@collabora.com>

	* gnl/gnlghostpad.c:
	  events: Don't leak segments and carry-over seqnums
	  Even though we transform events, we carry-over the seqnum

2012-09-25 14:21:12 +0200  Edward Hervey <edward@collabora.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Fix leak

2012-10-17 17:51:49 +0100  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* gnl/gnlcomposition.c:
	* gnl/gnloperation.c:
	* gnl/gnlsource.c:
	* gnl/gnlurisource.c:
	  gnl: use gst_element_class_set_static_metadata()

2012-10-06 15:01:28 +0100  Tim-Philipp Müller <tim@centricular.net>

	* common:
	  Automatic update of common submodule
	  From 6c0b52c to 6bb6951

2012-09-22 16:10:51 +0100  Tim-Philipp Müller <tim@centricular.net>

	* common:
	  Automatic update of common submodule
	  From 4f962f7 to 6c0b52c

2012-09-03 13:05:34 +0200  Edward Hervey <edward@collabora.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Update for API change

2012-08-22 13:32:51 +0200  Stefan Sauer <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From 668acee to 4f962f7

2012-08-05 16:43:01 +0100  Tim-Philipp Müller <tim@centricular.net>

	* common:
	  Automatic update of common submodule
	  From 94ccf4c to 668acee

2012-07-23 08:47:43 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 98e386f to 94ccf4c

2012-07-05 13:24:41 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Implement segment-done event

2012-06-11 10:46:17 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* configure.ac:
	  configure: Remove -Wcast-align
	  See https://bugzilla.gnome.org/show_bug.cgi?id=615698

2012-06-08 15:06:46 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 03a0e57 to 98e386f

2012-06-06 18:20:27 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 1fab359 to 03a0e57

2012-06-01 10:30:37 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From f1b5a96 to 1fab359

2012-05-31 13:10:50 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 92b7266 to f1b5a96

2012-05-30 12:48:11 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From ec1c4a8 to 92b7266

2012-05-30 11:26:42 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 3429ba6 to ec1c4a8

2012-05-13 15:58:20 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From dc70203 to 3429ba6

2012-04-17 17:59:41 +0400  Руслан Ижбулатов <lrn1986@gmail.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: fix printf format in debug message
	  https://bugzilla.gnome.org/show_bug.cgi?id=675276

2012-04-24 15:38:44 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Use correct enum type

2012-04-16 09:11:12 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 6db25be to dc70203

2012-04-13 13:54:59 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* autogen.sh:
	* configure.ac:
	  configure: Modernize autotools setup a bit
	  Also we now only create tar.bz2 and tar.xz tarballs.

2012-04-13 13:39:02 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 464fe15 to 6db25be

2012-04-05 18:45:02 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 7fda524 to 464fe15

2012-04-05 17:40:34 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* gnl/gnl.c:
	  gst: Update for GST_PLUGIN_DEFINE() API changes

2012-04-04 14:52:13 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* configure.ac:
	* docs/libs/gnonlin-docs.sgml:
	* docs/version.entities.in:
	* gnl/Makefile.am:
	* gnonlin.spec.in:
	  gnl: Update versioning

2012-03-26 12:40:13 +0200  Wim Taymans <wim.taymans@collabora.co.uk>

	  Replace master with 0.11

2012-03-13 19:49:36 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	  Merge remote-tracking branch 'origin/master' into 0.11
	  Conflicts:
	  configure.ac
	  gnl/gnlfilesource.c
	  gnl/gnlsource.c
	  tests/check/gnl/common.h

2012-03-13 19:32:08 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* configure.ac:
	* gnl/.gitignore:
	* gnl/Makefile.am:
	* gnl/gnloperation.c:
	  Remove gstmarshal.[ch] completely and use the generic marshaller

2012-03-06 15:33:49 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* gnl/gnlobject.h:
	  gnl: Fix 'signed shift result (0x20000000000) requires 43 bits to represent, but 'int' only has 32 bits' compiler warning
	  Seems we don't have that many flags left...

2012-01-25 18:13:35 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/gnl/gnlcomposition.c:
	* tests/check/gnl/gnloperation.c:
	* tests/check/gnl/seek.c:
	  tests: don't use deprecated API

2012-01-25 18:13:15 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* configure.ac:
	* gnl/gnlcomposition.c:
	* gnl/gnlsource.c:
	  gnl: Don't use deprecated GMutex/GThread API
	  And depend on same glib version as 0.11 core

2012-01-25 14:12:03 +0100  Thomas Vander Stichele <thomas (at) apestaart (dot) org>

	* common:
	  Automatic update of common submodule
	  From c463bc0 to 7fda524

2012-01-25 11:40:36 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 2a59016 to c463bc0

2012-01-18 16:48:22 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 0807187 to 2a59016

2012-01-13 12:32:29 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* tests/check/gnl/common.h:
	  tests: don't redefine fail_unless_equals_int64()
	  Fixes compiler warnings with recent GStreamer versions.

2012-01-13 12:19:31 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* gnl/gnlfilesource.c:
	  gnlfilesource: unescape URIs when converting an URI into a filename
	  URIs may contain escapes, which need to be unescaped when creating
	  a filename (even if we pass an URI that's unescaped, we may get back
	  an escaped one, can't really make any assumptions).

2012-01-13 12:18:14 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* configure.ac:
	* gnl/gnlfilesource.c:
	  gnlfilesource: use gst_filename_to_uri() to create a proper file URI
	  This will create a correct URI even for relative paths, which are
	  allowed for "location" properties.
	  Bump GStreamer core/base requirement to 0.10.33 for that API.

2012-01-04 19:55:27 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 0546e58 to 0807187

2011-12-30 14:16:41 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnlcomposition.c:
	* gnl/gnlghostpad.c:
	* gnl/gnlsource.c:
	* tests/check/gnl/common.h:
	* tests/check/gnl/gnlcomposition.c:
	  More updates for probe changes

2011-11-24 00:38:21 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* gnl/gnlcomposition.c:
	* gnl/gnlghostpad.c:
	* gnl/gnlsource.c:
	* tests/check/gnl/common.h:
	* tests/check/gnl/complex.c:
	* tests/check/gnl/gnlcomposition.c:
	* tests/check/gnl/gnloperation.c:
	* tests/check/gnl/gnlsource.c:
	* tests/check/gnl/seek.c:
	* tests/check/gnl/simple.c:
	  gnl, tests: update for pad probe API changes
	  But unit tests time out after pad gets blocked,
	  so still something missing somewhere.

2011-11-01 00:49:00 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* gnl/gnlcomposition.c:
	* gnl/gnlsource.c:
	* tests/check/gnl/common.h:
	* tests/check/gnl/complex.c:
	* tests/check/gnl/gnlcomposition.c:
	* tests/check/gnl/gnloperation.c:
	* tests/check/gnl/gnlsource.c:
	* tests/check/gnl/seek.c:
	* tests/check/gnl/simple.c:
	  Update for pad API changes
	  GstProbeType, GstProbeReturn and GstActivateMode -> GstPad*

2011-10-06 10:50:12 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnlsource.c:
	  gnlsource: Don't use _accept_caps to figure out compatible pads
	  It isn't reliable due to issues with gst_caps_is_subset.
	  Instead we just check if a pad caps intersect with the target caps
	  Ported from 0.11 (471611). Fixes bug #662312.
	  Conflicts:
	  gnl/gnlsource.c

2011-10-10 17:15:30 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Set ghostpad *after* sending seek event
	  Avoids ending up with stray EOS events being copied over.

2011-10-10 17:14:21 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/gnl/seek.c:
	  check: Use a probe to detect events
	  ... and not a pad block

2011-10-10 13:18:43 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnlghostpad.c:
	  gnlghostpad: Make debug message more informative

2011-10-10 13:18:32 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnloperation.c:
	  gnloperation: Fix iterator/GValue usage

2011-10-10 13:18:01 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnlcomposition.c:
	* gnl/gnlghostpad.c:
	* gnl/gnlghostpad.h:
	  gnlcomposition: Refactor probe handling

2011-10-10 13:15:53 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnlcomposition.c:
	* gnl/gnlobject.c:
	* gnl/gnloperation.c:
	* gnl/gnlsource.c:
	  gnl: Code Cleanup

2011-10-06 10:50:12 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnlsource.c:
	  gnlsource: Don't use _accept_caps to figure out compatible pads
	  It isn't reliable due to issues with gst_caps_is_subset.
	  Instead we just check if a pad caps intersect with the target caps

2011-10-06 10:49:15 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnlsource.c:
	  gnlsource: Don't remove probes that don't exist

2011-10-06 10:46:46 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnlsource.c:
	  gnlsource: Ref the proper pad
	  And not the pointer to the pad

2011-10-05 11:02:44 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	  Merge remote-tracking branch 'origin/master' into 0.11

2011-10-05 11:00:25 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/Makefile.am:
	* tests/check/gnl/common.h:
	* tests/check/gnl/complex.c:
	* tests/check/gnl/gnlcomposition.c:
	* tests/check/gnl/gnloperation.c:
	* tests/check/gnl/gnlsource.c:
	* tests/check/gnl/seek.c:
	* tests/check/gnl/simple.c:
	  tests: Update to new 0.11 API
	  * Use GST_UNSTABLE_API
	  * Remove unused variables
	  * Properly disable tests that require videomixer if not present
	  * Clarify failures with ERROR messages
	  * Use new probe API
	  Compiles ... but most tests fail due to caps issues (which is also present
	  in 0.10)

2011-10-05 10:57:24 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnlcomposition.c:
	* gnl/gnlghostpad.c:
	* gnl/gnlghostpad.h:
	* gnl/gnloperation.c:
	* gnl/gnlsource.c:
	  gnl: More porting to 0.11 API
	  Now properly compiles
	  * Switch to new probe API for pad probes and pad blocking
	  * Switch to new GstIterator API
	  * Switch to new GstSegment API
	  * Switch to new GstEvent API (for SEGMENT and SEEK events)

2011-10-05 10:56:02 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* common:
	  common: Switch to head of 0.11 branch

2011-09-07 15:56:12 +0200  Stefan Sauer <ensonic@users.sf.net>

	* docs/libs/Makefile.am:
	  docs: cleanup makefiles
	  Remove commented out parts that we don't need. Remove "the wingo addition" - no
	  so useful after all. Narrow down file-globs for plugin docs.

2011-09-06 21:53:17 +0200  Stefan Sauer <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From a39eb83 to 11f0cd5

2011-09-06 16:06:47 +0200  Stefan Sauer <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From 605cd9a to a39eb83

2011-08-05 13:12:48 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnlcomposition.c:
	* gnl/gnlobject.c:
	* gnl/gnloperation.c:
	* gnl/gnlsource.c:
	* gnl/gnlurisource.c:
	  gnl: Remove GST_BOILERPLATE usage
	  doesn't compile yet

2011-08-05 12:52:14 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/gnonlin-docs.sgml:
	* gnl/Makefile.am:
	* gnl/gnl.c:
	* gnl/gnl.h:
	* gnl/gnlfilesource.c:
	* gnl/gnlfilesource.h:
	* gnl/gnltypes.h:
	* gnl/gnlurisource.h:
	  gnlfilesource: is dead, long live gnlurisource

2011-08-05 12:42:00 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* common:
	* configure.ac:
	* gnl/Makefile.am:
	  0.11 branch is open \o/

2011-06-23 11:29:50 -0700  David Schleef <ds@schleef.org>

	* common:
	  Automatic update of common submodule
	  From 69b981f to 605cd9a

2011-05-19 23:00:01 +0300  Stefan Kost <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From 9e5bbd5 to 69b981f

2011-05-18 16:13:29 +0300  Stefan Kost <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From fd35073 to 9e5bbd5

2011-05-18 12:26:54 +0300  Stefan Kost <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From 46dfcea to fd35073

2011-04-24 14:06:15 +0100  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From c3cafe1 to 46dfcea

2011-01-27 17:32:28 +0100  Alessandro Decina <alessandro.d@gmail.com>

	* Android.mk:
	* gnl/Makefile.am:
	  android: make it ready for androgenizer
	  Remove the android/ top dir
	  Fix the Makefile.am to be androgenized
	  To build gstreamer for android we are now using androgenizer which generates the needed Android.mk files.
	  Androgenizer can be found here: http://git.collabora.co.uk/?p=user/derek/androgenizer.git

2011-04-04 15:59:13 +0300  Stefan Kost <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From 1ccbe09 to c3cafe1

2011-03-25 22:36:45 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 193b717 to 1ccbe09

2011-03-25 14:57:43 +0200  Stefan Kost <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From b77e2bf to 193b717

2011-03-25 09:34:19 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From d8814b6 to b77e2bf

2011-03-25 09:10:40 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 6aaa286 to d8814b6

2011-03-24 18:51:06 +0200  Stefan Kost <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From 6aec6b9 to 6aaa286

2011-03-18 19:34:57 +0100  Luis de Bethencourt <luis@debethencourt.com>

	* autogen.sh:
	  autogen: wingo signed comment

2011-02-28 20:26:33 +0100  Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>

	* configure.ac:
	  configure.ac: export plugin description more platform independent
	  Fixes #642504.

2011-02-28 18:34:36 +0100  Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 1de7f6a to 6aec6b9

2011-02-24 12:50:01 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnloperation.c:
	  gnloperation: Handle the cases where the sink pads disappear

2011-01-31 15:40:19 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnloperation.c:
	  gnloperation: Synchronize all pads
	  We were previously only removing one pad instead of synchronizing
	  back down to the number of requested pads.

2011-01-31 15:39:52 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnloperation.c:
	  gnloperation: Cleanup pads when going from PAUSED to READY

2011-02-14 12:55:36 +0200  Stefan Kost <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From f94d739 to 1de7f6a

2011-02-10 19:11:57 +0100  Edward Hervey <bilboed@bilboed.com>

	* tests/check/gnl/gnlcomposition.c:
	  tests: Make gnlcomposition check stop faster

2011-02-10 18:51:41 +0100  Edward Hervey <bilboed@bilboed.com>

	* tests/check/gnl/gnloperation.c:
	* tests/check/gnl/seek.c:
	* tests/check/gnl/simple.c:
	  tests: Add doc and refine seek check

2011-02-10 18:51:08 +0100  Edward Hervey <bilboed@bilboed.com>

	* tests/check/gnl/common.h:
	  tests: Small cleanup

2011-02-08 13:45:03 +0100  Edward Hervey <bilboed@bilboed.com>

	* tests/check/gnl/seek.c:
	  tests: Added more seeking tests involving operations

2011-02-08 12:59:10 +0100  Edward Hervey <bilboed@bilboed.com>

	* tests/check/gnl/gnloperation.c:
	  check: refactor 'gnloperation' tests

2011-02-08 09:12:35 +0100  Edward Hervey <bilboed@bilboed.com>

	* tests/check/gnl/common.h:
	* tests/check/gnl/complex.c:
	  tests: refactor 'complex' test

2011-02-02 18:10:52 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/Makefile.am:
	* tests/check/gnl/seek.c:
	  tests: First go at testing seeking
	  Still needs more checks though

2011-01-31 16:05:34 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/gnl/gnlcomposition.c:
	* tests/check/gnl/gnloperation.c:
	  check: More debugging and state checking

2011-01-31 16:05:15 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/gnl/common.h:
	  tests: Add a method for checking element states

2011-01-29 12:52:30 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/gnl/complex.c:
	* tests/check/gnl/gnloperation.c:
	  check: Add some comments

2011-01-29 12:52:09 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/gnl/simple.c:
	  check: Add a simple variant

2011-01-24 13:34:38 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnlcomposition.c:
	  gnlcomposition: clarify update_pipeline internal comments

2011-01-21 15:35:59 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/random/part-gnlcomposition.txt:
	  docs: Explanations about scheduling in gnlcomposition

2011-01-20 13:31:51 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/random/design:
	  docs: Re-indent design doc to 70 column and clarify

2011-01-25 11:17:47 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* configure.ac:
	  configure.ac: And back to development we go

=== release 0.10.17 ===

2011-01-20 20:56:23 +0100  Edward Hervey <bilboed@bilboed.com>

	* ChangeLog:
	* NEWS:
	* RELEASE:
	* configure.ac:
	  Release 0.10.17

2011-01-13 11:29:52 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* configure.ac:
	  configure.ac: 0.10.16.2 pre-release

2011-01-11 15:52:11 +0200  Stefan Kost <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From e572c87 to f94d739

2011-01-10 16:38:45 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From ccbaa85 to e572c87

2011-01-10 14:55:50 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 46445ad to ccbaa85

2011-01-05 17:19:57 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/gnl/gnlcomposition.c:
	  tests: Don't use huge durations in tests

2011-01-05 17:18:38 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/gnl/complex.c:
	* tests/check/gnl/gnlcomposition.c:
	* tests/check/gnl/gnloperation.c:
	* tests/check/gnl/gnlsource.c:
	* tests/check/gnl/simple.c:
	  tests: Poll more often.
	  Should lower the risks of timing out

2010-12-20 17:48:15 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 169462a to 46445ad

2010-12-19 11:10:29 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* tests/check/gnl/gnlcomposition.c:
	  gnlcomposition: Fix memory leak in the unit test

2010-12-17 12:28:14 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnlcomposition.c:
	  GnlComposition: Use g_object_notify_by_pspec if available

2010-12-17 12:12:15 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* gnl/gnlobject.c:
	  GnlObject: Use g_object_notify_by_pspec if available

2010-12-17 12:12:01 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* configure.ac:
	  configure.ac: Bump GLib requirement to 2.22
	  In sync with gstreamer core

2010-12-15 14:57:18 +0200  Stefan Kost <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From 20742ae to 169462a

2010-12-14 00:56:53 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* tests/check/gnl/complex.c:
	* tests/check/gnl/gnlcomposition.c:
	* tests/check/gnl/gnloperation.c:
	* tests/check/gnl/gnlsource.c:
	* tests/check/gnl/simple.c:
	  tests: give test suites different names
	  So the output tells us which test is actually running. Also use
	  GST_CHECK_MAIN() while we're at it.

2010-12-13 16:24:51 +0200  Stefan Kost <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From 011bcc8 to 20742ae

2010-10-27 13:18:18 +0100  Jan Schmidt <thaytan@noraisin.net>

	* common:
	  Automatic update of common submodule
	  From 7bbd708 to 011bcc8

2010-10-14 12:32:42 -0700  David Schleef <ds@schleef.org>

	* common:
	  Automatic update of common submodule
	  From 5a668bf to 7bbd708

2010-10-12 15:25:10 +0100  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* gnl/gnlcomposition.c:
	  composition: fix debugging message printf format

2010-10-08 12:45:12 -0700  David Schleef <ds@schleef.org>

	* common:
	  Automatic update of common submodule
	  From c4a8adc to 5a668bf

2010-10-08 12:57:01 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 5e3c9bf to c4a8adc

2010-09-21 18:35:06 +0200  Edward Hervey <bilboed@bilboed.com>

	* common:
	  Automatic update of common submodule
	  From 080e025 to 5e3c9bf

2010-09-08 10:14:40 +0100  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* docs/libs/.gitignore:
	* docs/libs/Makefile.am:
	  docs: put inspect registry into docs/libs next to the other inspect info
	  Instead of putting the docs registry into docs/plugins.

2010-09-08 00:44:45 +0100  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* configure.ac:
	  configure: bump core/base requirement to released version
	  Bump core requirement to released version. People should always
	  use the same -base as core, so bump -base requirement to match
	  core requirement. Also bump GLib requirement to GLib requirement
	  of core.

2010-09-08 00:40:41 +0100  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* configure.ac:
	  configure: another small clean-up
	  AG_GST_CHECK_GST already sets GST_TOOLS_DIR and GST_PLUGINS_DIR,
	  no need to do it a second time.

2010-09-08 00:35:52 +0100  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* configure.ac:
	  configure: small clean-up
	  AG_GST_CHECK_GST_PLUGINS_BASE already sets GSTPB_PLUGINS_DIR
	  and prints it to the output, no need to do that twice.

2010-09-08 00:33:20 +0100  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* common:
	* configure.ac:
	* tests/check/Makefile.am:
	  tests: find uninstalled -good plugins and use them for tests
	  Enables some more tests / code paths in an uninstalled setup. Also
	  remove duplicate GST_PLUGIN_DIRS.
	  https://bugzilla.gnome.org/show_bug.cgi?id=628943

2010-09-08 00:25:42 +0100  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* tests/check/gnl/gnlcomposition.c:
	  tests: skip gnlcomposition's test_no_more_pads_race test if videomixer is not available
	  Fixes 'make check' in uninstalled setup where it currently can't
	  find the -good plugins.
	  https://bugzilla.gnome.org/show_bug.cgi?id=628943

2010-09-08 09:55:22 +0100  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* configure.ac:
	* docs/libs/gnonlin.hierarchy:
	* docs/libs/inspect/plugin-gnonlin.xml:
	  Back to development

2010-09-07 11:43:48 +0100  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From c2e10bf to aa0d1d0

=== release 0.10.16 ===

2010-09-06 17:14:09 +0200  Edward Hervey <bilboed@bilboed.com>

	* ChangeLog:
	* NEWS:
	* RELEASE:
	* configure.ac:
	  Release 0.10.16

2010-09-05 18:59:10 -0700  David Schleef <ds@schleef.org>

	* common:
	  Automatic update of common submodule
	  From d3d9acf to c2e10bf

2010-09-05 12:21:26 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From ca1c867 to d3d9acf

2010-09-03 11:05:23 +0200  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	  0.10.15.2 pre-release

2010-09-03 11:04:46 +0200  Edward Hervey <bilboed@bilboed.com>

	* common:
	  Update to latest common

2010-09-02 16:10:43 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Use proper macro to detect sources
	  Allows us to use composition as sources

2010-08-17 14:10:38 +0200  Alessandro Decina <alessandro.decina@collabora.co.uk>

	* gnl/gnlcomposition.c:
	* tests/check/gnl/gnlcomposition.c:
	  gnlcomposition: fix a race. Fixes #626733.
	  Fix a race between no_more_pads_object_cb and compare_relink_single_node.

2010-08-12 15:53:42 +0200  Alessandro Decina <alessandro.decina@collabora.co.uk>

	* tests/check/gnl/gnlcomposition.c:
	  tests: add a test case for a race in gnlcomposition. See #626733.
	  Add a test for a race between no_more_objects_cb and compare_relink_single_node
	  in gnlcomposition.

2010-08-19 15:10:25 +0200  Alessandro Decina <alessandro.decina@collabora.co.uk>

	* gnl/gnlcomposition.c:
	* tests/check/gnl/gnlcomposition.c:
	  gnlcomposition: fail early in remove_object when removing an invalid object.
	  Make gnl_composition_remove_object return immediately FALSE when removing an
	  object not contained in the composition.

2010-08-19 15:00:38 +0200  Alessandro Decina <alessandro.decina@collabora.co.uk>

	* gnl/gnlcomposition.c:
	  gnlcomposition: fix thinko.
	  In gnl_composition_remove_object initialize the return value to FALSE and not to
	  GST_STATE_CHANGE_FAILURE.

2010-08-20 10:06:33 +0200  Edward Hervey <bilboed@bilboed.com>

	* tests/check/gnl/gnlcomposition.c:
	  tests: Be more flexible in tests
	  When removing an object from a composition, there might still be some
	  internal refcounting still present since it's not in NULL.
	  Also, use ASYNC_DONE message to detect for pre-roll

2010-08-13 17:25:15 +0300  Stefan Kost <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From 3e8db1d to ec60217

2010-08-10 10:59:55 +0100  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From bd2054b to 3e8db1d

2010-08-05 13:58:11 +0300  Stefan Kost <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From a519571 to bd2054b

2010-08-04 19:32:09 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* configure.ac:
	  configure: Check if the compiler supports ISO C89 or C99 and which parameters are required
	  This first checks what is required for ISO C99 support and sets the relevant
	  compiler parameters and if no C99 compiler is found, it checks for a
	  C89 compiler. This enables us to check for and use C89/C99 functions
	  that gcc hides from us without the correct compiler parameters.

2010-08-03 10:51:34 +0200  Edward Hervey <bilboed@bilboed.com>

	* docs/libs/gnonlin.args:
	* docs/libs/inspect/plugin-gnonlin.xml:
	  docs: update

2010-07-28 18:13:23 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Fix dropping of QOS events for previous segments
	  If the different between the internal and external segment is larger
	  than the timestamp plus diff, the QOS event was for a previous
	  segment and the QOS event would become invalid, i.e. it would be
	  for a negative timestamp.

2010-07-27 17:30:42 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Don't discard QoS event for current segment.
	  curdiff will be zero in the first segment

2010-07-27 16:33:29 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlsource.c:
	  gnlsource: Remove a useless check for GstBin property
	  We depend on a version of GStreamer that will contain it

2010-07-23 15:50:49 +0200  Edward Hervey <bilboed@bilboed.com>

	* tests/check/gnl/complex.c:
	* tests/check/gnl/gnlcomposition.c:
	* tests/check/gnl/gnloperation.c:
	* tests/check/gnl/gnlsource.c:
	* tests/check/gnl/simple.c:
	  tests: Don't use the expensive videotestsrc patterns
	  We're not viewing them anyway, so might as well take the cheapest
	  to use.

2010-07-23 15:36:04 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Use GSlice instead of malloc/free

2010-07-23 15:35:32 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlghostpad.c:
	  gnlghostpad: Use GSlice instead of malloc/free

2010-07-23 15:34:51 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlsource.c:
	  gnlsource: Use G_TYPE private instances
	  This ensures the private data is 'closer' to the public structures

2010-07-23 15:33:49 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Use G_TYPE private instances
	  This ensures the private data is 'closer' to the public structures

2010-07-23 14:48:32 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Use GNL_OBJECT_* macros wherever possible

2010-07-23 14:46:16 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlobject.h:
	  gnlobject: New macros for less ugly code

2010-07-20 21:56:28 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlsource.c:
	  gnlsource: Store static pad
	  Avoids having to check twice for available compatible pad

2010-07-12 19:14:24 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Use fast pad linking some more

2010-06-28 17:31:54 +0100  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* autogen.sh:
	* configure.ac:
	  Bump automake requirement to 1.10 and autoconf to 2.60.

2010-06-27 13:44:55 +0200  Edward Hervey <bilboed@bilboed.com>

	* tests/check/gnl/common.h:
	  check: Use fast pad linking methods

2010-06-27 13:37:31 +0200  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	* gnl/gnlcomposition.c:
	  gnlcomposition: Use fast pad linking
	  Requires latest core

2010-06-24 15:10:17 +0300  Stefan Kost <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From 35617c2 to a519571

2010-06-15 16:51:00 +0200  Edward Hervey <bilboed@bilboed.com>

	* common:
	  Automatic update of common submodule
	  From 9339ccc to 35617c2

2010-06-15 16:55:27 +0300  Stefan Kost <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From 5adb1ca to 9339ccc

2010-06-15 16:36:35 +0300  Stefan Kost <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From 57c89b7 to 5adb1ca

2010-06-15 15:50:53 +0300  Stefan Kost <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From c804988 to 57c89b7

2010-06-14 13:28:15 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* configure.ac:
	  configure: Use GLIB_EXTRA_CFLAGS

2010-06-14 13:06:05 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 7a0fdf5 to c804988

2010-06-14 11:35:50 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 6da3bab to 7a0fdf5

2010-06-12 08:30:13 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 733fca9 to 6da3bab

2010-06-10 16:01:07 +0200  Edward Hervey <bilboed@bilboed.com>

	* tests/check/gnl/gnlcomposition.c:
	* tests/check/gnl/gnlsource.c:
	  tests: Fix memory leaks

2010-06-10 14:07:01 +0200  Edward Hervey <bilboed@bilboed.com>

	* docs/libs/Makefile.am:
	  docs: Fix source/header file location

2010-06-10 13:57:59 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlghostpad.c:
	  GnlGhostPad: Add debug statement

2010-06-10 13:57:43 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnloperation.c:
	  GnlOperation: Fix more leaks

2010-06-10 13:31:20 +0200  Edward Hervey <bilboed@bilboed.com>

	* tests/check/Makefile.am:
	* tests/check/common.h:
	* tests/check/complex.c:
	* tests/check/gnl/common.h:
	* tests/check/gnl/complex.c:
	* tests/check/gnl/gnlcomposition.c:
	* tests/check/gnl/gnloperation.c:
	* tests/check/gnl/gnlsource.c:
	* tests/check/gnl/simple.c:
	* tests/check/gnlcomposition.c:
	* tests/check/gnloperation.c:
	* tests/check/gnlsource.c:
	* tests/check/simple.c:
	  check: Move tests to a subdirectory

2010-06-09 12:40:35 -0700  David Schleef <ds@schleef.org>

	* common:
	  Automatic update of common submodule
	  From fad145b to 733fca9

2010-06-09 12:34:30 -0700  David Schleef <ds@schleef.org>

	* common:
	  Automatic update of common submodule
	  From 595defc to fad145b

2010-06-09 17:10:36 +0200  Edward Hervey <bilboed@bilboed.com>

	* common:
	  common: Update to current master

2010-06-09 12:58:24 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnloperation.c:
	  GnlOperation: Properly dispose of our ghostpads.
	  Plugs a leak

2010-06-01 23:49:48 -0700  David Schleef <ds@schleef.org>

	* common:
	  Automatic update of common submodule
	  From 17f89e5 to 47683c1

2010-06-01 22:55:36 -0700  David Schleef <ds@schleef.org>

	* common:
	  Automatic update of common submodule
	  From fd7ca04 to 17f89e5

2010-05-31 12:54:05 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Remove stray debugging statement

2010-05-28 10:22:11 +0100  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* .gitignore:
	* Makefile.am:
	  build: copy build files into m4/ instead of common/m4/
	  We don't want cruft in the common submodule directory.

2010-05-26 11:56:38 +0100  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 357b0db to fd7ca04

2010-05-14 18:26:28 +0100  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 4d67bd6 to 357b0db

2010-05-07 15:35:24 +0200  Edward Hervey <bilboed@bilboed.com>

	* tests/check/.gitignore:
	  tests: Ignore more files

2010-05-07 15:34:37 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlurisource.c:
	  gnlurisource: Set 'expose-all-streams' on uridecodebin to FALSE
	  We only need the stream specified in the caps

2010-04-23 14:42:29 +0100  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From fc85867 to 4d67bd6

2010-04-13 15:35:28 +0200  Edward Hervey <bilboed@bilboed.com>

	* tests/check/common.h:
	  check: Lower framerate coming out of videotestsrc.
	  This should lower the amount of time required to run the tests

2010-04-09 11:24:04 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From c1d07dd to fc85867

2010-04-01 12:08:11 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlsource.c:
	  GnlSource: Demote a WARNING to a DEBUG
	  Not having a source pad is normal, it could be dynamic

2010-03-25 18:47:37 +0100  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  GnlComposition: Set the composition caps on the contained elements
	  This is only done if the caps of the composition are no GST_CAPS_ANY.
	  This is a step in allowing easy decode-less support for editing.

2010-03-25 18:44:45 +0100  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlobject.c:
	* gnl/gnlobject.h:
	  GnlObject: expose gnl_object_set_caps method

2010-03-24 18:56:21 +0100  Edward Hervey <bilboed@bilboed.com>

	* common:
	  Automatic update of common submodule
	  From 55cd514 to c1d07dd

2010-03-24 11:49:52 +0100  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	* gnl/gnl.c:
	* gnl/gnlghostpad.c:
	* gnl/gnlghostpad.h:
	  build: Add all kinds of compiler warning flags and fix the resulting warnings

2010-03-18 23:19:46 +0100  Benjamin Otte <otte@redhat.com>

	* gnl/gnlcomposition.c:
	* gnl/gnlfilesource.c:
	* gnl/gnloperation.c:
	* gnl/gnlsource.c:
	* gnl/gnlurisource.c:
	  gst_element_class_set_details => gst_element_class_set_details_simple
	  https://bugzilla.gnome.org/show_bug.cgi?id=613283

2010-03-19 12:13:07 +0100  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlsource.c:
	  GnlSource: Handle multiple pad_blocked calls.
	  The pad blocked handler can be called by multiple threads, we
	  therefore need to make sure we only start the ghost_seek_pad handler
	  once.

2010-03-19 10:36:42 +0100  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlurisource.c:
	  GnlURISource: Set the GnlObject caps on uridecodebin.
	  This allows getting non-raw streams.

2010-03-12 14:00:42 +0100  Edward Hervey <bilboed@bilboed.com>

	* common:
	  Automatic update of common submodule
	  From e272f71 to 55cd514

2010-03-11 11:21:48 +0100  Benjamin Otte <otte@redhat.com>

	* common:
	  Automatic update of common submodule
	  From df8a7c8 to e272f71

2010-03-10 22:05:32 +0100  Benjamin Otte <otte@redhat.com>

	* configure.ac:
	  Update for recent changes to common submodule
	  This just replaces every "$ERROR_CFLAGS" usage with a usage of
	  "$WARNING_CFLAGS $ERROR_CFLAGS" to get the same functionality as
	  previously.
	  Actually using that separation will happen later.

2010-03-10 21:53:06 +0100  Benjamin Otte <otte@redhat.com>

	* common:
	  Automatic update of common submodule
	  From 9720a7d to df8a7c8

2010-03-10 20:44:52 +0100  Benjamin Otte <otte@redhat.com>

	* common:
	  Automatic update of common submodule
	  From 0b6e072 to 9720a7d

2010-03-10 16:10:50 +0100  Benjamin Otte <otte@redhat.com>

	* common:
	  Automatic update of common submodule
	  From 7cc5eb4 to 0b6e072

2010-03-10 10:26:30 +0100  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	  configure.ac: And back to development we go

2010-03-10 01:11:35 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 7aa65b5 to 7cc5eb4

2010-03-09 21:42:14 +0000  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 44ecce7 to 7aa65b5

=== release 0.10.15 ===

2010-03-09 12:37:36 +0100  Edward Hervey <bilboed@bilboed.com>

	* ChangeLog:
	* NEWS:
	* RELEASE:
	* configure.ac:
	  Release 0.10.15 "I missed the snow in Barcelona"

2010-03-07 19:23:46 +0100  Edward Hervey <bilboed@bilboed.com>

	* tests/check/simple.c:
	  tests: Adjust simple test for slight behaviour change introduced in last commit

2010-03-07 19:24:17 +0100  Edward Hervey <bilboed@bilboed.com>

	* tests/check/gnloperation.c:
	  tests: Add a new test for checking fix introduce by last commit.

2010-03-07 19:12:07 +0100  Alessandro Decina <alessandro.d@gmail.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: fix a bug figuring out the segments.
	  If we have two sources (with no default sources) laid out like this:
	  [  source1         ]
	  [   source2   ]
	  We need to configure 3 different segments and therefore build 3 different
	  stacks. One in which only source1 is active, one in which both source1 and
	  source2 are active and finally one in which only source2 is active.
	  https://bugzilla.gnome.org/show_bug.cgi?id=609792

2010-02-28 20:03:17 +0100  Alessandro Decina <alessandro.d@gmail.com>

	* gnl/gnlcomposition.c:
	  composition: call update_pipeline when an expandable source is added.

2010-02-28 20:02:32 +0100  Alessandro Decina <alessandro.d@gmail.com>

	* gnl/gnlfilesource.c:
	  Fix a compiler warning in OSX.

2010-02-26 16:41:54 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* gnl/Makefile.am:
	  build: Make some more rules silent if requested

2010-02-26 15:50:51 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* configure.ac:
	  configure: Use automake 1.11 silent rules instead of shave if available
	  This makes sure that we use something that is still maintained and
	  also brings back libtool 1.5 support.

2010-02-17 10:01:03 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* configure.ac:
	  Don't check for check, gst-check already includes it

2010-02-17 09:48:08 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* Makefile.am:
	  Include lcov.mak to allow unit test coverage report generation

2010-02-14 23:19:25 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 96dc793 to 44ecce7

2010-02-12 18:19:13 +0100  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Don't forget to carry over the modifyed stack
	  This can happen when we have several operations stacked one over each
	  other.
	  Fixes #609689

2010-02-12 11:37:24 +0100  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	  configure.ac: And back to development we go

=== release 0.10.14 ===

2010-02-11 13:55:52 +0100  Edward Hervey <bilboed@bilboed.com>

	* ChangeLog:
	* NEWS:
	* RELEASE:
	* configure.ac:
	  Releasing 0.10.14, "Slicing, Dicing and Chopping"

2010-01-30 15:20:36 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 15d47a6 to 96dc793

2010-01-25 20:35:00 +0100  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	  configure.ac: 0.10.13.3 pre-release

2010-01-20 00:55:52 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 14cec89 to 15d47a6

2010-01-12 15:34:50 +0100  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlobject.c:
	  gnlobject: Specify unit in property descriptions
	  It was documented in gtk-doc but not in the introspectable documentation

2009-12-21 19:13:41 +0100  Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 47cb23a to 14cec89

2009-12-01 15:08:54 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 87bf428 to 47cb23a

2009-12-01 12:32:43 +0100  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	  0.10.13.2 pre-release

2009-12-01 14:18:47 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From da4c75c to 87bf428

2009-11-27 18:56:58 +0100  Edward Hervey <bilboed@bilboed.com>

	* common:
	  Automatic update of common submodule
	  From 53a2485 to da4c75c

2009-11-24 15:20:12 +0100  Edward Hervey <bilboed@bilboed.com>

	* m4/Makefile.am:
	* m4/codeset.m4:
	* m4/gettext.m4:
	* m4/glibc21.m4:
	* m4/iconv.m4:
	* m4/intdiv0.m4:
	* m4/inttypes-pri.m4:
	* m4/inttypes.m4:
	* m4/inttypes_h.m4:
	* m4/isc-posix.m4:
	* m4/lcmessage.m4:
	* m4/lib-ld.m4:
	* m4/lib-link.m4:
	* m4/lib-prefix.m4:
	* m4/progtest.m4:
	* m4/stdint_h.m4:
	* m4/uintmax_t.m4:
	* m4/ulonglong.m4:
	  m4: remove unneeded disted m4
	  They will be installed by autogen.sh

2009-11-19 10:32:07 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 0702fe1 to 53a2485

2009-11-17 17:38:32 +0000  Jan Schmidt <thaytan@noraisin.net>

	* gnl/Makefile.am:
	  build: Remove  duplicate noinst_HEADERS in gnl/Makefile.am

2009-10-16 10:17:56 +0300  Stefan Kost <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From 85d1530 to 0702fe1

2009-10-14 11:08:00 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlurisource.c:
	  gnlurisource: Fix description

2009-10-14 10:42:21 +0200  Edward Hervey <bilboed@bilboed.com>

	* common:
	  Automatic update of common submodule
	  From a3e3ce4 to 85d1530

2009-10-08 11:01:49 +0100  Jan Schmidt <thaytan@noraisin.net>

	* common:
	  Automatic update of common submodule
	  From 19fa4f3 to a3e3ce4

2009-09-21 18:34:05 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlurisource.c:
	* gnl/gnlurisource.h:
	  gnlurisource: ... it works better with the files.

2009-09-21 11:50:53 +0200  Edward Hervey <bilboed@bilboed.com>

	* docs/libs/gnonlin.args:
	* docs/libs/gnonlin.signals:
	  docs: Update args/signals

2009-09-21 11:50:44 +0200  Edward Hervey <bilboed@bilboed.com>

	* docs/libs/gnonlin-docs.sgml:
	* docs/libs/gnonlin-sections.txt:
	* docs/libs/gnonlin.args:
	* docs/libs/gnonlin.hierarchy:
	* docs/libs/gnonlin.interfaces:
	* docs/libs/inspect/plugin-gnonlin.xml:
	  docs: Add gnlurisource

2009-09-21 11:49:07 +0200  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	* gnl/Makefile.am:
	* gnl/gnl.c:
	* gnl/gnl.h:
	* gnl/gnlfilesource.c:
	* gnl/gnlfilesource.h:
	* gnl/gnltypes.h:
	  New GnlURISource plugin, of which GnlFileSource subclasses. Fixes #595570

2009-09-21 11:51:27 +0200  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	  configure.ac: And back to development we go...

2009-09-10 08:18:48 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* gnl/gnlfilesource.c:
	  gnlfilesource: If we use uridecodebin get the location from there
	  This prevents assertions that result from getting the property value
	  from the internal filesrc, which is NULL if we use uridecodebin.

2009-09-07 11:51:36 +0200  Edward Hervey <bilboed@bilboed.com>

	* ChangeLog:
	* NEWS:
	* RELEASE:
	* configure.ac:
	  0.10.13 "Service of Quality"

2009-09-05 10:26:08 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 94f95e3 to 19fa4f3

2009-09-02 18:04:53 +0200  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	  0.10.12.3 pre-release

2009-09-01 18:54:19 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	* gnl/gnlghostpad.c:
	  gnlcomposition: Fix QoS handling.
	  QoS handling requires knowledge of the running time which only
	  GnlComposition is aware of. Therefore we remove it from GnlGhostPad
	  and handle it in the composition.
	  Details of the algorithm are contained as comments in gnlcomposition.c

2009-08-29 11:17:57 +0200  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	  configure.ac: 0.10.12.2 pre-release

2009-08-24 16:50:24 +0200  Alessandro Decina <alessandro.d@gmail.com>

	* gnl/gnlcomposition.c:
	* gnl/gnlghostpad.c:
	  gnlghostpad: clamp jitter to the transformed timestamp.
	  Fixes "GStreamer-CRITICAL **: gst_event_new_qos: assertion `diff
	  >= 0 || -diff <= timestamp' failed" assertions.

2009-08-24 12:08:45 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlsource.c:
	  gnlsource: Make the pad removal code non-racy.
	  Previously we were checking whether (1) there was a ghostpad and (2) whether
	  the target was the pad being removed.
	  The problem was that the following racyness can happen:
	  1. A pad gets added and controlled
	  2. The pad gets removed before having outputted any data (and therefore the
	  ghostpad isn't created).
	  3. There's no ghostpad... and therefore we don't properly reset ourselves.

2009-08-23 19:50:31 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	* gnl/gnloperation.h:
	  gnlcomposition: link operations by pad, inform them of incoming stream priorities.

2009-08-23 19:50:01 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnloperation.c:
	  GnlOperation: Fix signal signature, add public method to emit signal

2009-08-12 18:31:36 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Drop incoming events when not entirely linked. Fixes #583145

2009-08-12 18:32:19 +0200  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	  configure.ac: And back to development we go...

=== release 0.10.12 ===

2009-08-10 18:02:57 +0200  Edward Hervey <bilboed@bilboed.com>

	* ChangeLog:
	* NEWS:
	* RELEASE:
	* configure.ac:
	  releasing 0.10.12, "Lots of people on the clothesline"

2009-08-10 16:28:38 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlfilesource.c:
	* gnl/gnlfilesource.h:
	  gnlfilesource: Use uridecodebin and remove dead code.
	  Using decodebin2 directly fails because it blocks its own pads (therefore
	  making it impossible for us to block them ourselves.

2009-08-06 17:35:21 +0200  Alessandro Decina <alessandro.d@gmail.com>

	* gnl/gnlghostpad.c:
	  When ghosting a pad that has negotiated caps, set those caps to the ghost as well.

2009-08-04 17:47:34 +0200  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	  configure.ac: 0.10.11.3 pre-release

2009-07-29 20:40:25 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Only remove top-level pad if removed pad is a source pad.
	  "Wow, not all objects in the timeline are sources ?"

2009-07-29 15:58:25 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlsource.c:
	  gnlsource: Properly reset internal state when controlled pad has gone.
	  We weren't resetting pendingblock, resulting in some cases where a new pad
	  to control would appear, but would not be used because pendingblock was still TRUE.

2009-07-01 18:53:43 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnloperation.c:
	* gnl/gnloperation.h:
	  gnloperation: TEMPORARY COMMIT ! REBASE ME !
	  Added the signal, the next step is to emit it from the composition
	  which requires replacing the gst_element_link with gst_pad_link...
	  which we should have been using ages ago :)

2009-07-01 16:56:27 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/Makefile.am:
	* gnl/gnlmarshal.list:
	* gnl/gnloperation.c:
	  gnl: Adding signal marshaller

2009-07-27 20:07:21 +0200  Adam Dingle <adam@yorba.org>

	* gnl/gnlfilesource.c:
	  gnlfilesource: Really use decodebin2. Fixes #589525

2009-07-24 00:43:47 +0300  Stefan Kost <ensonic@users.sf.net>

	* common:
	  Automatic update of common submodule
	  From fedaaee to 94f95e3

2009-07-16 10:20:08 +0200  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	  0.10.11.2 pre-release

2009-07-13 12:24:46 -0400  Olivier Crête <olivier.crete@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 5845b63 to fedaaee

2009-06-26 13:44:04 +0100  Jan Schmidt <thaytan@noraisin.net>

	* common:
	  Automatic update of common submodule
	  From f810030 to 5845b63

2009-06-24 19:15:30 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Remove bogus debug statement.

2009-06-24 15:16:42 +0100  Jan Schmidt <jan.schmidt@sun.com>

	* common:
	  Automatic update of common submodule
	  From f3bb51b to f810030

2009-06-14 11:35:52 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	* gnl/gnlcomposition.h:
	* gnl/gnlfilesource.c:
	* gnl/gnlfilesource.h:
	  gnlcomposition/gnlfilesource: Don't use 'private' keyword.
	  This avoids build errors with C++ compilers.

2009-06-12 20:00:00 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnloperation.c:
	  gnloperation: Don't forget to lower the pad count when removing one.

2009-06-12 18:48:59 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: rewrite from scratch of pipeline unlinking/linking.
	  We currently weren't handling operations in general (and dynamic multi-sinkpad
	  operations in particular) in a safe fashion.
	  This rewrite makes sure that when redoing the pipeline:
	  * no streaming threads are flowing between elements when deactivating
	  * all source pads are blocked (asynchronously)
	  * flush start/stop is sent out if this is the consequence of a seek

2009-06-12 18:46:34 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: When receiving a seek, let update_pipeline send the flush events.

2009-06-12 18:44:46 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: *always* update pipeline when removing objects.
	  The object might currently have a streaming thread flowing out/through
	  of it. We therefore need to properly stop that by forcing a refresh of
	  the internal pipeline before calling the parent class remove_object()

2009-06-12 18:43:51 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Recheck for ghostpad existence in critical codepath.

2009-06-12 18:42:25 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlghostpad.c:
	  gnlghostpad: add G_UNLIKELY and remove useless warning

2009-06-12 18:41:21 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnloperation.c:
	  gnloperation: Unset sink ghostpad targets and fix pad-synch for dynamic operations.

2009-06-10 19:42:11 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	* gnl/gnlobject.h:
	  gnlcomposition: Simplify IN_ACTIVE_SEGMENT macro
	  It also fixes the issue when the object would start before the segment
	  start and end after the segment stop.

2009-06-11 13:51:06 +0100  Jan Schmidt <thaytan@noraisin.net>

	* common:
	* docs/Makefile.am:
	* docs/libs/Makefile.am:
	* docs/upload.mak:
	  docs: Bump common. Remove extra upload.mak. Fix comment.

2009-05-30 17:57:53 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	* tests/check/complex.c:
	* tests/check/gnloperation.c:
	  GnlComposition: Use expandable GnlObject property.

2009-05-29 19:47:43 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlobject.c:
	* gnl/gnlobject.h:
	  GnlObject: Add an 'expandable' property/flag.
	  This indicates that when the given object is used in a GnlComposition,
	  it should expand to the full extent of the composition's start/duration.

2009-05-29 19:35:52 +0200  Edward Hervey <bilboed@bilboed.com>

	* tests/check/complex.c:
	  checks: Don't check for gstreamer 0.10.4 anymore.
	  We already depend on a much recent version.

2009-05-30 17:59:39 +0200  Edward Hervey <bilboed@bilboed.com>

	* common:
	* configure.ac:
	  configure.ac: Back to development.

2009-05-26 17:20:52 +0100  Jan Schmidt <thaytan@noraisin.net>

	* common:
	  Automatic update of common submodule
	  From 888e0a2 to c572721

=== release 0.10.11 ===

2009-05-24 11:08:00 +0200  Edward Hervey <bilboed@bilboed.com>

	* ChangeLog:
	* NEWS:
	* RELEASE:
	* configure.ac:
	  0.10.11 release "How about green for the bikeshed?"

2009-05-22 10:21:31 +0100  Jan Schmidt <thaytan@noraisin.net>

	* common:
	  Automatic update of common submodule
	  From 6ab11d1 to 888e0a2

2009-05-18 13:07:13 +0200  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	  0.10.10.3 pre-release

2009-05-12 19:25:34 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Don't return FALSE in critical code-path.
	  Since updates are disabled, just return TRUE to make calling code
	  believe it succeeded.

2009-05-10 11:17:16 +0200  Marc-Andre Lureau <marcandre.lureau@gmail.com>

	* autogen.sh:
	  Run libtoolize before aclocal
	  This unbreaks the build in some cases. Fixes bug #582021

2009-05-09 12:58:11 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnloperation.c:
	  gnloperation: Also look at element class for pad templates.
	  This happens when an element doesn't come from a factory, like python
	  elements.

2009-05-08 13:50:47 +0200  Edward Hervey <bilboed@bilboed.com>

	* docs/libs/gnonlin.args:
	* docs/libs/inspect/plugin-gnonlin.xml:
	  gtk-doc: update docs.

2009-05-08 13:49:55 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Document the 'update' property.

2009-04-19 17:10:47 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlobject.c:
	  gnlobject: Document properties

2009-05-08 12:40:34 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Fix 'update' property description.

2009-05-08 12:39:27 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Use faster GList routines.
	  Use g_list_prepend() when we don't care about the order of the list.
	  Use g_list_insert_sorted() instead of g_list_append() + g_list_sort().
	  Don't sort a list after removing an item from an already sorted list.

2009-05-08 12:36:35 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	* tests/check/simple.c:
	  gnlcomposition: Update start/duration/stop even with update==False.
	  The reason behind this is that updating the lists and those properties
	  are decently simple/fast to do it at that time. The internal pipeline
	  will still not be updated if update == False.

2009-05-06 16:21:01 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	* tests/check/Makefile.am:
	* tests/check/common.h:
	* tests/check/simple.c:
	  gnlcomposition: Implement update-blocking. Fixes #555898
	  When update is set to False, the internal pipeline is never updated,
	  nor are the stop/duration properties of the composition.
	  This allows for massive modifications with a much lower overhead.

2009-05-06 16:13:16 +0200  Edward Hervey <bilboed@bilboed.com>

	* tests/check/simple.c:
	  tests/simple: Remove check for core > 0.10.4
	  We depend on a higher version already.

2009-04-30 20:13:21 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Remove duplicated code.
	  We use the same code when an object's start/stop/priority changes.

2009-04-21 22:14:26 +0100  Jan Schmidt <thaytan@noraisin.net>

	* common:
	  Automatic update of common submodule
	  From b3941ea to 6ab11d1

2009-04-19 13:29:41 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlghostpad.c:
	  gnlghostpad. Implement outgoing_{qos|position} handling. Fixes #578234

2009-04-19 12:37:11 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlghostpad.c:
	  gnlghostpad: Add some debugging statements

2009-04-19 12:31:21 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnloperation.c:
	  gnloperation: Use our magic ghostpad for sink pads

2009-04-19 12:30:48 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlghostpad.c:
	  gnlghostpad: Implement outgoing_seek and incoming_new_segment handling

2009-04-19 12:28:33 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlobject.c:
	  gnlobject: consider media_start as 0 if it's undefined.
	  This doesn't introduce regressions, but makes our life easier for handling
	  time-shifting with operations.

2009-04-19 10:12:52 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlghostpad.c:
	* gnl/gnlobject.c:
	* gnl/gnlobject.h:
	  Optimize calculations by using a boolean for (rate == 1.0) cases.

2009-04-19 10:04:01 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnl.c:
	* gnl/gnlghostpad.c:
	* gnl/gnlghostpad.h:
	  gnlghostpad: Add a 'gnlghostpad' debugging category

2009-04-19 09:44:16 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlghostpad.c:
	  gnlghostpad: Wrap G_*LIKELY with parenthses.
	  Makes indent act funny otherwise

2009-04-19 09:41:59 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlobject.c:
	  gnlobject: Wrap G_*LIKELY with parenthses.
	  Makes indent act funny otherwise

2009-04-19 09:35:51 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/Makefile.am:
	* gnl/gnl.h:
	* gnl/gnlghostpad.c:
	* gnl/gnlghostpad.h:
	* gnl/gnlobject.c:
	* gnl/gnlobject.h:
	  gnlghostpad: Move all ghostpad-related methods to a separate file.
	  Helps for maintainability.

2009-04-19 09:34:44 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlobject.c:
	  gnlobject: Give hints as to likelyhood of branches.

2009-04-19 09:04:15 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlobject.c:
	* gnl/gnlobject.h:
	  gnlobject: Remove 'coverage' items. They were never in the public API.
	  This was leftover from pre-0.10 gnonlin.

2009-04-19 08:59:03 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlobject.c:
	  gnlobject: No need to emit 'segment-start' message on newsegment anymore.
	  We had that to help GnlComposition.

2009-04-19 08:40:32 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlobject.c:
	  gnlobject: Remove the message handling now that we don't use segment messages.

2009-04-17 13:15:24 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Add a stackvalid protected variable to know if we can expose the stack.
	  The problem is that checking if comp->private->current is available isn't good enough,
	  since we might be in the middle of activating the stack.

2009-04-16 15:18:14 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlfilesource.c:
	  gnlfilesource: Make decodebin2 the default.

2009-04-04 21:19:56 +0300  Felipe Contreras <felipe.contreras@gmail.com>

	* common:
	  Automatic update of common submodule
	  From d0ea89e to b3941ea

2009-04-04 14:55:21 +0200  Edward Hervey <bilboed@bilboed.com>

	* common:
	  Automatic update of common submodule
	  From f8b3d91 to d0ea89e

2009-04-03 11:06:51 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnloperation.c:
	  gnloperation: Check if the return-value-as-argument is valid.

2009-04-03 11:06:36 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	* gnl/gnlfilesource.c:
	  Remove unneeded variables

2009-04-03 11:05:41 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Take into account the result of the position query.

2009-04-03 11:04:42 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Fix usage of GstIterator.
	  Don't allocate unused variables (GValue, return value)
	  Resync if needed.

2009-04-01 12:44:44 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Fix inline declaration and remove useless variable.

2009-04-01 12:44:25 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  gnlcomposition: Remove dead/useless code.

2009-04-01 12:43:50 +0200  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	* gnl/gnlfilesource.c:
	* gnl/gnlobject.c:
	* gnl/gnloperation.c:
	* gnl/gnlsource.c:
	  Mark unused arguments using G_GNUC_UNUSED glib macro.

2009-04-01 12:19:21 +0200  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	* gnl/Makefile.am:
	* gnl/gnlversion.h.in:
	  Remove old old old gnlversion.h.in

2009-03-25 13:09:43 +0100  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	* gnl/gnlobject.c:
	  Translate incoming QoS events. Fixes #398453.

2009-03-24 17:35:21 +0100  Alessandro Decina <alessandro.decina@collabora.co.uk>

	* gnl/gnlcomposition.c:
	  gnlcomposition: remove a GST_ERROR_OBJECT i used for debugging. meh.

2009-03-24 17:31:21 +0100  Alessandro Decina <alessandro.decina@collabora.co.uk>

	* gnl/gnlcomposition.c:
	  gnlcomposition: clear private->ghosteventprobe when the pad goes away.

2009-03-21 16:48:53 +0100  Edward Hervey <bilboed@bilboed.com>

	* tests/check/common.h:
	* tests/check/complex.c:
	* tests/check/gnloperation.c:
	* tests/check/gnlsource.c:
	* tests/check/simple.c:
	  Fix tests when running on systems with alpha. Fixes #563507

2009-03-21 15:41:15 +0100  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	* gnl/gnlobject.c:
	  GnlComposition: Switch to using regular segment seeks. Fixes #575972

2009-03-11 11:57:21 +0100  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	  0.10.10.2 pre-release

2009-03-09 23:14:29 +0000  Jan Schmidt <thaytan@noraisin.net>

	* common:
	  Automatic update of common submodule
	  From 7032163 to f8b3d91

2009-03-08 12:06:54 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From ffa738d to 7032163

2009-03-08 11:22:30 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 3f13e4e to ffa738d

2009-03-07 11:48:02 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 3c7456b to 3f13e4e

2009-03-07 10:48:09 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* common:
	  Automatic update of common submodule
	  From 57c83f2 to 3c7456b

2009-03-05 16:52:13 +0100  Alessandro Decina <alessandro.decina@collabora.co.uk>

	* gnl/gnlcomposition.c:
	* tests/check/Makefile.am:
	* tests/check/gnlcomposition.c:
	  GnlComposition: rebuild the stack when an object in the current stack is moved outside the active segment.

2009-03-02 17:46:43 +0100  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlcomposition.c:
	  GnlComposition: Post a GST_MESSAGE_DURATION when the duration changes.
	  Fixes #569854

2009-02-25 15:09:41 +0000  Jan Schmidt <thaytan@noraisin.net>

	* common:
	* configure.ac:
	  build: Update shave init statement for changes in common. Bump common.

2009-02-25 11:33:24 +0000  Jan Schmidt <thaytan@noraisin.net>

	* common:
	  Automatic update of common submodule
	  From 9cf8c9b to a6ce5c6

2009-02-24 13:08:26 +0100  Alessandro Decina <alessandro.decina@collabora.co.uk>

	* gnl/gnlcomposition.c:
	  gnlcomposition: in update_pipeline() set the seek start position if it's different from the currently configured position.

2009-02-23 18:30:16 +0100  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlsource.c:
	  gnlsource: Unref only pads that (1) exist and (2) are ours.

2009-02-23 13:27:48 +0200  Stefan Kost <ensonic@users.sf.net>

	* docs/libs/gnonlin-docs.sgml:
	  docs: use right entity name for version.

2009-02-22 20:33:17 +0000  Jan Schmidt <thaytan@noraisin.net>

	* configure.ac:
	* docs/libs/Makefile.am:
	  Use shave for the build

2009-02-22 16:02:16 +0000  Jan Schmidt <thaytan@noraisin.net>

	* common:
	  Automatic update of common submodule
	  From 5d7c9cc to 9cf8c9b

2009-02-21 11:14:35 -0800  David Schleef <ds@schleef.org>

	* common:
	  Automatic update of common submodule
	  From 80c627d to 5d7c9cc

2009-02-13 15:35:51 -0800  David Schleef <ds@schleef.org>

	* .gitignore:
	  Remove common from .gitignore
	  Makes it easier to update common.

2009-02-09 12:04:30 +0100  Edward Hervey <bilboed@bilboed.com>

	* common:
	  Bump revision to use for common submodule.

2009-02-04 16:49:26 +0000  Jan Schmidt <thaytan@noraisin.net>

	* gnl/gnlfilesource.c:
	  gnlfilesource: Avoid crashing on missing elements
	  Even though it should never happen, don't crash if we fail to create a
	  filesrc or decodebin for whatever reason.

2009-02-04 16:46:50 +0000  Jan Schmidt <thaytan@noraisin.net>

	* gnl/gnlsource.c:
	  gnlsource: Move a != NULL check to before the first use.

2009-01-30 22:30:50 +0200  Stefan Kost <ensonic@users.sf.net>

	* docs/libs/gnonlin-docs.sgml:
	  Add releaseinfo with online url.

2009-01-30 18:51:36 +0100  Edward Hervey <bilboed@bilboed.com>

	* gnl/gnlobject.c:
	  Implement handling of GST_QUERY_DURATION for gnlobject and subclasses
	  Partially fixes #569854

2009-01-30 18:44:11 +0100  Edward Hervey <bilboed@bilboed.com>

	* .gitignore:
	  Ignore more files

2009-01-30 17:46:24 +0000  Jan Schmidt <thaytan@noraisin.net>

	* common:
	  Bump common

2009-01-30 09:07:08 +0100  Edward Hervey <bilboed@bilboed.com>

	* autogen.sh:
	  Fix previous commit, wasn't actually setting up a symbolic link

2009-01-30 09:00:21 +0100  Edward Hervey <bilboed@bilboed.com>

	* autogen.sh:
	* common:
	  Use a symbolic link for the pre-commit client-side hook

2009-01-26 12:00:49 +0100  Alessandro Decina <alessandro.decina@collabora.co.uk>

	* gnl/gnlcomposition.c:
	  gnl/gnlcomposition.c: Check that GST_MESSAGE_SRC (m) is a GnlObject before casting it.

2009-01-22 13:43:57 +0100  Sebastian Dröge <slomo@circular-chaos.org>

	* common:
	  Fix pre-commit hook

2009-01-22 06:18:54 +0100  Edward Hervey <bilboed@bilboed.com>

	* autogen.sh:
	* common:
	  Install and use pre-commit indentation hook from common

2009-01-21 04:36:21 +0100  Edward Hervey <bilboed@bilboed.com>

	* autogen.sh:
	  autogen.sh : Use git submodule

2009-01-07 12:12:36 +0000  Alessandro Decina <alessandro.decina@collabora.co.uk>

	  gnl/gnlcomposition.c: Release objects lock temporarily when emitting no-more-pads.
	  Original commit message from CVS:
	  Patch by: Alessandro Decina <alessandro.decina@collabora.co.uk>
	  * gnl/gnlcomposition.c: (gnl_composition_ghost_pad_set_target):
	  Release objects lock temporarily when emitting no-more-pads.
	  This should not affect anything considering that the composition is
	  in the process of being built at that point and no actions should
	  be attempting to modify it while that lock is released.
	  Fixes #566796

2008-12-28 15:28:40 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Refine means "do not EXTEND the region" !
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (refine_start_stop_in_region_above_priority):
	  Refine means "do not EXTEND the region" !
	  This should fix more issues with complex timelines.

2008-12-14 12:24:30 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlsource.c: Don't forget to call the parent_class send_event handler.
	  Original commit message from CVS:
	  * gnl/gnlsource.c: (gnl_source_send_event):
	  Don't forget to call the parent_class send_event handler.

2008-12-13 16:46:47 +0000  Edward Hervey <bilboed@bilboed.com>

	  m4/Makefile.am: Two more .m4 that aren't shipped anymore with gettext >= 0.17.
	  Original commit message from CVS:
	  * m4/Makefile.am:
	  Two more .m4 that aren't shipped anymore with gettext >= 0.17.

2008-12-13 13:03:18 +0000  Edward Hervey <bilboed@bilboed.com>

	  m4/Makefile.am: inttypes.m4 hasn't been available since gettext-0.15, and since we now require gettext >= 0.17 ... we...
	  Original commit message from CVS:
	  * m4/Makefile.am:
	  inttypes.m4 hasn't been available since gettext-0.15, and since we now
	  require gettext >= 0.17 ... we can remove it from the list of files to
	  dist.

2008-12-04 20:13:46 +0000  Sebastian Dröge <slomo@circular-chaos.org>

	  configure.ac: Apparently AC_CONFIG_MACRO_DIR breaks when using more than one macro directory, reverting last change.
	  Original commit message from CVS:
	  * configure.ac:
	  Apparently AC_CONFIG_MACRO_DIR breaks when using more
	  than one macro directory, reverting last change.

2008-12-04 19:51:19 +0000  Sebastian Dröge <slomo@circular-chaos.org>

	  configure.ac: Set AC_CONFIG_MACRO_DIR to common/m4 to point autoconf to our M4 macros.
	  Original commit message from CVS:
	  * configure.ac:
	  Set AC_CONFIG_MACRO_DIR to common/m4 to point autoconf to
	  our M4 macros.

2008-11-29 13:34:48 +0000  Sebastian Dröge <slomo@circular-chaos.org>

	  Require gettext 0.17 because older versions don't mix with libtool 2.2. At build time an older gettext version will s...
	  Original commit message from CVS:
	  Patch by: Cygwin Ports maintainer
	  <yselkowitz at users dot sourceforge dot net>
	  * autogen.sh:
	  * configure.ac:
	  Require gettext 0.17 because older versions don't mix with libtool
	  2.2. At build time an older gettext version will still work.
	  Fixes bug #556091.

2008-11-05 12:57:08 +0000  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	  If you read this commit message, you pay too much attention to details
	  Original commit message from CVS:
	  If you read this commit message, you pay too much attention to details

2008-11-05 12:54:56 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/Makefile.am: Don't install static libs for plugins. Fixes #550851 for -gnonlin.
	  Original commit message from CVS:
	  * gnl/Makefile.am:
	  Don't install static libs for plugins. Fixes #550851 for -gnonlin.

2008-11-04 12:47:10 +0000  Stefan Kost <ensonic@users.sourceforge.net>

	  gnl/Makefile.am: Don't install static libs for plugins. Fixes #550851 for -gnonlin.
	  Original commit message from CVS:
	  * gnl/Makefile.am:
	  Don't install static libs for plugins. Fixes #550851 for -gnonlin.

=== release 0.10.10 ===

2008-11-03 15:50:20 +0000  Edward Hervey <bilboed@bilboed.com>

	* ChangeLog:
	* NEWS:
	* RELEASE:
	* configure.ac:
	  Releasing 0.10.10
	  Original commit message from CVS:
	  Releasing 0.10.10

2008-11-03 15:25:16 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlobject.c: Small protection for when we get invalid ghostpads. Doesn't change behaviour, but reduces fatal warn...
	  Original commit message from CVS:
	  * gnl/gnlobject.c: (control_internal_pad):
	  Small protection for when we get invalid ghostpads. Doesn't change
	  behaviour, but reduces fatal warnings.

2008-10-26 23:09:33 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: 0.10.9.2 pre-release.
	  Original commit message from CVS:
	  * configure.ac:
	  0.10.9.2 pre-release.

2008-09-25 15:52:39 +0000  Edward Hervey <bilboed@bilboed.com>

	  tests/check/gnloperation.c: Adapt test to 'fixed' behaviour of videomixer fixed by #537361
	  Original commit message from CVS:
	  * tests/check/gnloperation.c: (GST_START_TEST):
	  Adapt test to 'fixed' behaviour of videomixer fixed by #537361

2008-07-29 17:19:42 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: When calculating current position, request it downstream since it has a much better chance of k...
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (get_current_position),
	  (object_start_changed), (object_stop_changed),
	  (object_priority_changed), (object_active_changed),
	  (gnl_composition_add_object), (gnl_composition_remove_object):
	  When calculating current position, request it downstream since it has a
	  much better chance of knowing the exact position (because of queues, ..).
	  If that fails, then revert to upstream (in sources) as before.
	  Also, use the current position when stop/start/active/priority child
	  properties change.

2008-07-28 16:40:38 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Fix race-issue when unblocking top-level pad because the update_pipeline method isn't atomic (t...
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (gnl_composition_handle_message),
	  (no_more_pads_object_cb), (update_pipeline):
	  Fix race-issue when unblocking top-level pad because the update_pipeline
	  method isn't atomic (the objects lock is released in the middle).
	  Also ignore ERROR/WARNING coming from elements which aren't in the
	  currently configured stack. This is mostly related to a big issue with
	  reverse negotiation in dynamic pipelines.

2008-05-31 15:23:09 +0000  Edward Hervey <bilboed@bilboed.com>

	  docs/libs/inspect/plugin-gnonlin.xml: Plugin info as changed (email addresses).
	  Original commit message from CVS:
	  * docs/libs/inspect/plugin-gnonlin.xml:
	  Plugin info as changed (email addresses).

2008-05-31 15:13:51 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Don't use the objects_lock to protect the message handling, instead use a new lock (messages_lo...
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (gnl_composition_init),
	  (gnl_composition_finalize), (gnl_composition_handle_message),
	  (update_pipeline):
	  Don't use the objects_lock to protect the message handling, instead
	  use a new lock (messages_lock). Avoids a stupid deadlock.

2008-05-30 16:09:44 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/: Update email adresses of wim and edward to working adresses.
	  Original commit message from CVS:
	  * gnl/gnl.c:
	  * gnl/gnl.h:
	  * gnl/gnlcomposition.c:
	  * gnl/gnlcomposition.h:
	  * gnl/gnlfilesource.c:
	  * gnl/gnlfilesource.h:
	  * gnl/gnlobject.c:
	  * gnl/gnlobject.h:
	  * gnl/gnloperation.c:
	  * gnl/gnlsource.c:
	  * gnl/gnlsource.h:
	  Update email adresses of wim and edward to working adresses.
	  Use less GNL_* casting macros that actually also do typechecking for
	  all parts where it is not needed, and instead use simple casting.

2008-05-27 17:41:45 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Properly accumulate segment_start/segment_done messages so that we only switch segment when all...
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (add_message), (flush_messages),
	  (replace_message), (has_message), (dump_messages),
	  (gnl_composition_handle_message), (no_more_pads_object_cb),
	  (update_pipeline):
	  Properly accumulate segment_start/segment_done messages so that we only
	  switch segment when all segment_done have been emitted.
	  Inspired by the logic in gstbin.
	  * gnl/gnloperation.c: (get_unlinked_sink_ghost_pad),
	  (remove_sink_pad), (synchronize_sinks),
	  (gnl_operation_request_new_pad), (gnl_operation_release_pad):
	  Methods to properly remove request pads.
	  * tests/check/common.h:
	  Remove a leak

2008-05-26 17:26:16 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/: Fix more issues with dynamic-sinkpads operations.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (unblock_child_pads), (get_new_seek_event),
	  (get_current_position),
	  (refine_start_stop_in_region_above_priority),
	  (convert_list_to_tree), (get_stack_list),
	  (get_clean_toplevel_stack), (gnl_composition_change_state),
	  (compare_relink_single_node), (are_same_stacks), (update_pipeline),
	  (object_start_changed), (object_stop_changed),
	  (object_priority_changed), (object_active_changed),
	  (object_pad_removed), (object_pad_added),
	  (gnl_composition_remove_object):
	  * gnl/gnloperation.c: (element_is_valid_filter),
	  (get_nb_static_sinks), (gnl_operation_add_element),
	  (get_unused_static_sink_pad), (get_request_sink_pad),
	  (add_sink_pad), (synchronize_sinks):
	  * gnl/gnloperation.h:
	  Fix more issues with dynamic-sinkpads operations.
	  Gst-indent the code.

2008-05-26 17:21:29 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/: Round of gst-indent
	  Original commit message from CVS:
	  * gnl/gnlfilesource.c: (gnl_filesource_init):
	  * gnl/gnlobject.c: (translate_incoming_seek),
	  (ghostpad_event_function):
	  * gnl/gnlsource.c: (gnl_source_init):
	  Round of gst-indent

2008-05-26 11:31:27 +0000  Edward Hervey <bilboed@bilboed.com>

	  tests/check/: Round of gst-indent and more utilities
	  Original commit message from CVS:
	  * tests/check/common.h:
	  * tests/check/complex.c: (GST_START_TEST):
	  * tests/check/gnlsource.c: (GST_START_TEST):
	  * tests/check/simple.c: (GST_START_TEST):
	  Round of gst-indent and more utilities
	  * tests/check/gnloperation.c: (GST_START_TEST), (gnonlin_suite):
	  New test for multiple-input-pad operations. Needs more work

2008-05-26 11:30:03 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Exit properly if stack is empty.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (no_more_pads_object_cb):
	  Exit properly if stack is empty.

2008-05-18 21:47:16 +0000  Jan Schmidt <thaytan@mad.scientist.com>

	  docs/libs/.cvsignore: Ignore a couple more generated files.
	  Original commit message from CVS:
	  * docs/libs/.cvsignore:
	  Ignore a couple more generated files.

2008-05-16 15:20:31 +0000  Jan Schmidt <thaytan@mad.scientist.com>

	  Add some docs. The structure is based on the GStreamer plugin docs build, with an enhancement to allow having GnlObje...
	  Original commit message from CVS:
	  * configure.ac:
	  * docs/Makefile.am:
	  * docs/libs/.cvsignore:
	  * docs/libs/Makefile.am:
	  * docs/libs/gnonlin-docs.sgml:
	  * docs/libs/gnonlin-sections.txt:
	  * docs/libs/gnonlin.args:
	  * docs/libs/gnonlin.hierarchy:
	  * docs/libs/gnonlin.interfaces:
	  * docs/libs/gnonlin.prerequisites:
	  * docs/libs/gnonlin.signals:
	  * docs/libs/gnonlin.types:
	  * docs/libs/inspect-build.stamp:
	  * docs/libs/inspect.stamp:
	  * docs/libs/inspect/plugin-gnonlin.xml:
	  * docs/libs/scanobj-build.stamp:
	  * docs/libs/tmpl/gnl.sgml:
	  * docs/libs/tmpl/gnlcomposition.sgml:
	  * docs/libs/tmpl/gnlobject.sgml:
	  * docs/libs/tmpl/gnloperation.sgml:
	  * docs/libs/tmpl/gnlsource.sgml:
	  * docs/libs/tmpl/gnltimeline.sgml:
	  * gnl/gnlcomposition.c:
	  * gnl/gnlcomposition.h:
	  * gnl/gnlfilesource.c:
	  * gnl/gnlfilesource.h:
	  * gnl/gnlobject.c:
	  * gnl/gnloperation.c:
	  * gnl/gnloperation.h:
	  * gnl/gnlsource.c:
	  * gnl/gnltypes.h:
	  Add some docs. The structure is based on the GStreamer plugin docs
	  build, with an enhancement to allow having GnlObject (a plugin-private
	  base class) documented too.
	  Actual docs contents needs fleshing out.

2008-04-21 11:24:03 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnloperation.c: Fix small bug in debugging.
	  Original commit message from CVS:
	  * gnl/gnloperation.c: (gnl_operation_add_element):
	  Fix small bug in debugging.

2008-04-06 08:59:44 +0000  Damien Lespiau <damien.lespiau@gmail.com>

	  configure.ac: Actually build dlls when cross-compiling with mingw32.
	  Original commit message from CVS:
	  Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
	  * configure.ac:
	  Actually build dlls when cross-compiling with mingw32.
	  Fixes bug #526247.

2008-01-10 12:45:31 +0000  Sebastian Dröge <slomo@circular-chaos.org>

	  autogen.sh: Add -Wno-portability to the automake parameters to stop warnings about GNU make extensions being used. We...
	  Original commit message from CVS:
	  * autogen.sh:
	  Add -Wno-portability to the automake parameters to stop warnings
	  about GNU make extensions being used. We require GNU make in almost
	  every Makefile anyway.
	  * configure.ac:
	  Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
	  at the same time is required for per target flags.

2007-12-09 04:30:35 +0000  Sebastian Dröge <slomo@circular-chaos.org>

	  configure.ac: Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
	  Original commit message from CVS:
	  * configure.ac:
	  Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.

2007-08-08 13:06:05 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: Back to development cycle.
	  Original commit message from CVS:
	  * configure.ac:
	  Back to development cycle.

=== release 0.10.9 ===

2007-08-08 13:04:39 +0000  Edward Hervey <bilboed@bilboed.com>

	* ChangeLog:
	* NEWS:
	* RELEASE:
	* configure.ac:
	  Releasing 0.10.9
	  Original commit message from CVS:
	  Releasing 0.10.9

2007-08-01 08:09:45 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: 0.10.8.2 pre-release
	  Original commit message from CVS:
	  * configure.ac:
	  0.10.8.2 pre-release

2007-07-30 15:08:57 +0000  Edward Hervey <bilboed@bilboed.com>

	  tests/check/common.h: Add a bigger function for creating a video source with specific media-start and media-duration.
	  Original commit message from CVS:
	  * tests/check/common.h:
	  Add a bigger function for creating a video source with specific
	  media-start and media-duration.
	  * tests/check/simple.c: (GST_START_TEST):
	  Let's check with non-obvious media-start/duration sources.

2007-07-23 16:45:03 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Added debugging comments on a race issue to fix.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c:
	  (get_new_seek_event): Added debugging
	  (seek_handling): comments on a race issue to fix.
	  (gnl_composition_event_handler): protect call to get_new_seek_event.
	  (update_pipeline): Update seek events need to be flushing if not in
	  PLAYING, else we will encounter deadlocks.
	  (object_start_changed), (object_stop_changed),
	  (object_priority_changed), (object_active_changed): If composition
	  has changed, we set segment->start to segment_start in the same way
	  we do when a segment has finished.

2007-07-02 14:44:04 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlobject.c: Don't forward QoS event upstreams until we properly implement the time-shifting.
	  Original commit message from CVS:
	  * gnl/gnlobject.c: (ghostpad_event_function):
	  Don't forward QoS event upstreams until we properly implement the
	  time-shifting.
	  See bug #398453

2007-06-16 16:54:04 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Unblock child source pads when the pads OR the elements are being removed.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (unblock_child_pads), (unblock_childs),
	  (unlock_child_state), (lock_child_state),
	  (gnl_composition_change_state), (object_pad_removed),
	  (gnl_composition_add_object), (gnl_composition_remove_object):
	  Unblock child source pads when the pads OR the elements are being
	  removed.
	  Also unblock those pads when going to READY/NULL.
	  Lock the state of gnlobjects being added, else it screws up state
	  changes of the composition.
	  Properly unref items when using GstIterators.
	  * gnl/gnloperation.c: (gnl_operation_class_init),
	  (gnl_operation_finalize), (get_unused_static_sink_pad),
	  (add_sink_pad):
	  memleak fixes.
	  * tests/check/common.h:
	  * tests/check/simple.c: (GST_START_TEST):
	  memleak fixes.

2007-06-15 16:36:42 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlsource.c: Let's stop using the main thread for other-thread processing and instead go the proper way and use y...
	  Original commit message from CVS:
	  * gnl/gnlsource.c: (ghost_seek_pad), (pad_blocked_cb):
	  Let's stop using the main thread for other-thread processing and
	  instead go the proper way and use yet-another-thread through
	  g_thread_create().
	  * gnl/gnlcomposition.c: (gnl_composition_handle_message):
	  Add a FIXME/WARNING related to switching to g_thread_create regarding
	  SEGMENT_DONE message handling. This requires a better look at than I
	  can give right now.

2007-05-22 11:58:46 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlsource.c: Use 'async-handling' property if available so our state change happens correctly with latest core mo...
	  Original commit message from CVS:
	  * gnl/gnlsource.c: (gnl_source_init):
	  Use 'async-handling' property if available so our state change happens
	  correctly with latest core modifications.

2007-05-22 11:50:17 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/: Allow adding objects in a composition WHILE playing.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (get_new_seek_event),
	  (get_current_position), (gnl_composition_event_handler),
	  (refine_start_stop_in_region_above_priority),
	  (convert_list_to_tree), (get_stack_list),
	  (get_clean_toplevel_stack), (are_same_stacks), (update_pipeline),
	  (gnl_composition_add_object):
	  * gnl/gnlobject.c: (translate_incoming_seek):
	  * gnl/gnlobject.h:
	  Allow adding objects in a composition WHILE playing.
	  Fixes #437105

2007-05-05 12:04:54 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: Back to development cycle.
	  Original commit message from CVS:
	  * configure.ac:
	  Back to development cycle.

=== release 0.10.8 ===

2007-05-05 12:03:32 +0000  Edward Hervey <bilboed@bilboed.com>

	* NEWS:
	* RELEASE:
	* configure.ac:
	  Releasing GNonlin 0.10.8
	  Original commit message from CVS:
	  Releasing GNonlin 0.10.8

2007-05-05 12:02:53 +0000  Edward Hervey <bilboed@bilboed.com>

	* ChangeLog:
	  I'm too lazy to comment this
	  Original commit message from CVS:
	  *** empty log message ***

2007-05-03 15:17:27 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: 0.10.7.2 pre-release
	  Original commit message from CVS:
	  * configure.ac:
	  0.10.7.2 pre-release

2007-05-02 17:01:51 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlobject.h: priority is a guint32 !
	  Original commit message from CVS:
	  * gnl/gnlobject.h:
	  priority is a guint32 !
	  * gnl/gnlcomposition.c: (priority_comp), (objects_start_compare),
	  (objects_stop_compare), (object_start_changed),
	  (object_stop_changed), (object_priority_changed),
	  (object_active_changed):
	  Fix major stupidity in GCompareFunc, the difference between 2 guint32
	  is not guaranteed to be correct within a gint :)
	  Fixes #435215

2007-04-12 16:18:45 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlobject.c: Don't forget to unset the target when removing a ghost pad, else the target will still be linked to ...
	  Original commit message from CVS:
	  * gnl/gnlobject.c: (gnl_object_remove_ghost_pad):
	  Don't forget to unset the target when removing a ghost pad, else the
	  target will still be linked to the no-longer-present-ghostpad internal
	  pad.
	  This is the "+500 power points" Jokosher bugfix.

2007-02-28 21:25:53 +0000  Thomas Vander Stichele <thomas@apestaart.org>

	  configure.ac: adapt to new AG_GST
	  Original commit message from CVS:
	  * configure.ac:
	  adapt to new AG_GST

2007-02-19 15:37:45 +0000  Wim Taymans <wim.taymans@gmail.com>

	  gnl/: Fix some leaks.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (no_more_pads_object_cb),
	  (compare_relink_single_node), (update_pipeline):
	  * gnl/gnlobject.c: (control_internal_pad),
	  (gnl_object_ghost_pad_full):
	  * gnl/gnlsource.c: (ghost_seek_pad):
	  Fix some leaks.

2007-01-26 17:09:47 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: Back to development cycle.
	  Original commit message from CVS:
	  * configure.ac:
	  Back to development cycle.

2007-01-26 17:08:32 +0000  Edward Hervey <bilboed@bilboed.com>

	* NEWS:
	* RELEASE:
	* configure.ac:
	  Releasing GNonLin 0.10.7 "Anything better?"
	  Original commit message from CVS:
	  Releasing GNonLin 0.10.7 "Anything better?"
	  ----------------------------------------------------------------------

2007-01-26 17:07:48 +0000  Edward Hervey <bilboed@bilboed.com>

	* ChangeLog:
	  I'm too lazy to comment this
	  Original commit message from CVS:
	  *** empty log message ***

2007-01-24 17:08:14 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: Bump requirement to GStreamer core 0.10.9 pre-releasing gnonlin 0.10.6.2
	  Original commit message from CVS:
	  * configure.ac:
	  Bump requirement to GStreamer core 0.10.9
	  pre-releasing gnonlin 0.10.6.2

2007-01-22 16:01:56 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlfilesource.c: Use decodebin2 if the USE_DECODEBIN2 env variable is set.
	  Original commit message from CVS:
	  * gnl/gnlfilesource.c: (gnl_filesource_init):
	  Use decodebin2 if the USE_DECODEBIN2 env variable is set.

2007-01-10 16:55:26 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Add 'modify' boolean parameter to update_pipeline(). This is needed for cases where the timelin...
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (gnl_composition_reset),
	  (segment_done_main_thread), (seek_handling), (handle_seek_event),
	  (gnl_composition_event_handler),
	  (gnl_composition_ghost_pad_set_target), (convert_list_to_tree),
	  (get_stack_list), (get_clean_toplevel_stack),
	  (gnl_composition_change_state), (update_start_stop_duration),
	  (no_more_pads_object_cb), (compare_relink_single_node),
	  (compare_deactivate_single_node), (compare_relink_stack),
	  (update_pipeline), (object_start_changed), (object_stop_changed),
	  (object_priority_changed), (object_active_changed),
	  (gnl_composition_add_object), (gnl_composition_remove_object):
	  Add 'modify' boolean parameter to update_pipeline(). This is needed
	  for cases where the timeline is being updated because of modifications
	  in the timeline. In that case, flush events need to be sent downstream
	  so that the streaming threads are properly released and no longer
	  blocking on downstream elements/pads.
	  Add more debugging statements a bit everywhere.
	  Re-indent all code.

2006-11-27 20:28:20 +0000  Edward Hervey <bilboed@bilboed.com>

	  RELEASE: Ouch, forgot to update the release file.
	  Original commit message from CVS:
	  * RELEASE:
	  Ouch, forgot to update the release file.
	  Personal note : REMEMBER IT'S HERE !!!

2006-11-27 20:06:27 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: Back to development cycle.
	  Original commit message from CVS:
	  * configure.ac:
	  Back to development cycle.

=== release 0.10.6 ===

2006-11-27 20:03:45 +0000  Edward Hervey <bilboed@bilboed.com>

	* NEWS:
	* configure.ac:
	  GNonLin 0.10.6 "Who stole my beard ?" release
	  Original commit message from CVS:
	  GNonLin 0.10.6 "Who stole my beard ?" release
	  ----------------------------------------------------------------------

2006-11-27 20:02:53 +0000  Edward Hervey <bilboed@bilboed.com>

	* ChangeLog:
	  I'm too lazy to comment this
	  Original commit message from CVS:
	  *** empty log message ***

2006-11-23 20:01:11 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: 0.10.5.2 pre-release
	  Original commit message from CVS:
	  * configure.ac:
	  0.10.5.2 pre-release

2006-11-03 13:52:07 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Recalculate start/stop/duration of composition when adding a default source.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (gnl_composition_add_object):
	  Recalculate start/stop/duration of composition when adding a default
	  source.
	  * tests/check/complex.c: (GST_START_TEST):
	  Modify test so it also test for the case where the composition starts
	  with a default source.

2006-11-03 11:46:52 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: If we have a default source, the composition start value is always 0.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (handle_seek_event),
	  (gnl_composition_event_handler), (update_start_stop_duration):
	  If we have a default source, the composition start value is always 0.
	  Don't rely on incoming seek event, create a new one from calculated
	  values.

2006-11-02 11:59:55 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Take into account the priority of default sources when calculating the highest priority. This f...
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (convert_list_to_tree):
	  Take into account the priority of default sources when calculating the
	  highest priority. This fixes #362399
	  * tests/check/gnloperation.c: (GST_START_TEST), (gnonlin_suite):
	  Unit test for fixed behaviour.

2006-11-02 10:14:44 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Better check for the 'next stop' of a stack. It will now look at all objects under the highest ...
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (gnl_composition_ghost_pad_set_target),
	  (next_stop_in_region_above_priority), (convert_list_to_tree),
	  (get_stack_list), (get_clean_toplevel_stack),
	  (gnl_composition_remove_object):
	  Better check for the 'next stop' of a stack. It will now look at all
	  objects under the highest priority (and not the lowest as previously).
	  Fixes #356380.
	  Set new pads as active.
	  Add some debug.
	  * gnl/gnlobject.c: (gnl_object_ghost_pad_full):
	  * gnl/gnloperation.c: (gnl_operation_add_element), (add_sink_pad):
	  Activate new pads.
	  * tests/check/gnloperation.c: (GST_START_TEST), (gnonlin_suite):
	  Added new test (test_pyramid_operations) to test issues fixed for
	  #356380.
	  * tests/check/simple.c: (GST_START_TEST):
	  Unref sinkpads before testing some issues.

2006-09-16 16:55:21 +0000  Edward Hervey <bilboed@bilboed.com>

	  tests/check/: gst_element_link_filtered() does not take the refcount on the caps.
	  Original commit message from CVS:
	  * tests/check/common.h:
	  * tests/check/complex.c: (GST_START_TEST):
	  gst_element_link_filtered() does not take the refcount on the caps.
	  Therefore we unref the caps after use.

2006-09-16 16:36:10 +0000  Edward Hervey <bilboed@bilboed.com>

	  tests/check/common.h: Added convenience function to create a int/float audiotest gnlsource.
	  Original commit message from CVS:
	  * tests/check/common.h:
	  Added convenience function to create a int/float audiotest gnlsource.
	  * tests/check/complex.c: (GST_START_TEST), (gnonlin_suite):
	  Added test_renegotiation to test re-negotiation error seen in #352827

2006-09-16 15:59:31 +0000  Edward Hervey <bilboed@bilboed.com>

	  tests/check/.cvsignore: add gnloperation
	  Original commit message from CVS:
	  * tests/check/.cvsignore:
	  add gnloperation

2006-09-16 15:53:09 +0000  Edward Hervey <bilboed@bilboed.com>

	  tests/check/Makefile.am: add common.h
	  Original commit message from CVS:
	  * tests/check/Makefile.am:
	  add common.h

2006-09-16 15:40:46 +0000  Edward Hervey <bilboed@bilboed.com>

	  tests/check/: Single header file that contains all the common functions and structures for the gnonlin tests.
	  Original commit message from CVS:
	  * tests/check/Makefile.am:
	  * tests/check/common.h:
	  Single header file that contains all the common functions and structures
	  for the gnonlin tests.
	  * tests/check/complex.c:
	  * tests/check/gnlsource.c: (GST_START_TEST):
	  * tests/check/simple.c:
	  Switch to using common.h , makes test files smaller.
	  * tests/check/gnloperation.c: (GST_START_TEST), (gnonlin_suite),
	  (main):
	  Created new test for gnloperations, starting with one that tests adding
	  and removing operations, and checking that the outputted segments are
	  correct.

2006-09-07 08:14:22 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlfilesource.c: Add pad templates to GnlFileSource so we can use it properly with gst-launch.
	  Original commit message from CVS:
	  * gnl/gnlfilesource.c: (gnl_filesource_class_init):
	  Add pad templates to GnlFileSource so we can use it properly
	  with gst-launch.

2006-08-31 11:48:47 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Set all properties of default sources in one g_object_set().
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (gnl_composition_add_object):
	  Set all properties of default sources in one g_object_set().

2006-08-30 15:58:34 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: When unlinking source/operations , flush the parent's sink pad, so any stream locks are released.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c:
	  (compare_deactivate_single_node):
	  When unlinking source/operations , flush the parent's sink pad, so any
	  stream locks are released.
	  * gnl/gnloperation.c:
	  (element_is_valid_filter): Scan pads AND templates to figure out if the
	  element is a valid filter, and properly establish if it has dynamic
	  pads,
	  (get_unused_static_sink_pad):
	  comments,
	  (get_request_sink_pad):
	  New function for getting request sink pads.
	  (add_sink_pad):
	  Add support for request sink pads,
	  (synchronize_sinks):
	  Don't try to add pads if it fails.
	  * gnl/gnlsource.c:
	  (ghost_seek_pad):
	  Emit 'no-more-pads' after unblocking the controlled source pad. Not
	  doing this would cause deadlocks in compositions with operations.

2006-08-25 15:01:13 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Remove the ghostpad if the composition becomes empty.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (update_pipeline):
	  Remove the ghostpad if the composition becomes empty.

2006-08-24 13:00:29 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Only set ghostpad target and/or send seek event once all the objects of the stack are linked.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (gnl_composition_init),
	  (gnl_composition_reset), (gnl_composition_event_handler),
	  (no_more_pads_object_cb), (compare_relink_single_node),
	  (compare_relink_stack), (update_pipeline):
	  Only set ghostpad target and/or send seek event once all the objects of
	  the stack are linked.
	  Fixes #352389
	  This is done through the use of comp->private->waitingpads.
	  Simplified update_pipeline accordingly.
	  Added more comments.

2006-08-24 12:59:30 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Only set ghostpad target and/or send seek event once all the objects of the stack are linked.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (gnl_composition_init),
	  (gnl_composition_reset), (gnl_composition_event_handler),
	  (no_more_pads_object_cb), (compare_relink_single_node),
	  (compare_relink_stack), (update_pipeline):
	  Only set ghostpad target and/or send seek event once all the objects of
	  the stack are linked.
	  This is done through the use of comp->private->waitingpads.
	  Simplified update_pipeline accordingly.
	  Added more comments.

2006-08-23 16:58:55 +0000  Wim Taymans <wim.taymans@gmail.com>

	  gnl/gnlobject.c: Add extra explanation for priority property, Fixes #352382.
	  Original commit message from CVS:
	  * gnl/gnlobject.c: (gnl_object_class_init), (control_internal_pad),
	  (gnl_object_ghost_pad_no_target):
	  Add extra explanation for priority property, Fixes #352382.

2006-08-23 10:52:42 +0000  Wim Taymans <wim.taymans@gmail.com>

	  gnl/gnloperation.c: Fix leaks in iterators.
	  Original commit message from CVS:
	  * gnl/gnloperation.c: (gnl_operation_class_init),
	  (element_is_valid_filter), (gnl_operation_add_element),
	  (gnl_operation_set_sinks), (get_unused_static_sink_pad),
	  (add_sink_pad), (gnl_operation_request_new_pad):
	  Fix leaks in iterators.
	  Correctly resync iterators too.

2006-08-18 11:10:22 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlobject.c: Free internal pad private data when the pad is being finalized, else we leak that structure.
	  Original commit message from CVS:
	  * gnl/gnlobject.c: (internal_pad_finalizing),
	  (control_internal_pad):
	  Free internal pad private data when the pad is being finalized, else
	  we leak that structure.

2006-08-18 10:46:44 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Properly handle ghostpads without targets.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c:
	  (gnl_composition_ghost_pad_set_target):
	  Properly handle ghostpads without targets.
	  (convert_list_to_tree), (compare_relink_single_node),
	  (compare_deactivate_single_node), (update_pipeline):
	  First integration of support for GnlOperations.
	  (gnl_composition_add_object):
	  If composition was empty and initialized, update pipeline.

2006-08-09 16:44:00 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlobject.c: Remove useless linkfunc/unlinkfunc from GnlPadPrivate structure.
	  Original commit message from CVS:
	  * gnl/gnlobject.c:
	  Remove useless linkfunc/unlinkfunc from GnlPadPrivate structure.
	  (control_internal_pad),
	  Remove call to useless functions.
	  (gnl_object_ghost_pad_no_target),
	  (gnl_object_ghost_pad_set_target):
	  * gnl/gnloperation.c: (gnl_operation_class_init),
	  (element_is_valid_filter), (gnl_operation_add_element),
	  (gnl_operation_set_sinks), (get_unused_static_sink_pad),
	  (add_sink_pad), (gnl_operation_request_new_pad),
	  (gnl_operation_release_pad):
	  Implemented GstElement::request_new_pad virtual method.
	  Improved sink ghost pads synchronisation with the nbsinks property.
	  * gnl/gnloperation.h:
	  Added comments.

2006-07-27 16:00:35 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnl.c: Let's welcome GnlOperation back in the game.
	  Original commit message from CVS:
	  * gnl/gnl.c:
	  Let's welcome GnlOperation back in the game.
	  * gnl/gnlcomposition.c: (gnl_composition_init),
	  (gnl_composition_dispose), (gnl_composition_finalize),
	  (gnl_composition_reset), (segment_done_main_thread),
	  (gnl_composition_handle_message), (get_new_seek_event),
	  (seek_handling), (pad_blocked),
	  (gnl_composition_ghost_pad_set_target),
	  (next_stop_in_region_above_priority), (convert_list_to_tree),
	  (get_stack_list), (get_clean_toplevel_stack),
	  (gnl_composition_change_state), (update_start_stop_duration),
	  (no_more_pads_object_cb), (compare_relink_single_node),
	  (compare_deactivate_single_node), (compare_relink_stack),
	  (unlock_activate_stack), (update_pipeline), (object_pad_added),
	  (gnl_composition_add_object), (gnl_composition_remove_object):
	  * gnl/gnloperation.h:
	  Switch to using a tree of GNode for the current stack.
	  It's faster (since it does more checks in one go) and has more
	  potential for speed improvements when updating the
	  pipeline.
	  * gnl/gnloperation.c: (gnl_operation_class_init),
	  (gnl_operation_reset), (gnl_operation_init),
	  (element_is_valid_filter), (get_src_pad),
	  (gnl_operation_add_element), (gnl_operation_remove_element),
	  (gnl_operation_set_property), (gnl_operation_get_property),
	  (add_sink_pad), (remove_sink_pad), (synchronize_sinks):
	  Added more comments and fixme's.
	  * gnl/gnlobject.c: (internalpad_event_function),
	  (ghostpad_event_function), (gnl_object_ghost_pad_full),
	  (gnl_object_change_state):
	  * gnl/gnlsource.c: (gnl_source_prepare), (element_pad_added_cb),
	  (element_pad_removed_cb), (ghost_seek_pad),
	  (gnl_source_change_state):
	  gst-indent fixups.

2006-07-25 16:29:05 +0000  cascardo at holoscopio dot com <cascardo@holoscopio.com>

	  gnl/gnlfilesource.c: Typo error. There's no filesource element, it's filesrc.
	  Original commit message from CVS:
	  * gnl/gnlfilesource.c: (gnl_filesource_init):
	  Typo error. There's no filesource element, it's filesrc.
	  Patch from cascardo at holoscopio dot com

2006-07-20 16:22:54 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: Back to development cycle
	  Original commit message from CVS:
	  * configure.ac:
	  Back to development cycle

=== release 0.10.5 ===

2006-07-20 16:21:12 +0000  Edward Hervey <bilboed@bilboed.com>

	* ChangeLog:
	* NEWS:
	  0.10.5 "Beavis and Zidane" release
	  Original commit message from CVS:
	  0.10.5 "Beavis and Zidane" release

2006-07-20 15:46:41 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Fix typo in debug statement.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c:
	  Fix typo in debug statement.

2006-07-19 12:31:06 +0000  Edward Hervey <bilboed@bilboed.com>

	  Memleak fixes in composition and tests.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (update_pipeline):
	  * tests/check/complex.c: (sinkpad_event_probe), (GST_START_TEST):
	  * tests/check/gnlsource.c: (sinkpad_event_probe), (GST_START_TEST):
	  * tests/check/simple.c: (sinkpad_event_probe), (GST_START_TEST):
	  Memleak fixes in composition and tests.

2006-07-19 11:36:57 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlsource.c: Try to send pending event before emitting no-more-pads and unblocking controlled src pad.
	  Original commit message from CVS:
	  * gnl/gnlsource.c: (ghost_seek_pad):
	  Try to send pending event before emitting no-more-pads and unblocking
	  controlled src pad.

2006-07-19 10:45:00 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Add default sources properly (sources with prioriy of G_MAXUINT32).
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (gnl_composition_class_init),
	  (hash_value_destroy), (gnl_composition_init), (get_stack_list),
	  (update_start_stop_duration), (object_start_changed),
	  (object_stop_changed), (object_priority_changed),
	  (object_active_changed), (gnl_composition_add_object),
	  (gnl_composition_remove_object):
	  Add default sources properly (sources with prioriy of G_MAXUINT32).
	  Update pipeline when:
	  _ object is added/removed within current playing segment
	  _ object within current playing segment whose start/stop/priority/active
	  property changes.
	  * tests/check/complex.c: (GST_START_TEST):
	  * tests/check/gnlsource.c: (GST_START_TEST):
	  Fixed tests to test more behaviours, including new ones.

2006-07-16 15:47:36 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnonlin.pc.in: removing file from CVS.
	  Original commit message from CVS:
	  * gnonlin.pc.in: removing file from CVS.
	  * configure.ac: pre-release 0.10.4.3

2006-07-11 16:41:10 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: Require core >= 0.10.8.1 (for ghostpad and blocking fixes).
	  Original commit message from CVS:
	  * configure.ac:
	  Require core >= 0.10.8.1 (for ghostpad and blocking fixes).
	  * gnl/gnlcomposition.c: (hash_value_destroy), (unlock_childs),
	  (gnl_composition_reset), (segment_done_main_thread),
	  (get_new_seek_event), (handle_seek_event),
	  (gnl_composition_ghost_pad_set_target),
	  (gnl_composition_change_state), (no_more_pads_object_cb),
	  (update_pipeline), (object_start_changed), (object_stop_changed),
	  (object_priority_changed), (object_active_changed),
	  (object_pad_added), (gnl_composition_add_object),
	  (gnl_composition_remove_object):
	  All source pads created are now blocked by default.
	  Don't lock the state of sources in READY. Let them all reach paused.
	  Remove cruft now fixed in GStreamer core.
	  * gnl/gnlobject.c: (internalpad_event_function),
	  (ghostpad_event_function), (control_internal_pad),
	  (ghostpad_link_function), (gnl_object_ghost_pad_full),
	  (gnl_object_ghost_pad_no_target),
	  (gnl_object_ghost_pad_set_target):
	  * gnl/gnlobject.h:
	  Remove all the cruft which is now fixed in GStreamer core.
	  * gnl/gnlsource.c: (gnl_source_prepare), (element_pad_added_cb),
	  (element_pad_removed_cb), (ghost_seek_pad), (pad_blocked_cb),
	  (gnl_source_change_state):
	  Remove all the pad blocking on events with ghostpad cruft which is
	  now fixed in GStreamer core.

2006-07-03 09:57:02 +0000  Edward Hervey <bilboed@bilboed.com>

	  Make gnonlin build properly on CygWin.
	  Original commit message from CVS:
	  * Makefile.am:
	  * configure.ac:
	  Make gnonlin build properly on CygWin.
	  Fixes #341492

2006-06-18 11:55:59 +0000  Edward Hervey <bilboed@bilboed.com>

	  docs/random/design: Precision about gnloperation sinks property.
	  Original commit message from CVS:
	  * docs/random/design:
	  Precision about gnloperation sinks property.
	  * gnl/gnlcomposition.c: (gnl_composition_init),
	  (gnl_composition_finalize), (lock_child_state),
	  (gnl_composition_reset), (segment_done_main_thread),
	  (gnl_composition_handle_message), (seek_handling),
	  (handle_seek_event), (pad_blocked),
	  (gnl_composition_ghost_pad_set_target),
	  (update_start_stop_duration), (compare_relink_stack),
	  (update_pipeline), (object_start_changed), (object_stop_changed):
	  Non-racy seeking handling. All seeks are put in the main thread.
	  A lock-protected value takes care of discarding previous seeks. This
	  avoids freeze situations when scrubbing/seeking a lot.
	  Use of pad blocks for non-used sources.
	  * gnl/gnlobject.c: (internalpad_event_function),
	  (gnl_pad_set_blocked_async), (gnl_pad_add_event_probe),
	  (gnl_pad_remove_event_probe):
	  * gnl/gnlobject.h:
	  Emit 'segment-start' message when we receive a newsegment event. This
	  allows the composition to know when a seek is really starting and
	  therefore stop all pending seeks.
	  Added functions (hacks) for recursive ghostpad handling. Should go
	  away once the issue is fixed in core (See #341029).
	  * gnl/gnlsource.c: (element_pad_added_cb),
	  (element_pad_removed_cb), (ghost_seek_pad),
	  (gnl_source_change_state):
	  Use gnl_pad_* recursive ghostpads hack functions.
	  * tests/check/simple.c: (GST_START_TEST):
	  Fix comment

2006-06-12 13:15:39 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: pre-release 0.10.4.2
	  Original commit message from CVS:
	  * configure.ac: pre-release 0.10.4.2

2006-06-12 12:43:43 +0000  Edward Hervey <bilboed@bilboed.com>

	  tests/check/complex.c: Added unit-test for the previous fixes to gnlcomposition with default sources.
	  Original commit message from CVS:
	  * tests/check/complex.c: (GST_START_TEST), (gnonlin_suite):
	  Added unit-test for the previous fixes to gnlcomposition with default
	  sources.

2006-06-12 11:33:05 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Fixed wrong get_stack_list(), stop at the correct place.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (next_stop_in_region_above_priority),
	  (get_stack_list):
	  Fixed wrong get_stack_list(), stop at the correct place.
	  Stop iterating as soon as possible in next_stop_in_region..().

2006-06-11 11:22:58 +0000  Edward Hervey <bilboed@bilboed.com>

	  docs/random/design: Fleshed up design doc a bit more.
	  Original commit message from CVS:
	  * docs/random/design:
	  Fleshed up design doc a bit more.

2006-06-10 23:27:10 +0000  Thomas Vander Stichele <thomas@apestaart.org>

	* tests/check/.gitignore:
	  ignore more and fix the build
	  Original commit message from CVS:
	  ignore more and fix the build

2006-06-08 15:44:59 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Composition now looks for anything hiding the configured segment, in order to properly adjust t...
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (next_stop_in_region_above_priority),
	  (get_clean_toplevel_stack):
	  Composition now looks for anything hiding the configured segment, in
	  order to properly adjust the end of the configured segment.
	  This should make default sources work.
	  * gnl/gnloperation.c: (gnl_operation_class_init),
	  (gnl_operation_init), (element_is_valid_filter),
	  (gnl_operation_add_element), (gnl_operation_remove_element),
	  (gnl_operation_set_sinks), (gnl_operation_set_property),
	  (gnl_operation_get_property), (add_sink_pad), (remove_sink_pad),
	  (synchronize_sinks), (gnl_operation_prepare):
	  * gnl/gnloperation.h:
	  First big update. Still some more work to do though.
	  * tests/check/complex.c: (gnonlin_suite):
	  Re-activated testsuite to check for 'hiding' situations.

2006-06-06 16:29:55 +0000  Edward Hervey <bilboed@bilboed.com>

	  docs/random/design: Updated to real 0.10 behaviour + added details.
	  Original commit message from CVS:
	  * docs/random/design:
	  Updated to real 0.10 behaviour + added details.

2006-05-31 09:43:48 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlsource.c: initial seek event is in object time realm.
	  Original commit message from CVS:
	  * gnl/gnlsource.c: (gnl_source_prepare):
	  initial seek event is in object time realm.

2006-05-23 10:02:05 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Protect critical part with comp_objects_lock.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (gnl_composition_dispose),
	  (gnl_composition_ghost_pad_set_target), (update_pipeline),
	  (gnl_composition_event_handler):
	  Protect critical part with comp_objects_lock.
	  Don't unref pad given to gnl_composition_ghost_pad_set_target().
	  * tests/check/complex.c: (GST_START_TEST):
	  * tests/check/gnlsource.c: (GST_START_TEST):
	  * tests/check/simple.c: (GST_START_TEST):
	  memleak fixes in tests.

2006-05-22 16:18:43 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Change the composition's ghostpad target at the same time as we send the seek event. This avoid...
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (no_more_pads_object_cb),
	  (update_pipeline):
	  Change the composition's ghostpad target at the same time as we send the
	  seek event. This avoids the case where we check for the pad availability
	  too early (not present) and then never switch the ghostpad target.
	  * gnl/gnlsource.c: (gnl_source_change_state):
	  if we don't have a controlled element, don't even care about calling
	  parent's _change_state()

2006-05-21 09:21:18 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlsource.c: Handle the case where more than one pads of the controlled element is a valid src pad (intersects wi...
	  Original commit message from CVS:
	  * gnl/gnlsource.c: (element_pad_added_cb), (ghost_seek_pad),
	  (gnl_source_change_state):
	  Handle the case where more than one pads of the controlled element is
	  a valid src pad (intersects with the caps).

2006-05-11 12:07:31 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: Back to development cycle.
	  Original commit message from CVS:
	  * configure.ac:
	  Back to development cycle.

=== release 0.10.4 ===

2006-05-11 12:06:15 +0000  Edward Hervey <bilboed@bilboed.com>

	* ChangeLog:
	* NEWS:
	* configure.ac:
	  Releasing 0.10.4 "Solomillo de Ternera"
	  Original commit message from CVS:
	  Releasing 0.10.4 "Solomillo de Ternera"

2006-05-10 18:02:58 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Fix for correctly playing compositions with gaps between objects.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (get_clean_toplevel_stack),
	  (update_pipeline):
	  Fix for correctly playing compositions with gaps between objects.
	  * tests/check/Makefile.am:
	  * tests/check/complex.c: (gst_element_factory_make_or_warn),
	  (composition_pad_added_cb), (compare_segments),
	  (sinkpad_event_probe), (sinkpad_buffer_probe), (videotest_gnl_src),
	  (videotest_in_bin_gnl_src), (segment_new), (GST_START_TEST),
	  (gnonlin_suite), (main):
	  Added new unittests for compositions with gaps between objects.
	  * tests/check/simple.c: (gnonlin_suite):
	  Moved de-activated test_one_above_another to complex

2006-05-10 14:48:50 +0000  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	  Reverting cruft that went in previous commit to configure.ac
	  Original commit message from CVS:
	  Reverting cruft that went in previous commit to configure.ac

2006-05-10 14:44:10 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: 0.10.3.2 pre-release
	  Original commit message from CVS:
	  * configure.ac:
	  0.10.3.2 pre-release

2006-05-08 16:47:47 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlsource.c: Don't call ghost_seek_pad() in the event probe and only discard the events. The buffer probe will ev...
	  Original commit message from CVS:
	  * gnl/gnlsource.c: (pad_event_probe):
	  Don't call ghost_seek_pad() in the event probe and only discard
	  the events. The buffer probe will eventually take care of that.
	  This guarantees that upstream elements are initialized and ready to
	  handle seek events.

2006-05-08 14:04:34 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/: Indent properly using gstreamer/tools/gst-indent
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (gnl_composition_finalize),
	  (gnl_composition_handle_message),
	  (gnl_composition_ghost_pad_set_target),
	  (gnl_composition_change_state), (no_more_pads_object_cb),
	  (update_pipeline):
	  * gnl/gnlfilesource.c: (gnl_filesource_init):
	  * gnl/gnlobject.c: (translate_incoming_seek),
	  (gnl_object_ghost_pad_full), (gnl_object_remove_ghost_pad),
	  (gnl_object_change_state):
	  * gnl/gnlsource.c: (gnl_source_class_init), (gnl_source_prepare),
	  (element_pad_added_cb), (element_pad_removed_cb), (ghost_seek_pad),
	  (pad_event_probe), (has_dynamic_srcpads),
	  (gnl_source_control_element_func), (gnl_source_add_element),
	  (gnl_source_remove_element), (gnl_source_change_state):
	  * gnl/gnlsource.h:
	  Indent properly using gstreamer/tools/gst-indent

2006-05-08 14:00:10 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Convert non-fatal GST_WARNING to GST_DEBUG.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (gnl_composition_ghost_pad_set_target),
	  (get_src_pad), (update_pipeline):
	  Convert non-fatal GST_WARNING to GST_DEBUG.

2006-05-08 12:02:29 +0000  Edward Hervey <bilboed@bilboed.com>

	  autogen.sh: Update dependency checking
	  Original commit message from CVS:
	  * autogen.sh:
	  Update dependency checking

2006-05-08 11:29:53 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlfilesource.c: No more redundant bin containing filesrc and decodebin.
	  Original commit message from CVS:
	  * gnl/gnlfilesource.c: (gnl_filesource_class_init),
	  (gnl_filesource_init):
	  No more redundant bin containing filesrc and decodebin.
	  We use the GnlSource controls_one and control_element() class properties
	  to inform GnlSource it should control decodebin but still accept
	  filesrc.
	  * gnl/gnlsource.c: (gnl_source_class_init),
	  (gnl_source_control_element_func), (gnl_source_add_element),
	  (gnl_source_remove_element):
	  * gnl/gnlsource.h:
	  Added two class properties:
	  _ controls_one which tells whether the class controls only one object
	  _ control_element() virtual_method which should be called by subclasses
	  that have several elements to specify which element should be checked
	  for pad-added/pad-removed.

2006-05-05 16:23:06 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlfilesource.*: Simplify GnlFileSource to be a subclass of GnlSource.
	  Original commit message from CVS:
	  * gnl/gnlfilesource.c: (gnl_filesource_class_init),
	  (decodebin_pad_added_cb), (find_ghost_pad),
	  (decodebin_pad_removed_cb), (gnl_filesource_init):
	  * gnl/gnlfilesource.h:
	  Simplify GnlFileSource to be a subclass of GnlSource.
	  * gnl/gnlsource.c: (element_pad_added_cb),
	  (gnl_source_change_state):
	  Add event probe for dynamic pads too.
	  Don't error out in state_change.

2006-05-05 12:34:32 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/: Remove gnlmarshal cruft that dates from... well....
	  Original commit message from CVS:
	  * gnl/Makefile.am:
	  * gnl/gnlfilesource.c:
	  * gnl/gnlmarshal.list:
	  * gnl/gnlobject.c:
	  * gnl/gnloperation.c:
	  * gnl/gnlsource.c:
	  Remove gnlmarshal cruft that dates from... well....
	  Ok, fine, that was here since 0.8 era and not used since :)

2006-05-05 12:10:23 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: If srcpad of top gnlobject is not available, store pending child seek so we can send it when th...
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (gnl_composition_dispose),
	  (lock_child_state), (gnl_composition_reset), (get_new_seek_event),
	  (gnl_composition_change_state), (no_more_pads_object_cb),
	  (update_pipeline):
	  If srcpad of top gnlobject is not available, store pending child seek so
	  we can send it when the pad appears.
	  Lock all childs in READY. They will be automatically (un)locked in
	  update_pipeline()
	  Add GST_SEEK_FLAG_ACCURATE to the seek event.
	  * gnl/gnlobject.c: (translate_incoming_seek),
	  (gnl_object_change_state):
	  Add GST_SEEK_FLAG_ACCURATE to incoming seek events if it wasn't already
	  there.
	  GnlObject::update() virtual method is called in READY->PAUSED before
	  calling the parent _change_state()
	  * gnl/gnlsource.c: (gnl_source_class_init), (gnl_source_prepare),
	  (element_pad_removed_cb), (ghost_seek_pad), (pad_blocked_cb),
	  (pad_event_probe), (gnl_source_add_element),
	  (gnl_source_change_state):
	  We need to block on events. Added an event_probe for that.
	  Implement GnlObject::prepare() so we can create a seek event if the
	  GnlSource is used stand-alone (not in composition).
	  * tests/check/Makefile.am:
	  * tests/check/gnlsource.c: (gst_element_factory_make_or_warn),
	  (gnlsource_pad_added_cb), (compare_segments),
	  (sinkpad_event_probe), (sinkpad_buffer_probe), (videotest_gnl_src),
	  (videotest_in_bin_gnl_src), (segment_new), (GST_START_TEST),
	  (gnonlin_suite), (main):
	  New unit test for testing standalone GnlSource behaviour
	  * tests/check/simple.c: (composition_pad_added_cb),
	  (sinkpad_event_probe), (sinkpad_buffer_probe),
	  (videotest_in_bin_gnl_src), (GST_START_TEST), (gnonlin_suite):
	  I have to admit the tests were... really borked.
	  Now they're much more sensitive.

2006-04-25 15:44:10 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: Back to development cycle
	  Original commit message from CVS:
	  * configure.ac:
	  Back to development cycle

=== release 0.10.3 ===

2006-04-25 15:42:21 +0000  Edward Hervey <bilboed@bilboed.com>

	* NEWS:
	* configure.ac:
	  Releasing 0.10.3 "Birthday Cake"
	  Original commit message from CVS:
	  Releasing 0.10.3 "Birthday Cake"

2006-04-25 15:41:28 +0000  Edward Hervey <bilboed@bilboed.com>

	* ChangeLog:
	  I'm too lazy to comment this
	  Original commit message from CVS:
	  *** empty log message ***

2006-04-25 11:28:43 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlfilesource.c: First event sent in _prepare() should have the flush flag.
	  Original commit message from CVS:
	  * gnl/gnlfilesource.c: (gnl_filesource_prepare),
	  (gnl_filesource_send_event):
	  First event sent in _prepare() should have the flush flag.
	  Smells like a second paperbag release...

2006-04-21 16:35:27 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: Back to development cycle
	  Original commit message from CVS:
	  * configure.ac:
	  Back to development cycle

=== release 0.10.2 ===

2006-04-21 16:33:33 +0000  Edward Hervey <bilboed@bilboed.com>

	* ChangeLog:
	* NEWS:
	* common:
	* configure.ac:
	  Releasing 0.10.2 "... Y un cafe solo"
	  Original commit message from CVS:
	  Releasing 0.10.2 "... Y un cafe solo"

2006-04-10 12:05:52 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlobject.c: 'really' wrong state_change handling
	  Original commit message from CVS:
	  * gnl/gnlobject.c: (gnl_object_change_state):
	  'really' wrong state_change handling

2006-04-07 09:18:02 +0000  Edward Hervey <bilboed@bilboed.com>

	  COPYING: Convert all remaining files to be coherent with the change to LGPL licensing.
	  Original commit message from CVS:
	  * COPYING:
	  Convert all remaining files to be coherent with the change to LGPL
	  licensing.

2006-04-07 09:14:17 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: Back to development (for good)
	  Original commit message from CVS:
	  * configure.ac:
	  Back to development (for good)

=== release 0.10.1 ===

2006-04-06 17:03:33 +0000  Thomas Vander Stichele <thomas@apestaart.org>

	* ChangeLog:
	* NEWS:
	* RELEASE:
	* configure.ac:
	  releasing 0.10.1
	  Original commit message from CVS:
	  releasing 0.10.1

2006-04-06 16:53:51 +0000  Thomas Vander Stichele <thomas@apestaart.org>

	* po/Makefile.in.in:
	* po/Rules-quot:
	* po/boldquot.sed:
	* po/en@boldquot.header:
	* po/en@quot.header:
	* po/insert-header.sin:
	* po/quot.sed:
	* po/remove-potcdate.sin:
	  remove po dir
	  Original commit message from CVS:
	  remove po dir

2006-04-06 15:47:50 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: back to development
	  Original commit message from CVS:
	  * configure.ac:
	  back to development

2006-04-06 15:45:22 +0000  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	  idiotic cicl
	  Original commit message from CVS:
	  idiotic cicl

2006-04-06 15:42:00 +0000  Edward Hervey <bilboed@bilboed.com>

	* ChangeLog:
	* common:
	  I'm too lazy to comment this
	  Original commit message from CVS:
	  *** empty log message ***

2006-04-05 17:46:30 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: 0.10.0.11 pre-release
	  Original commit message from CVS:
	  * configure.ac:
	  0.10.0.11 pre-release

2006-04-05 17:45:37 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: more memleak fixes.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (gnl_composition_finalize),
	  (gnl_composition_handle_message), (gnl_composition_change_state),
	  (gnl_composition_add_object), (gnl_composition_remove_object):
	  more memleak fixes.
	  * gnl/gnlsource.c: (gnl_source_dispose), (gnl_source_finalize):
	  more debug.
	  * tests/check/simple.c: (GST_START_TEST), (gnonlin_suite):
	  Add more debug and refcount checks.

2006-04-05 13:47:07 +0000  Edward Hervey <bilboed@bilboed.com>

	* tests/check/Makefile.am:
	  non debug, makes thomasvs blood pressure go up too quickly... and makes the buildbot go crazy too.
	  Original commit message from CVS:
	  non debug, makes thomasvs blood pressure go up too quickly... and makes the buildbot go crazy too.

2006-04-05 13:32:00 +0000  Edward Hervey <bilboed@bilboed.com>

	* tests/check/Makefile.am:
	  debug
	  Original commit message from CVS:
	  debug

2006-04-05 13:10:17 +0000  Edward Hervey <bilboed@bilboed.com>

	  tests/check/Makefile.am: Increasing timeout for tests since we're asking a lot
	  Original commit message from CVS:
	  * tests/check/Makefile.am:
	  Increasing timeout for tests since we're asking a lot

2006-04-05 13:03:53 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Only force state change in (update_pipeline) when not being called from state_change().
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (ready_and_lock_child_state),
	  (gnl_composition_handle_message), (handle_seek_event),
	  (gnl_composition_change_state), (update_pipeline),
	  (object_start_changed), (object_stop_changed),
	  (object_priority_changed), (object_active_changed),
	  (gnl_composition_add_object), (gnl_composition_remove_object):
	  Only force state change in (update_pipeline) when not being called from
	  state_change().
	  Properly emit EOS/SEGMENT_DONE at the end, but don't emit SEGMENT_DONE
	  for intermediate steps.
	  * gnl/gnlfilesource.c:
	  cleanup
	  * gnl/gnlobject.c: (gnl_object_ghost_pad_full),
	  (gnl_object_remove_ghost_pad):
	  more debug statements
	  * gnl/gnlsource.c: (gnl_source_class_init), (gnl_source_dispose),
	  (gnl_source_finalize), (element_pad_added_cb),
	  (element_pad_removed_cb), (ghost_seek_pad), (pad_blocked_cb),
	  (has_dynamic_srcpads), (gnl_source_add_element),
	  (gnl_source_remove_element), (gnl_source_send_event),
	  (gnl_source_change_state):
	  Make GnlSource more generic.
	  It now works with dynamic and non-dynamic source pads.
	  Eventually we'll be able to subclass GnlFileSource from GnlSource and
	  remove most of the duplicated code.
	  * tests/check/simple.c: (GST_START_TEST):
	  Removed wrong newsegment checks
	  Added lots more assertions

2006-04-05 09:10:51 +0000  Edward Hervey <bilboed@bilboed.com>

	  tests/check/Makefile.am: Remove buildbot debug craziness since I now know what the problem is.
	  Original commit message from CVS:
	  * tests/check/Makefile.am:
	  Remove buildbot debug craziness since I now know what the problem is.

2006-04-05 09:06:42 +0000  Christian Schaller <uraeus@gnome.org>

	* common:
	* gnonlin.spec.in:
	  removing uneeded stuff from the spec file
	  Original commit message from CVS:
	  removing uneeded stuff from the spec file

2006-04-04 15:25:27 +0000  Edward Hervey <bilboed@bilboed.com>

	  tests/check/simple.c: Let's do a simple link.
	  Original commit message from CVS:
	  * tests/check/simple.c: (composition_pad_added_cb):
	  Let's do a simple link.

2006-04-04 14:54:42 +0000  Edward Hervey <bilboed@bilboed.com>

	  tests/check/Makefile.am: GST_DEBUG=*:4
	  Original commit message from CVS:
	  * tests/check/Makefile.am:
	  GST_DEBUG=*:4

2006-04-04 14:49:09 +0000  Edward Hervey <bilboed@bilboed.com>

	  tests/check/Makefile.am: Higher debug level :(
	  Original commit message from CVS:
	  * tests/check/Makefile.am:
	  Higher debug level :(

2006-04-04 14:05:18 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: If new target and previous target are the same, don't retarget.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (gnl_composition_ghost_pad_set_target):
	  If new target and previous target are the same, don't retarget.

2006-04-04 12:37:52 +0000  Edward Hervey <bilboed@bilboed.com>

	  tests/check/Makefile.am: Forcing GST_DEBUG to figure out what's going wrong with the buildbots.
	  Original commit message from CVS:
	  * tests/check/Makefile.am:
	  Forcing GST_DEBUG to figure out what's going wrong with the buildbots.

2006-04-04 12:25:20 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlobject.c: Bug in converting media time over media_stop
	  Original commit message from CVS:
	  * gnl/gnlobject.c: (gnl_media_to_object_time):
	  Bug in converting media time over media_stop

2006-04-04 11:16:41 +0000  Edward Hervey <bilboed@bilboed.com>

	  tests/check/simple.c: Added new test to check start/duration/stop correctness for sources and compositions.
	  Original commit message from CVS:
	  * tests/check/simple.c: (GST_START_TEST), (gnonlin_suite):
	  Added new test to check start/duration/stop correctness for
	  sources and compositions.

2006-04-04 10:54:10 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlobject.c: Free the GnlPadPrivate once we have removed the pad.
	  Original commit message from CVS:
	  * gnl/gnlobject.c: (gnl_object_remove_ghost_pad):
	  Free the GnlPadPrivate once we have removed the pad.

2006-04-04 09:29:58 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: update_pipeline was returning the wrong information.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (update_pipeline):
	  update_pipeline was returning the wrong information.
	  It now returns FALSE only if there was an error updating the pipeline.
	  * tests/check/simple.c: (GST_START_TEST):
	  The test fails if the state_change() DOES return FAILURE.

2006-04-03 13:32:23 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: New pre-release (0.10.0.10).
	  Original commit message from CVS:
	  * configure.ac:
	  New pre-release (0.10.0.10).
	  Required version of gstreamer core/-base is 0.10.4.
	  * tests/check/simple.c: (gnonlin_suite):
	  Only run the tests with core > 0.10.4.0

2006-04-03 11:25:40 +0000  Edward Hervey <bilboed@bilboed.com>

	  tests/check/simple.c: When the pipeline is set to NULL, on slow/loaded systems the pipeline might not have reached th...
	  Original commit message from CVS:
	  * tests/check/simple.c: (GST_START_TEST):
	  When the pipeline is set to NULL, on slow/loaded systems the pipeline
	  might not have reached that state yet when checking for the refcount
	  of the pipeline/bus. We now check that refcount is between 1 and 2 now.

2006-04-03 09:51:48 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/: Indent the source code using gstreamer/tools/gst-indent
	  Original commit message from CVS:
	  * gnl/gnl.c: (plugin_init):
	  * gnl/gnlcomposition.c: (gnl_composition_class_init),
	  (hash_value_destroy), (gnl_composition_init),
	  (gnl_composition_dispose), (gnl_composition_finalize),
	  (unlock_child_state), (ready_and_lock_child_state),
	  (gnl_composition_reset), (gnl_composition_handle_message),
	  (priority_comp), (have_to_update_pipeline), (get_new_seek_event),
	  (handle_seek_event), (gnl_composition_event_handler),
	  (gnl_composition_ghost_pad_set_target), (get_stack_list),
	  (get_clean_toplevel_stack), (get_src_pad),
	  (gnl_composition_prepare), (gnl_composition_change_state),
	  (objects_start_compare), (objects_stop_compare),
	  (update_start_stop_duration), (no_more_pads_object_cb),
	  (compare_relink_stack), (update_pipeline), (object_start_changed),
	  (object_stop_changed), (object_priority_changed),
	  (object_active_changed), (object_pad_removed),
	  (gnl_composition_add_object), (gnl_composition_remove_object):
	  * gnl/gnlcomposition.h:
	  * gnl/gnlfilesource.c: (gnl_filesource_class_init),
	  (compare_src_pad), (get_valid_src_pad), (ghost_seek_pad),
	  (pad_blocked_cb), (decodebin_new_pad_cb),
	  (decodebin_pad_removed_cb), (gnl_filesource_init),
	  (gnl_filesource_dispose), (gnl_filesource_finalize),
	  (gnl_filesource_prepare), (gnl_filesource_send_event),
	  (gnl_filesource_set_property), (gnl_filesource_get_property):
	  * gnl/gnlfilesource.h:
	  * gnl/gnlobject.c: (gnl_object_dispose), (ghostpad_event_function),
	  (control_internal_pad), (ghostpad_link_function),
	  (ghostpad_unlink_function), (gnl_object_change_state):
	  * gnl/gnlobject.h:
	  * gnl/gnloperation.c: (gnl_operation_class_init),
	  (gnl_operation_init):
	  * gnl/gnloperation.h:
	  * gnl/gnlsource.c: (gnl_source_class_init), (gnl_source_init),
	  (gnl_source_dispose), (gnl_source_finalize), (compare_src_pad),
	  (get_valid_src_pad), (no_more_pads_in_child),
	  (gnl_source_add_element), (gnl_source_remove_element):
	  * gnl/gnlsource.h:
	  Indent the source code using gstreamer/tools/gst-indent

2006-04-03 08:49:17 +0000  Thomas Vander Stichele <thomas@apestaart.org>

	  clean up like the other modules
	  Original commit message from CVS:
	  * configure.ac:
	  * gnl/Makefile.am:
	  * gnl/gnl.c:
	  clean up like the other modules

2006-03-31 17:16:43 +0000  Edward Hervey <bilboed@bilboed.com>

	  tests/check/simple.c: more checking.
	  Original commit message from CVS:
	  * tests/check/simple.c: (GST_START_TEST):
	  more checking.

2006-03-31 17:01:48 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: Add debug, valgrind and gcov. Remove c++/malloc cruft
	  Original commit message from CVS:
	  * configure.ac:
	  Add debug, valgrind and gcov. Remove c++/malloc cruft
	  * gnl/gnlcomposition.c: (hash_value_destroy),
	  (gnl_composition_dispose), (gnl_composition_finalize),
	  (unlock_child_state), (ready_and_lock_child_state),
	  (gnl_composition_reset), (gnl_composition_handle_message),
	  (gnl_composition_change_state), (update_pipeline),
	  (object_pad_removed), (gnl_composition_add_object):
	  Handle pads being removed on controlled objects, and remove the
	  composition ghostpad if the object is the top-level one.
	  Memleak fixes.
	  Properly lock/unlock the state of the childs between READY and PAUSED.
	  Properly return success or not in update_pipeline()
	  * gnl/gnlfilesource.c: (decodebin_pad_removed_cb):
	  Use gnl_object_remove_ghost_pad ()
	  * gnl/gnlobject.c: (gnl_object_class_init), (gnl_object_dispose),
	  (translate_incoming_seek), (translate_outgoing_new_segment),
	  (internalpad_event_function), (control_internal_pad),
	  (ghostpad_link_function), (ghostpad_unlink_function),
	  (gnl_object_remove_ghost_pad), (gnl_object_change_state):
	  * gnl/gnlobject.h:
	  Add gnl_object_remove_ghost_pad() to properly remove the GnlPadPrivate
	  data from the ghostpads used in GnlObjects.
	  Memleak fixes.
	  * gnl/gnlsource.c: (gnl_source_remove_element):
	  * tests/check/Makefile.am:
	  * tests/check/simple.c: (composition_pad_added_cb),
	  (GST_START_TEST):

2006-03-30 11:07:04 +0000  Thomas Vander Stichele <thomas@apestaart.org>

	  use pluginsdir exposed by core and base .pc files to find elements like videotestsrc and fakesink
	  Original commit message from CVS:
	  * Makefile.am:
	  * configure.ac:
	  * tests/check/Makefile.am:
	  use pluginsdir exposed by core and base .pc files to find
	  elements like videotestsrc and fakesink

2006-03-30 10:16:26 +0000  Edward Hervey <bilboed@bilboed.com>

	  autogen.sh: Fix up autogen.sh for common/ since we're now in gstreamer cvs.
	  Original commit message from CVS:
	  * autogen.sh:
	  Fix up autogen.sh for common/ since we're now in gstreamer cvs.

2006-03-30 10:10:23 +0000  Edward Hervey <bilboed@bilboed.com>

	  Makefile.am: test/directory is gone
	  Original commit message from CVS:
	  * Makefile.am:
	  test/directory is gone

2006-03-30 09:55:39 +0000  Thomas Vander Stichele <thomas@apestaart.org>

	* .gitignore:
	* tests/Makefile.am:
	* tests/check/.gitignore:
	  ignore more
	  Original commit message from CVS:
	  ignore more

2006-03-30 09:54:31 +0000  Thomas Vander Stichele <thomas@apestaart.org>

	* test/.gitignore:
	* test/Makefile.am:
	* test/composition.c:
	* test/composition2.c:
	* test/dynamic1.c:
	* test/dynamic2.c:
	* test/group.c:
	* test/layertest.c:
	* test/layertest2.c:
	* test/layertest3.c:
	* test/layertest4.c:
	* test/pipelines.c:
	* test/pipelines.h:
	* test/simple.c:
	* test/simple1.c:
	* test/simple2.c:
	* test/simple3.c:
	* test/simple4.c:
	* test/simple5.c:
	* test/sourcetest1.c:
	* test/sourcetest2.c:
	* test/sourcetest3.c:
	* test/sourcetest4.c:
	* test/vlayertest.c:
	  test was moved
	  Original commit message from CVS:
	  test was moved

2006-03-30 09:53:56 +0000  Thomas Vander Stichele <thomas@apestaart.org>

	  make similar to the other gstreamer modules remove gettext stuff
	  Original commit message from CVS:
	  * Makefile.am:
	  * autogen.sh:
	  * configure.ac:
	  * po/Makefile.in.in:
	  * tests/check/Makefile.am:
	  * tests/check/simple.c: (composition_pad_added_cb),
	  (compare_segments), (sinkpad_event_probe), (videotest_gnl_src),
	  (segment_new), (GST_START_TEST), (gnonlin_suite), (main):
	  make similar to the other gstreamer modules
	  remove gettext stuff

2006-03-29 17:21:00 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: pre-release
	  Original commit message from CVS:
	  * configure.ac:
	  pre-release
	  * gnl/gnl.c:
	  Remove gnloperation for (pre-)release
	  * test/Makefile.am:
	  Fix for GST_PLUGIN_PATH since the tests use videotestsrc.
	  * test/simple.c: (gst_element_factory_make_or_warn),
	  (videotest_gnl_src), (GST_START_TEST), (gnonlin_suite):
	  Makes checks for element_factory_make()
	  Make sure we are looking for the proper values.
	  Comment out known broken test for (pre-)release

2006-03-29 10:06:33 +0000  Edward Hervey <bilboed@bilboed.com>

	  Makefile.am: whoops, trailing back-slash
	  Original commit message from CVS:
	  * Makefile.am:
	  whoops, trailing back-slash

2006-03-29 10:03:08 +0000  Edward Hervey <bilboed@bilboed.com>

	  Removing pkgconfig file generation. It's no longer needed since GNonLin are GStreamer plugins and check should be don...
	  Original commit message from CVS:
	  * Makefile.am:
	  * configure.ac:
	  * pkgconfig/Makefile.am:
	  * pkgconfig/gnonlin.pc.in:
	  Removing pkgconfig file generation. It's no longer needed since GNonLin
	  are GStreamer plugins and check should be done using the existing tools,
	  and/or at runtime.

2006-03-29 09:57:17 +0000  Edward Hervey <bilboed@bilboed.com>

	  Added testsuite system.
	  Original commit message from CVS:
	  * configure.ac:
	  * test/Makefile.am:
	  * test/simple.c: (composition_pad_added_cb), (compare_segments),
	  (sinkpad_event_probe), (videotest_gnl_src), (segment_new),
	  (GST_START_TEST), (gnonlin_suite), (main):
	  Added testsuite system.
	  Added first batch of test to test:
	  _ proper start/stop/duration settings/update on sources and compositions
	  _ proper data flow in various source combination

2006-03-28 16:38:53 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Add pad template.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (gnl_composition_class_init),
	  (gnl_composition_reset), (gnl_composition_event_handler),
	  (gnl_composition_ghost_pad_set_target), (get_clean_toplevel_stack),
	  (no_more_pads_object_cb), (update_pipeline):
	  Add pad template.
	  More debug.
	  * gnl/gnlfilesource.c: (decodebin_pad_removed_cb),
	  (gnl_filesource_init):
	  Add pad template
	  Reset the ghostpad if the decodebin pad gets removed.
	  * gnl/gnlobject.c: (gnl_object_class_init),
	  (gnl_object_cleanup_func), (gnl_object_cleanup),
	  (gnl_object_change_state):
	  Call GnlObject::prepare AFTER calling parent change_state, otherwise
	  pads won't have been re-activated, flushing flash won't have been
	  removed and seek on the pads will definitely not work.
	  Essential for re-using gnlobjects.
	  * gnl/gnlobject.h:
	  * gnl/gnlsource.c: (gnl_source_class_init):
	  Add pad template

2006-03-24 16:29:21 +0000  Wim Taymans <wim.taymans@gmail.com>

	  gnl/gnlobject.*: Re-indent, move uncommon code out of the main flow.
	  Original commit message from CVS:
	  * gnl/gnlobject.c: (gnl_object_class_init), (gnl_object_init),
	  (gnl_object_to_media_time), (gnl_media_to_object_time),
	  (gnl_object_covers_func), (gnl_object_covers),
	  (gnl_object_prepare_func), (gnl_object_prepare),
	  (gnl_object_release_pad), (translate_incoming_seek),
	  (translate_outgoing_seek), (translate_outgoing_new_segment),
	  (internalpad_event_function), (translate_incoming_position_query),
	  (internalpad_query_function), (internalpad_unlink_function),
	  (flush_hack_check), (ghostpad_event_function),
	  (ghostpad_query_function), (control_internal_pad),
	  (ghostpad_link_function), (ghostpad_unlink_function),
	  (gnl_object_ghost_pad_full), (gnl_object_ghost_pad),
	  (gnl_object_ghost_pad_no_target),
	  (gnl_object_ghost_pad_set_target),
	  (translate_message_segment_start),
	  (translate_message_segment_done), (gnl_object_handle_message),
	  (gnl_object_set_caps), (update_values), (gnl_object_set_property),
	  (gnl_object_get_property), (gnl_object_change_state):
	  * gnl/gnlobject.h:
	  Re-indent, move uncommon code out of the main flow.
	  * gnl/gnlsource.c: (gnl_source_init), (gnl_source_dispose),
	  (gnl_source_finalize), (no_more_pads_in_child),
	  (gnl_source_add_element), (gnl_source_remove_element):
	  * gnl/gnlsource.h:
	  cleanups.

2006-02-20 18:24:36 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Fix proper pipeline update when going from one segment to another (as opposed to seek changes).
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (gnl_composition_handle_message),
	  (get_new_seek_event), (get_stack_list), (get_clean_toplevel_stack),
	  (update_pipeline):
	  Fix proper pipeline update when going from one segment to another (as
	  opposed to seek changes).
	  More efficient _update_pipeline()
	  Lots of debug cleanups.
	  * gnl/gnlobject.c: (translate_incoming_position_query),
	  (ghostpad_query_function), (translate_message_segment_done):
	  Implement position query time-shifting.

2006-01-27 09:48:08 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: Added requirement for explicit --prefix setting, so that GNonLin doesn't get installed in a path that i...
	  Original commit message from CVS:
	  * configure.ac:
	  Added requirement for explicit --prefix setting, so that GNonLin
	  doesn't get installed in a path that isn't checked by the GStreamer
	  registry.

2006-01-18 10:38:51 +0000  Edward Hervey <bilboed@bilboed.com>

	  0.10.0.5 release "Doner con patatas"
	  Original commit message from CVS:
	  0.10.0.5 release "Doner con patatas"
	  * RELEASE:
	  * configure.ac:

2006-01-09 14:17:04 +0000  Christian Schaller <uraeus@gnome.org>

	* gnonlin.spec.in:
	  update for latest changes
	  Original commit message from CVS:
	  update for latest changes

2006-01-07 18:45:32 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: Remove useless checks
	  Original commit message from CVS:
	  * configure.ac:
	  Remove useless checks
	  * gnl/Makefile.am:
	  * gnl/gnl.c:
	  * gnl/gnl.h:
	  * gnl/gnltimeline.c:
	  * gnl/gnltimeline.h:
	  Remove gnltimeline.[ch]

2006-01-07 18:44:31 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: I got mix up with >= vs > and <= vs <
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (gnl_composition_handle_message):
	  I got mix up with >= vs > and <= vs <
	  * gnl/gnlobject.c: (translate_message_segment_done):
	  Handle the case where media_stop is GST_CLOCK_TIME_NONE

2005-12-23 15:31:56 +0000  Edward Hervey <bilboed@bilboed.com>

	  Add gnonlin.pc for programs depending on gnonlin.
	  Original commit message from CVS:
	  * Makefile.am:
	  * configure.ac:
	  * pkgconfig/Makefile.am:
	  * pkgconfig/gnonlin.pc.in:
	  Add gnonlin.pc for programs depending on gnonlin.

2005-12-21 18:47:19 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: Back to devel cycle
	  Original commit message from CVS:
	  * configure.ac:
	  Back to devel cycle

2005-12-21 18:37:28 +0000  Edward Hervey <bilboed@bilboed.com>

	  Releasing 0.10.0.2 beta release
	  Original commit message from CVS:
	  Releasing 0.10.0.2 beta release
	  * RELEASE:
	  * configure.ac:

2005-12-21 17:54:31 +0000  Edward Hervey <bilboed@bilboed.com>

	  configure.ac: Ignore po/ for the time being
	  Original commit message from CVS:
	  * configure.ac:
	  Ignore po/ for the time being
	  * gnl/Makefile.am:
	  Add gnltypes.h to the list of headers
	  Simplify the whole process
	  * gnl/gnl.c:
	  * gnl/gnl.h:
	  * gnl/gnlcomposition.h:
	  * gnl/gnlfilesource.h:
	  * gnl/gnlobject.h:
	  * gnl/gnloperation.h:
	  * gnl/gnlsource.h:
	  Use local include headers (<gnl/*.h> ==> "*.h")

2005-12-20 18:35:46 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlfilesource.c: Cleanup
	  Original commit message from CVS:
	  * gnl/gnlfilesource.c:
	  Cleanup
	  * gnl/gnlobject.c: (translate_message_segment_done):
	  Handle cases where the GST_SEGMENT_DONE has a format different from
	  GST_FORMAT_TIME. In those situations, bump the segment-done value to
	  object->media_start.

2005-12-20 15:46:56 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Update to use GstBin::handle_message virtual method.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (gnl_composition_class_init),
	  (gnl_composition_init), (gnl_composition_handle_message),
	  (objects_stop_compare):
	  Update to use GstBin::handle_message virtual method.
	  Fix **stupid** bug in stop_compare GCompareFunc.
	  * gnl/gnlobject.c: (gnl_object_class_init), (gnl_object_init),
	  (gnl_object_handle_message):
	  * gnl/gnlobject.h:
	  Update to use GstBin::handle_message virtual method

2005-12-14 14:12:43 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Returning the difference of 2 unsigned int, expecting the result to be negative is... somewhat ...
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (objects_start_compare),
	  (objects_stop_compare):
	  Returning the difference of 2 unsigned int, expecting the result
	  to be negative is... somewhat idiotic :)
	  * gnl/gnlcomposition.c: (gnl_composition_class_init),
	  (gnl_composition_add_object):
	  * gnl/gnlfilesource.c: (gnl_filesource_class_init):
	  * gnl/gnlobject.c: (gnl_object_class_init),
	  (gnl_object_covers_func), (translate_message_segment_start),
	  (translate_message_segment_done), (update_values):
	  * gnl/gnloperation.c: (gnl_operation_class_init):
	  * gnl/gnlsource.c: (gnl_source_class_init):
	  GNonLin debugging category is now BOLD BLUE.
	  Updated debugging statements with GST_TIME_FORMAT.

2005-12-12 11:00:30 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Whoops, don't unref too much.
	  Original commit message from CVS:
	  * gnl/gnlcomposition.c: (compare_relink_stack):
	  Whoops, don't unref too much.

2005-12-10 19:35:40 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlcomposition.c: Implement better event handling and fix memory leaks.
	  Original commit message from CVS:
	  reviewed by: <delete if not using a buddy>
	  * gnl/gnlcomposition.c: (gnl_composition_init),
	  (gnl_composition_reset), (gnl_composition_sync_handler),
	  (have_to_update_pipeline), (get_new_seek_event),
	  (handle_seek_event), (gnl_composition_event_handler),
	  (gnl_composition_ghost_pad_set_target), (objects_start_compare),
	  (objects_stop_compare), (no_more_pads_object_cb),
	  (compare_relink_stack), (update_pipeline),
	  (gnl_composition_add_object):
	  Implement better event handling and fix memory leaks.
	  * gnl/gnlfilesource.c: (gnl_filesource_prepare):
	  * gnl/gnlobject.c: (gnl_object_to_media_time),
	  (gnl_media_to_object_time), (translate_incoming_seek),
	  (translate_outgoing_seek), (translate_outgoing_new_segment),
	  (internalpad_event_function), (internalpad_query_function),
	  (internalpad_unlink_function), (ghostpad_event_function),
	  (control_internal_pad), (ghostpad_unlink_function),
	  (gnl_object_ghost_pad_set_target):
	  Implement better event handling

2005-12-08 14:46:22 +0000  Edward Hervey <bilboed@bilboed.com>

	  gnl/gnlfilesource.c: Do this hack from another thread.
	  Original commit message from CVS:
	  * gnl/gnlfilesource.c: (pad_blocked_cb):
	  Do this hack from another thread.