File: ChangeLog

package info (click to toggle)
gstreamer0.10-editing-services 0.10.1-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 5,004 kB
  • ctags: 2,595
  • sloc: ansic: 12,993; sh: 11,678; perl: 1,620; makefile: 779; python: 340; xml: 83
file content (5574 lines) | stat: -rw-r--r-- 171,909 bytes parent folder | download
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
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
=== release 0.10.1 ===

2011-01-20  Edward Hervey <bilboed@bilboed.com>

	* configure.ac:
	  releasing 0.10.1, "This is Scandinavian one-o-one"

2011-01-18 19:06:45 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/random/design:
	  random: Update goals/features document
	  So that everybody can know what features we want.

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

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

2011-01-17 13:59:44 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tools/ges-launch.c:
	  ges-launch: Set restriction on video profile if present

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

	* tools/ges-launch.c:
	  ges-launch: Remove dead code and make functions/variables static

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

	* tools/ges-launch.c:
	  ges-launch: Fix and cleanup enum listing
	  It wasn't displaying anything lately.

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

	* configure.ac:
	  0.10.0.3 pre-release

2011-01-11 16:57:45 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* tools/.gitignore:
	* tools/Makefile.am:
	  ges-launch: Add GStreamer major/minor version to the executable filename
	  https://bugzilla.gnome.org/show_bug.cgi?id=639222

2011-01-11 18:14:41 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-formatter.c:
	* ges/ges-keyfile-formatter.c:
	  ges: Fix more ges_timeline_get_layers() usage memory leaks

2011-01-11 17:19:54 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* ges/Makefile.am:
	* ges/ges-internal.h:
	* ges/ges.c:
	  ges: Don't install ges-internal.h and hide the GES debug category symbols
	  Fixes bug #639219.

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

	* ges/ges-utils.c:
	  ges-utils: minor doc update

2011-01-11 16:32:56 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* ges/Makefile.am:
	  ges: Only export symbols starting with ges_ or GES_
	  https://bugzilla.gnome.org/show_bug.cgi?id=639218

2011-01-11 16:35:05 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* ges/ges-timeline.c:
	* ges/ges-track-object.c:
	  ges: Mark some private symbols static
	  https://bugzilla.gnome.org/show_bug.cgi?id=639218

2011-01-11 15:32:51 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* configure.ac:
	  configure: Require G-I 0.9.6 for the --identifier-prefix parameter

2011-01-11 15:29:01 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* pkgconfig/gst-editing-services-uninstalled.pc.in:
	* pkgconfig/gst-editing-services.pc.in:
	  pkg-config: Require gstreamer-controller and gstreamer-pbutils
	  Their headers are included by public GES headers

2011-01-11 15:26:08 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* configure.ac:
	  configure: Add parameter to select GTK+ version to use and default to 2.0

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

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

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

	* common:
	  Automatic update of common submodule
	  From 8b72fde to e572c87

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

	* common:
	  common: Update to current master

2011-01-10 16:50:51 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  TimelinePipeline: minor doc fix

2011-01-10 16:50:41 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/Makefile.am:
	  docs: Fix image inclusion

2011-01-10 15:49:42 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

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

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

	* docs/libs/Makefile.am:
	  docs: Fix for uploading docs

2011-01-10 14:28:35 +0100  Thibault Saunier <thibault.saunier@collabora.co.uk>

	* ges/ges-formatter.c:
	* ges/ges-keyfile-formatter.c:
	* ges/ges-timeline-file-source.c:
	* ges/ges-timeline-layer.c:
	* ges/ges-timeline-object.c:
	* ges/ges-timeline-standard-transition.c:
	* ges/ges-timeline-test-source.c:
	* ges/ges-timeline-text-overlay.c:
	* ges/ges-timeline-title-source.c:
	* ges/ges-timeline.c:
	* ges/ges-track-audio-test-source.c:
	* ges/ges-track-audio-transition.c:
	* ges/ges-track-filesource.c:
	* ges/ges-track-image-source.c:
	* ges/ges-track-object.c:
	* ges/ges-track-text-overlay.c:
	* ges/ges-track-text-overlay.h:
	* ges/ges-track-title-source.c:
	* ges/ges-track-video-test-source.c:
	* ges/ges-track-video-transition.c:
	* ges/ges-track.c:
	  docs: Document all the undocumented public functions

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

	* ges/ges-track-object.c:
	  TrackObject: Small cleanup

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

	* ges/ges-track-object.c:
	  TrackObject: Remove deprecated FIXME
	  You just need to connect to the notify signal to get updates

2011-01-10 11:18:27 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/ges/basic.c:
	  tests: Unref the GList returned by ges_timeline_get_layers...
	  ... in addition to the content themselves

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

	* docs/libs/ges-sections.txt:
	  docs: Fixup the sections for missing/renamed/removed symbols

2011-01-10 11:12:55 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track.h:
	  Track: Mark as private the instance private structure

2011-01-10 11:12:38 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline.c:
	  Timeline: Fix documentation of return value

2011-01-08 16:01:31 +0100  Thibault Saunier <thibault.saunier@collabora.co.uk>

	* ges/ges-formatter.c:
	* ges/ges-formatter.h:
	  GESFormatter: Add private instance and move private variables to it

2011-01-08 15:25:22 +0100  Thibault Saunier <thibault.saunier@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-file-source.c:
	* ges/ges-timeline-file-source.h:
	* ges/ges-timeline.c:
	* tests/examples/ges-ui.c:
	  TimelineFileSource: Create instance private and move private variables to it
	  Fixe/Add getter and setters methods for those variables
	  Fixup documentation

2011-01-08 11:22:36 +0100  Thibault Saunier <thibault.saunier@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-formatter.c:
	* ges/ges-keyfile-formatter.c:
	* ges/ges-timeline.c:
	* ges/ges-timeline.h:
	* tests/check/ges/basic.c:
	* tests/check/ges/save_and_load.c:
	  Timeline: Add instance private and Move private variables to it
	  Fixe/Add getter methods to get those variables
	  Fixup documentation

2011-01-07 19:36:31 +0100  Thibault Saunier <thibault.saunier@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-test-source.c:
	* ges/ges-timeline-test-source.h:
	* tests/check/ges/backgroundsource.c:
	* tests/examples/ges-ui.c:
	  TimelineTestSource: Move private variables to instance private
	  Fixe/Add getter and setter methods for those variables
	  Fixup documentation

2011-01-07 14:37:56 +0100  Thibault Saunier <thibault.saunier@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-text-overlay.c:
	* ges/ges-timeline-text-overlay.h:
	* ges/ges-track-text-overlay.c:
	  TimelineTextOverlay: Move private variables to instance private
	  Fixe/Add getter and setter methods for those variables
	  Fixup documentation

2011-01-07 13:48:53 +0100  Thibault Saunier <thibault.saunier@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-title-source.c:
	* ges/ges-timeline-title-source.h:
	* tests/examples/ges-ui.c:
	  TimelineTitleSource: Move private variables to instance private
	  Fixe/Add getter and setters methods for those variables
	  Fixup documentation

2011-01-06 16:59:52 +0100  Thibault Saunier <thibault.saunier@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-track-audio-test-source.c:
	* ges/ges-track-audio-test-source.h:
	* tests/check/ges/backgroundsource.c:
	  TrackAudioTestSource: Move private variables to instance private
	  Add getter methods to get those variables
	  Fixup documentation

2011-01-06 16:35:20 +0100  Thibault Saunier <thibault.saunier@collabora.co.uk>

	* ges/ges-track-audio-transition.c:
	* ges/ges-track-audio-transition.h:
	  TrackAudioTransition: : Move private variables to instance private

2011-01-06 15:35:42 +0100  Thibault Saunier <thibault.saunier@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-track-text-overlay.c:
	* ges/ges-track-text-overlay.h:
	* tests/check/ges/overlays.c:
	* tests/check/ges/text_properties.c:
	  TrackTextOverlay: Move private variables to instance private
	  Add getter methods to get those variables
	  Add/Fixup documentation

2011-01-08 01:40:18 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* tests/check/Makefile.am:
	  test: make unit tests compile and work in uninstalled setup

2011-01-08 01:36:13 +0000  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* configure.ac:
	* ges/Makefile.am:
	  gobject-introspection: fix g-i build for uninstalled setup
	  Requires gst-plugins-base git (> 0.10.31.2) to actually work.

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

	* ges/ges-enums.c:
	* ges/ges-timeline-standard-transition.c:
	  enums: Fix transition enum
	  Leftovers from when we were using the old name

2011-01-06 12:04:53 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-track-title-source.c:
	* ges/ges-track-title-source.h:
	* tests/check/ges/titles.c:
	  TrackTitleSource: Move private variables to instance private
	  Add getter methods to get those variables
	  Add/Fixup documentation

2011-01-06 11:30:26 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	* ges/ges-timeline-pipeline.h:
	  TimelinePipeline: Fix thumbnail method docs and arguments
	  The provided gchar* aren't modified

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

	* docs/libs/ges-sections.txt:
	* ges/ges-track-video-test-source.c:
	* ges/ges-track-video-test-source.h:
	* tests/check/ges/backgroundsource.c:
	  TrackVideoTestSource: Move private data to instance private
	  Add a getter for the pattern
	  Document methods

2011-01-06 10:55:37 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-standard-transition.c:
	* ges/ges-track-video-transition.c:
	* ges/ges-track-video-transition.h:
	* tests/check/ges/transition.c:
	  TrackVideoTransition: Move private variable to instance private
	  Also add/fixup methods to get/set the transition type and document them.

2011-01-06 10:55:06 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  TimelinePipeline: Updates for pbutils API change

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

	* configure.ac:
	  configure.ac: Require core git

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

	* ges/ges-track-audio-transition.c:
	  GESTrackAudioTransition: Fix empty if() body

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

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: Fix usage of encodebin
	  The property name is now avoid-reencoding

2010-12-20 12:02:40 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline.c:
	  GESTimeline: minor cleanup

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

	* ges/ges-timeline-layer.c:
	* ges/ges-timeline-object.c:
	* ges/ges-timeline-object.h:
	* tests/check/ges/basic.c:
	* tests/check/ges/layer.c:
	  GESTimelineObject: Subclass from GInitiallyUnowned
	  The floating reference will be owned by the Layer

2010-12-20 12:00:06 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-layer.c:
	* ges/ges-timeline-layer.h:
	* ges/ges-timeline.c:
	* tests/check/ges/layer.c:
	  GESTimelineLayer: Subclass from GInitiallyUnowned
	  The floating reference will be owned by the Timeline

2010-12-20 11:58:21 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	* ges/ges-track.c:
	  GESTrackObject: Subclass from GInitiallyUnowned
	  The floating reference will be owned by the Track

2010-12-20 11:56:37 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-object.c:
	* tests/check/ges/basic.c:
	* tests/check/ges/filesource.c:
	  TimelineObject: Hold a reference to the controlled TrackObject

2010-12-20 11:38:31 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/ges/backgroundsource.c:
	* tests/check/ges/basic.c:
	* tests/check/ges/filesource.c:
	* tests/check/ges/layer.c:
	* tests/check/ges/overlays.c:
	* tests/check/ges/save_and_load.c:
	* tests/check/ges/simplelayer.c:
	* tests/check/ges/text_properties.c:
	* tests/check/ges/timelineobject.c:
	* tests/check/ges/titles.c:
	* tests/check/ges/transition.c:
	  tests: Put clearer names on tests
	  Makes it easier to figure out which test failed :)

2010-12-18 11:40:19 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* common:
	  Update common submodule

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

	* ges/ges-timeline-object.c:
	* ges/ges-track-object.c:
	  GES*Object: only use g_object_notify_by_pspec if available

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

	* ges/ges-track-object.c:
	  GESTrackObject: Remove unused quarks

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

	* configure.ac:
	  configure.ac: Require GLib 2.22
	  Same requirement as for GStreamer

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

	* ges/ges-simple-timeline-layer.c:
	* ges/ges-simple-timeline-layer.h:
	  GESSimpleTimelineLayer: reverting const-ification

2010-12-16 16:47:54 +0000  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/simplelayer.c:
	  GESSimpleTimelineLayer: add test for _index() method

2010-12-16 16:50:35 +0000  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-simple-timeline-layer.c:
	* ges/ges-simple-timeline-layer.h:
	  GESSimpleTimelineLayer: add _index() method

2010-12-16 19:29:14 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-object.c:
	* ges/ges-timeline-pipeline.c:
	* tests/check/ges/layer.c:
	* tests/check/ges/timelineobject.c:
	  GESTimelineObject: Add mapping/offset support [start/priority properties]
	  Allows moving independently (or not) timelineobjects and trackobjects and
	  have them synchronized with the offsets taken into account.
	  Right now only the start and priority properties are synchronized. The duration
	  and in-point properties will require more thoughts.

2010-12-16 19:24:52 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/random/mapping.txt:
	  random: Add explanation about TimelineObject<=>TrackObject mapping

2010-12-16 19:24:25 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	  GESTrackObject: priority offset is handled by the TimelineObject

2010-12-16 18:20:47 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-object.c:
	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	  GESTrackObject: re-factor property setting code
	  And make sure notifications are emitted at the right time

2010-12-16 16:27:26 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-object.c:
	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	* tests/check/ges/timelineobject.c:
	  GESTrackObject: Add a 'locked' property for position synchronization
	  And update all code using it

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

	* docs/libs/#ges-sections.txt#:
	* docs/libs/.#ges-sections.txt:
	* docs/libs/ges-decl-list.txt.bak:
	* docs/libs/ges-decl.txt.bak:
	  docs: Remove more bogus files

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

	* docs/libs/#ges-sections.txt#:
	* docs/libs/.#ges-sections.txt:
	* docs/libs/ges-decl-list.txt.bak:
	* docs/libs/ges-decl.txt.bak:
	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-file-source.c:
	* ges/ges-timeline-object.c:
	* ges/ges-timeline-test-source.c:
	* ges/ges-timeline-text-overlay.c:
	* ges/ges-timeline-title-source.c:
	* ges/ges-timeline.c:
	* ges/ges-track-audio-test-source.c:
	* ges/ges-track-audio-transition.c:
	* ges/ges-track-filesource.c:
	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	* ges/ges-track-video-test-source.c:
	* ges/ges-track-video-transition.c:
	* ges/ges-track.c:
	* tests/check/ges/backgroundsource.c:
	* tests/check/ges/filesource.c:
	* tests/check/ges/layer.c:
	* tests/check/ges/overlays.c:
	* tests/check/ges/timelineobject.c:
	* tests/check/ges/titles.c:
	* tests/check/ges/transition.c:
	* tests/examples/overlays.c:
	* tests/examples/test1.c:
	* tests/examples/text_properties.c:
	* tests/examples/transition.c:
	* tools/ges-launch.c:
	  GESTrackObject: Hide more variables and provide accessors for them

2010-12-16 12:46:48 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline.c:
	  GESTimeline: Remove useless variable

2010-12-16 12:41:26 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-keyfile-formatter.c:
	* ges/ges-timeline-layer.c:
	* ges/ges-timeline-layer.h:
	* ges/ges-timeline-pipeline.c:
	* tests/check/ges/layer.c:
	  GESTimelineLayer: Hide the object list and priority
	  Add needed setters/getters

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

	* docs/libs/ges-docs.sgml:
	* ges/ges-timeline-layer.c:
	* ges/ges-timeline-object.c:
	* ges/ges-timeline.c:
	  ges: Add more documentation and annotations
	  This should make GES gobject-introspection compliant now.

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

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-object.h:
	  TimelineObject: Put more function name in sync with others

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

	* ges/ges-simple-timeline-layer.c:
	* ges/ges-simple-timeline-layer.h:
	* tests/check/ges/simplelayer.c:
	  GESSimpleTimelineLayer: _nth() returns a const
	  The refcount isn't incremented.

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

	* docs/libs/ges-sections.txt:
	* ges/ges-keyfile-formatter.c:
	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	* ges/ges-track.c:
	* ges/ges-track.h:
	* tests/check/ges/basic.c:
	* tests/check/ges/save_and_load.c:
	  GESTrack: Make more properties private
	  And ensure exported symbols are properly documented and have
	  argument checking.

2010-12-15 15:50:44 +0000  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/simplelayer.c:
	  GESSimpleTimelineLayer: add test for _nth() method

2010-12-15 16:40:59 +0000  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	  GESSimpleTimelineLayer: ensure the object can be located before "object-added" fires

2010-12-15 15:51:23 +0000  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-simple-timeline-layer.c:
	* ges/ges-simple-timeline-layer.h:
	  GESSimpleTimelineLayer: add _nth() method

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

	* tests/check/ges/text_properties.c:
	  test: Disable the text_properties_in_layer test until it's properly implemented

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

	* .gitignore:
	* ges/.gitignore:
	* pkgconfig/.gitignore:
	  all: add/extend more .gitignore

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

	* Makefile.am:
	* configure.ac:
	* pkgconfig/Makefile.am:
	* pkgconfig/gst-editing-services-uninstalled.pc.in:
	* pkgconfig/gst-editing-services.pc.in:
	  Add .pc files

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

	* docs/libs/ges-decl-list.txt.bak:
	* docs/libs/ges-decl.txt.bak:
	  docs: Remove .bak files
	  Added by error when I added the doc system

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

	* docs/libs/ges-decl-list.txt.bak:
	* docs/libs/ges-decl.txt.bak:
	* docs/libs/ges-sections.txt:
	* docs/libs/ges.types:
	* ges/ges-custom-timeline-source.c:
	* ges/ges-custom-timeline-source.h:
	* ges/ges-timeline-file-source.c:
	* ges/ges-timeline-file-source.h:
	* ges/ges-timeline-object.c:
	* ges/ges-timeline-object.h:
	* ges/ges-timeline-text-overlay.c:
	* ges/ges-timeline-text-overlay.h:
	* ges/ges-timeline-title-source.c:
	* ges/ges-timeline-title-source.h:
	* ges/ges-track-title-source.c:
	* ges/ges-track-title-source.h:
	* ges/ges-track-video-transition.h:
	  ges: Don't shorten symbol names
	  It wasn't making us gain anything, and confuses the hell out of g-ir-scanner.

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

	* configure.ac:
	* ges/Makefile.am:
	  ges: Add gobject-introspection support

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

	* configure.ac:
	* ges/Makefile.am:
	* ges/ges-timeline-pipeline.c:
	* ges/ges-timeline-pipeline.h:
	* tests/examples/Makefile.am:
	* tests/examples/concatenate.c:
	* tests/examples/test4.c:
	* tests/examples/thumbnails.c:
	* tools/Makefile.am:
	* tools/ges-launch.c:
	  ges: Switch to encoding-profile API from base
	  Remove dependency on gst-convenience.

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

	* docs/random/mapping.txt:
	  random: Add notes about Track mapping

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

	* ges/ges-timeline-object.c:
	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	  GESTrackObject: Make base_priority/priority-offset a private field

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

	* docs/random/mapping.txt:
	  random: Add brainstorming about Timeline<=>Track object mapping

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

	* ges/ges-track-audio-test-source.c:
	* ges/ges-track-audio-transition.c:
	* ges/ges-track-image-source.c:
	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	* ges/ges-track-operation.c:
	* ges/ges-track-operation.h:
	* ges/ges-track-source.c:
	* ges/ges-track-source.h:
	* ges/ges-track-text-overlay.c:
	* ges/ges-track-title-source.c:
	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	* ges/ges-track-video-test-source.c:
	* ges/ges-track-video-transition.c:
	  GESTrackObject: Add create_element vmethod
	  API: GESTrackObjectClass::gnlobject_factorytype
	  API: GESTrackObjectClass::create_element
	  Most track objects are only specific by the contents of the gnlobject,
	  therefore move the 'create_element' vmethod which was already present
	  in some subclasses to the top-level class.
	  Also make the code more robust

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

	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	  GESTrackTransition: Make it a subclass of GESTrackOperation

2010-12-09 19:36:44 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-source.c:
	* ges/ges-timeline-source.h:
	* tests/check/ges/layer.c:
	* tests/check/ges/save_and_load.c:
	* tests/check/ges/simplelayer.c:
	* tests/check/ges/text_properties.c:
	  GESTimelineSource: Remove textoverlay properties
	  This will be made more generic by allowing any overlay/effect to
	  be put on any source object.

2010-12-09 18:53:29 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/random/lifecycle:
	  random: Add lifecycle document

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

	* tests/check/ges/basic.c:
	* tests/check/ges/layer.c:
	* tests/check/ges/simplelayer.c:
	* tests/check/ges/timelineobject.c:
	  tests: Make sure gst_bin_add succeeds
	  And detect when we're trying to add contents to a gnlsource which
	  already has something

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

	* docs/libs/ges-docs.sgml:
	* docs/libs/ges-sections.txt:
	* docs/libs/ges.types:
	* ges/Makefile.am:
	* ges/ges-enums.c:
	* ges/ges-enums.h:
	* ges/ges-simple-timeline-layer.c:
	* ges/ges-timeline-object.h:
	* ges/ges-timeline-pipeline.c:
	* ges/ges-timeline-standard-transition.c:
	* ges/ges-timeline-standard-transition.h:
	* ges/ges-timeline-transition.c:
	* ges/ges-timeline-transition.h:
	* ges/ges-track-operation.c:
	* ges/ges-track-transition.c:
	* ges/ges-track-video-transition.c:
	* ges/ges-track-video-transition.h:
	* ges/ges-types.h:
	* ges/ges.c:
	* ges/ges.h:
	* tests/check/ges/save_and_load.c:
	* tests/check/ges/simplelayer.c:
	* tests/check/ges/transition.c:
	* tests/examples/ges-ui.c:
	* tests/examples/transition.c:
	* tools/ges-launch.c:
	  GESTransition: Make it a base class and add GESTimelineStandardTransition
	  This is to ensure people can create their own Layer Transition subclass.
	  API : GESTimelineTransition is now GESTimelineStandardTransition

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

	* ges/ges-formatter.c:
	* ges/ges-timeline-object.c:
	* ges/ges-track-object.c:
	  ges: Make some classes abstract with G_DEFINE_ABSTRACT_TYPE

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

	* ges/ges-timeline-title-source.c:
	* ges/ges-timeline-transition.c:
	  ges: Avoid leaking a GList of GESTrackObject

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

	* ges/ges-custom-timeline-source.c:
	* ges/ges-keyfile-formatter.c:
	* ges/ges-simple-timeline-layer.c:
	* ges/ges-timeline-file-source.c:
	* ges/ges-timeline-layer.c:
	* ges/ges-timeline-object.c:
	* ges/ges-timeline-overlay.c:
	* ges/ges-timeline-source.c:
	* ges/ges-timeline-test-source.c:
	* ges/ges-timeline-text-overlay.c:
	* ges/ges-timeline-title-source.c:
	* ges/ges-timeline-transition.c:
	* ges/ges-track-audio-test-source.c:
	* ges/ges-track-filesource.c:
	* ges/ges-track-image-source.c:
	* ges/ges-track-operation.c:
	* ges/ges-track-source.c:
	* ges/ges-track-title-source.c:
	* ges/ges-track-transition.c:
	* ges/ges-track-video-test-source.c:
	  ges: Remove unused GObject vmethods

2010-12-09 14:25:22 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-docs.sgml:
	* docs/libs/ges-sections.txt:
	* docs/libs/ges.types:
	* ges/Makefile.am:
	* ges/ges-timeline-operation.c:
	* ges/ges-timeline-operation.h:
	* ges/ges-timeline-overlay.c:
	* ges/ges-timeline-overlay.h:
	* ges/ges-timeline-transition.c:
	* ges/ges-timeline-transition.h:
	* ges/ges-types.h:
	* ges/ges.h:
	  GESTimelineOperation: New abstract class for operations
	  This is a new class for all timeline objects that both produce and
	  consume data.
	  The existing subclasses of it are now:
	  * GESTimelineOverlay
	  * GESTimelineTransition

2010-12-09 12:53:07 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-object.c:
	* ges/ges-timeline-object.h:
	  GESTimelineObject: Clarify usage of create_track_object(s) by subclasses

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

	* ges/ges-timeline-source.c:
	  GESTimelineSource: Remove empty create_track_object vmethod
	  The parent class will check if it is present or not, and call
	  track_objects if needed.

2010-12-09 11:56:00 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-formatter.h:
	  GESFormatter: Hide the save/load vmethod from the docs
	  We need to deprecated them before API/ABI freeze

2010-12-08 16:09:35 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-custom-timeline-source.c:
	* ges/ges-timeline-source.c:
	* ges/ges-track-operation.h:
	* ges/ges-track-source.c:
	* ges/ges-track-source.h:
	  ges: Remove creators for base classes

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

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-source.c:
	* ges/ges-timeline-source.h:
	  GESTimelineSource: Remove _new() since it's a base class

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

	* docs/libs/ges-sections.txt:
	* ges/ges-custom-timeline-source.h:
	* ges/ges-formatter.c:
	* ges/ges-keyfile-formatter.h:
	* ges/ges-simple-timeline-layer.c:
	* ges/ges-simple-timeline-layer.h:
	* ges/ges-timeline-file-source.h:
	* ges/ges-timeline-layer.h:
	* ges/ges-timeline-object.h:
	* ges/ges-timeline-overlay.h:
	* ges/ges-timeline-pipeline.c:
	* ges/ges-timeline-pipeline.h:
	* ges/ges-timeline-source.h:
	* ges/ges-timeline-test-source.h:
	* ges/ges-timeline-text-overlay.h:
	* ges/ges-timeline-title-source.h:
	* ges/ges-timeline-transition.h:
	* ges/ges-timeline.c:
	* ges/ges-track-audio-test-source.h:
	* ges/ges-track-audio-transition.h:
	* ges/ges-track-filesource.h:
	* ges/ges-track-image-source.h:
	* ges/ges-track-object.h:
	* ges/ges-track-operation.h:
	* ges/ges-track-source.h:
	* ges/ges-track-text-overlay.h:
	* ges/ges-track-transition.h:
	* ges/ges-track-video-test-source.h:
	* ges/ges-track.h:
	  docs: A round of updates

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

	* docs/libs/ges-docs.sgml:
	  docs: expose the TrackImageSource docs

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

	* docs/libs/ges.types:
	  docs: Update ges.types with all types

2010-11-28 13:24:07 +0100  Thibault Saunier <thibault.saunier@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-simple-timeline-layer.c:
	* ges/ges-timeline-file-source.c:
	* ges/ges-timeline-layer.c:
	* ges/ges-timeline-object.c:
	* ges/ges-timeline-object.h:
	* ges/ges-timeline-source.c:
	* ges/ges-timeline-test-source.c:
	* ges/ges-timeline-text-overlay.c:
	* ges/ges-timeline-title-source.c:
	* ges/ges-timeline-transition.c:
	* ges/ges-timeline.c:
	* tests/check/ges/basic.c:
	* tests/check/ges/save_and_load.c:
	* tests/check/ges/simplelayer.c:
	* tests/examples/overlays.c:
	* tests/examples/text_properties.c:
	* tests/examples/transition.c:
	  GESTimelineObject: add private structure

2010-11-17 19:53:32 +0100  Thibault Saunier <tsaunier@gnome.org>

	* docs/libs/ges-sections.txt:
	* ges/ges-simple-timeline-layer.c:
	* ges/ges-simple-timeline-layer.h:
	* tests/examples/ges-ui.c:
	  GESSimpleTimelineLayer: add private structure

2010-12-04 19:54:13 +0100  Thibault Saunier <thibault.saunier@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-layer.c:
	* ges/ges-timeline-layer.h:
	* ges/ges-timeline-overlay.c:
	* ges/ges-timeline-overlay.h:
	* ges/ges-timeline-source.c:
	* ges/ges-timeline-source.h:
	* ges/ges-timeline-test-source.c:
	* ges/ges-timeline-test-source.h:
	* ges/ges-timeline-text-overlay.c:
	* ges/ges-timeline-text-overlay.h:
	* ges/ges-timeline-title-source.c:
	* ges/ges-timeline-title-source.h:
	* ges/ges-timeline-transition.c:
	* ges/ges-timeline-transition.h:
	* ges/ges-track-audio-test-source.c:
	* ges/ges-track-audio-test-source.h:
	* ges/ges-track-audio-transition.c:
	* ges/ges-track-audio-transition.h:
	* ges/ges-track-filesource.c:
	* ges/ges-track-filesource.h:
	* ges/ges-track-image-source.c:
	* ges/ges-track-image-source.h:
	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	* ges/ges-track-operation.c:
	* ges/ges-track-operation.h:
	* ges/ges-track-source.c:
	* ges/ges-track-source.h:
	* ges/ges-track-text-overlay.c:
	* ges/ges-track-text-overlay.h:
	* ges/ges-track-title-source.c:
	* ges/ges-track-title-source.h:
	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	* ges/ges-track-video-test-source.c:
	* ges/ges-track-video-test-source.h:
	* ges/ges-track-video-transition.c:
	* ges/ges-track-video-transition.h:
	* ges/ges-track.c:
	* ges/ges-track.h:
	  ges: Add instance private structures

2010-11-28 16:40:15 +0100  Thibault Saunier <thibault.saunier@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	* ges/ges-timeline-pipeline.h:
	  GESTimelinePipeline: add a private structure

2010-11-26 18:43:36 +0100  Thibault Saunier <thibault.saunier@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-custom-timeline-source.c:
	* ges/ges-custom-timeline-source.h:
	  GESCustomTimelineSource: add private structure

2010-12-02 19:47:23 +0000  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/save_and_load.c:
	  Tests: fix CMP_FAIL on 32-bit machines

2010-11-10 19:52:16 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/random/design:
	  docs: TODO idea dumping
	  Only the beginning

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

	* tests/check/ges/save_and_load.c:
	  tests: Make sure we specify guint64 with g_object_set arguments
	  Yup, had missed those because of weird macros :(

2010-12-01 12:16:37 +0100  Thibault Saunier <thibault.saunier@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	* tests/check/ges/simplelayer.c:
	  SimpleTimelineLayer: Remove bogus check and extend unit test to validate it

2010-12-02 11:54:03 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/ges/save_and_load.c:
	  tests: Make sure we specify guint64 with g_object_set arguments
	  Avoids crashers on 32bit machines

2010-11-29 13:24:13 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-custom-timeline-source.h:
	* ges/ges-formatter.h:
	* ges/ges-keyfile-formatter.h:
	* ges/ges-simple-timeline-layer.h:
	* ges/ges-timeline-file-source.h:
	* ges/ges-timeline-layer.h:
	* ges/ges-timeline-object.h:
	* ges/ges-timeline-overlay.h:
	* ges/ges-timeline-pipeline.h:
	* ges/ges-timeline-source.h:
	* ges/ges-timeline-test-source.h:
	* ges/ges-timeline-text-overlay.h:
	* ges/ges-timeline-title-source.h:
	* ges/ges-timeline-transition.h:
	* ges/ges-timeline.h:
	* ges/ges-track-audio-test-source.h:
	* ges/ges-track-audio-transition.h:
	* ges/ges-track-filesource.h:
	* ges/ges-track-image-source.h:
	* ges/ges-track-object.h:
	* ges/ges-track-operation.h:
	* ges/ges-track-source.h:
	* ges/ges-track-text-overlay.h:
	* ges/ges-track-title-source.h:
	* ges/ges-track-transition.h:
	* ges/ges-track-video-test-source.h:
	* ges/ges-track-video-transition.h:
	* ges/ges-track.h:
	* ges/ges-types.h:
	  ges: Add padding to all public structures
	  This will give us margin for API expansion without breaking ABI.
	  The ABI restriction will only come in place once we do the first
	  official release (i.e. 0.x.0).

2010-11-27 18:38:06 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* common:
	  Update common

2010-10-22 15:57:45 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	* tests/examples/ges-ui.glade:
	  ges-ui: allow enabling/disabling audio/video tracks

2010-10-11 11:53:35 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	* tests/examples/ges-ui.glade:
	  ges-ui: implement save as command in gtk demo

2010-10-11 11:38:11 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  ges-ui: implement load command

2010-10-11 11:37:51 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	* tests/examples/ges-ui.glade:
	  ges-ui: don't assume we always have 1 layer and two tracks

2010-10-08 12:32:15 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	* tests/examples/ges-ui.glade:
	  ges-ui: add new command, remove quit command (closing last window quits app)

2010-11-27 16:56:10 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/ges/simplelayer.c:
	  test: Fix typo in simplelayer test

2010-11-27 16:55:49 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/ges/save_and_load.c:
	  check: Small cleanup of the save/load test

2010-11-26 18:39:26 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-formatter.c:
	* ges/ges-formatter.h:
	* ges/ges-keyfile-formatter.c:
	  Formatter: Extend and fixup documentation

2010-11-26 18:38:49 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline.c:
	  Timeline: Add doc and more comments/fixmes

2010-11-27 18:11:56 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-formatter.c:
	  GESTimeline: Prevent saving timelines without any layers

2010-11-26 13:02:48 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-layer.c:
	  TimelineLayer: Add debug statement regarding priorities

2010-10-20 18:01:37 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-formatter.c:
	* ges/ges-formatter.h:
	* ges/ges-keyfile-formatter.h:
	  GESFormatter: fix a few typos in documention

2010-10-19 13:35:58 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline.c:
	  GESTimeline: add more fixmes

2010-10-07 16:52:51 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/save_and_load.c:
	  tests: add save->load test case

2010-10-07 16:51:38 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-keyfile-formatter.c:
	  GESKeyFileFormatter: use ges_formatter_get/set data

2010-10-07 14:55:14 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/save_and_load.c:
	  tests: use ges_formatter_{get,set}_data accessors in unit tests

2010-10-07 14:25:22 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-formatter.c:
	* ges/ges-formatter.h:
	  GESFormatter: Add data-related methods

2010-10-07 14:07:18 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/save_and_load.c:
	  tests: update unit tests

2010-10-07 13:49:15 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-docs.sgml:
	* docs/libs/ges-sections.txt:
	* docs/libs/ges.types:
	* ges/Makefile.am:
	* ges/ges-formatter.c:
	* ges/ges-formatter.h:
	* ges/ges-keyfile-formatter.c:
	* ges/ges-keyfile-formatter.h:
	* ges/ges-types.h:
	* ges/ges.h:
	  GESKeyFileFormatter: New GKeyFile GESFormatter

2010-09-24 19:31:53 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* tools/ges-launch.c:
	  tools: add project file support to ges-launch

2010-09-29 12:43:47 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline.c:
	* ges/ges-timeline.h:
	  GESTimeline: implementation of save_to/load_from uri

2010-09-21 15:39:07 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/Makefile.am:
	* tests/check/ges/.gitignore:
	* tests/check/ges/save_and_load.c:
	  tests: Add save/load tests

2010-09-13 16:21:15 -0700  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-docs.sgml:
	* docs/libs/ges-sections.txt:
	* docs/libs/ges.types:
	* ges/Makefile.am:
	* ges/ges-formatter.c:
	* ges/ges-formatter.h:
	* ges/ges-types.h:
	* ges/ges.h:
	  GESFormatter: Project file format support

2010-10-22 15:58:22 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline.c:
	  GESTimeline: set track state to NULL before removing from timeline

2010-10-07 12:29:05 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline.c:
	  GESTimeline: release timeline objects when a layer is removed

2010-10-22 14:02:29 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track.c:
	* ges/ges-track.h:
	  GESTrack: keep track of trackobjects and remove/release them in dispose

2010-10-22 14:01:34 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/basic.c:
	  tests: test for track removal while timeline contains timeline objects

2010-10-20 16:23:22 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/basic.c:
	  tests: test that adding tracks after adding layers works

2010-10-19 17:56:37 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/basic.c:
	  tests: unit test to check that objects in layers are properly added to the timeline

2010-09-22 12:32:47 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	  GESSimpleTimelineLayer: override get_objects () virtual method

2010-09-22 12:29:26 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-layer.c:
	* ges/ges-timeline-layer.h:
	  GESTimelineLayer: add get_objects virtual method

2010-10-20 18:00:24 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline.c:
	  GESTimeline: allow adding tracks after layers

2010-10-19 16:39:43 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline.c:
	  GESTimeline: add existing timeline objects when adding layers

2010-09-23 14:49:04 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges.c:
	  ges: ensure built-in timeline object classes are registered

2010-09-23 14:47:48 +0100  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline.c:
	  GESTimeline: remove layers before removing tracks in dispose ()

2010-11-25 14:03:07 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tools/ges-launch.c:
	  ges-launch: Gracefully handle missing properties

2010-11-25 14:02:26 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline.c:
	  Timeline: Remove unneeded variable

2010-11-25 14:01:15 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-object.c:
	  TimelineObject: Forgot a break in a switch/case

2010-11-23 18:24:38 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: Make sure playsink events are sent to all incoming streams
	  PlaySink will not send seek events to all incoming streams since it assumes that
	  they all come from the same source (like a file).
	  When used with multiple gnonlin compositions we need to make sure those seek events
	  are sent to all of them.

2010-11-23 17:34:07 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* .gitignore:
	  ges: Ignore more

2010-11-23 17:33:32 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

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

2010-10-23 17:38:31 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track-video-transition.c:
	  GesTrackVideoTransition: Prefer videomixer2 to videomixer
	  If present

2010-11-10 16:13:07 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* AUTHORS:
	* README:
	  AUTHORS/README: cleanup

2010-11-11 17:39:32 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tools/ges-launch.c:
	  ges-launch: g_print => g_printerr for relevant messages

2010-11-09 16:27:06 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/concatenate.c:
	  examples: Fix for latest GstDiscoverer API changes

2010-11-04 12:29:20 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* configure.ac:
	  configure.ac: Require GStreamer core/base 0.10.30.4

2010-11-04 12:28:46 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline.c:
	  GESTimeline: Change for updated GstDiscoverer API

2010-09-28 16:30:30 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* configure.ac:
	* ges/Makefile.am:
	  Add gstvideo in build dependencies

2010-09-23 18:39:01 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* common:
	  common: Update to master

2010-09-23 18:33:27 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* configure.ac:
	* docs/libs/Makefile.am:
	* ges/Makefile.am:
	* ges/ges-screenshot.c:
	* ges/ges-timeline.c:
	* ges/ges-timeline.h:
	* tests/check/Makefile.am:
	* tests/examples/Makefile.am:
	* tests/examples/concatenate.c:
	* tools/Makefile.am:
	  all: Changes for discoverer being merged upstream
	  Along with a whole bunch of Makefile fixups

2010-09-16 09:07:05 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tools/ges-launch.c:
	  ges-launch: Return 0 if no errors, else 1

2010-09-16 08:42:50 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* common:
	  Update common

2010-09-14 16:04:02 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* configure.ac:
	* docs/libs/ges-sections.txt:
	* ges/Makefile.am:
	* ges/ges-screenshot.c:
	* ges/ges-screenshot.h:
	* ges/ges-timeline-pipeline.c:
	* ges/ges-timeline-pipeline.h:
	* ges/ges-timeline.c:
	* tests/examples/concatenate.c:
	* tests/examples/test4.c:
	* tests/examples/thumbnails.c:
	* tools/ges-launch.c:
	  Update for factorylist/convertframe being merged to gst core/base

2010-08-20 12:40:05 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* configure.ac:
	* ges/Makefile.am:
	* ges/ges-screenshot.c:
	* ges/ges-timeline-pipeline.h:
	* ges/ges-timeline.c:
	* tests/examples/concatenate.c:
	* tests/examples/test4.c:
	* tests/examples/thumbnails.c:
	* tools/ges-launch.c:
	  Update to moved gst-convenience

2010-09-02 18:19:51 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* common:
	  common: Update to latest version

2010-08-05 18:32:17 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  relax restrictions on adding transitions
	  We don't need these any more: the valid property tells us whether it is safe
	  to go to GST_STATE_PLAYING or not.

2010-08-05 18:11:49 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  move a callback into the proper section of the file

2010-08-05 17:50:48 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  fix bug in time format regex

2010-08-05 17:48:07 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  show duration text entry for all object types

2010-08-05 16:19:35 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	* tests/examples/ges-ui.glade:
	  connect to delete event instead of destroy

2010-08-05 16:14:09 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.glade:
	  hide empty menus

2010-08-05 16:12:45 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  ignore some UI signals when selection changes

2010-08-05 15:46:34 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  disable playback when layer is in invalid state

2010-08-05 15:46:02 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	* tests/check/ges/simplelayer.c:
	  layer is also invalid when there are transitoins at the beginning/end

2010-08-05 15:21:57 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	* ges/ges-simple-timeline-layer.h:
	* tests/check/ges/simplelayer.c:
	  add vaid property and unit tests

2010-08-05 15:21:04 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	  add doc comment for object-moved signal

2010-08-05 12:52:13 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  update list store layer emits object-moved

2010-08-05 12:51:31 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/simplelayer.c:
	  add unit tests for 'object-moved' signal

2010-08-05 12:50:19 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	* ges/ges-simple-timeline-layer.h:
	* ges/gesmarshal.list:
	  add object-moved signal to simple timeline layer

2010-08-04 18:49:19 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  implement move up/down commands

2010-08-04 18:31:34 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	* tests/examples/ges-ui.glade:
	  connect to move_{up,down actions

2010-08-04 18:25:24 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  also disallow moving past the start or end of timeline

2010-08-04 18:02:14 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  can move only when exactly one clip is selected (and not in playback/paused)

2010-08-04 17:48:12 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.glade:
	  add move up/down actions

2010-08-04 17:43:35 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.glade:
	  re-arrange tool-bar buttons

2010-08-04 17:34:51 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  don't allow changes to timeline if we're paused

2010-08-04 17:27:01 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	* tests/examples/ges-ui.glade:
	  implement the stop button

2010-08-04 17:17:59 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	* tests/examples/ges-ui.glade:
	  add stop button

2010-08-04 16:57:18 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  code clean-up and comments

2010-08-04 16:36:15 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  eliminate unecessary function prototypes

2010-08-04 16:26:39 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  move UI callbacks to end of file

2010-08-04 16:25:00 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  clean up application struct

2010-08-03 19:53:34 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.glade:
	  more xml tweaks

2010-08-03 19:42:35 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  don't connect to selected objects unless selection is homogenous

2010-08-03 19:38:13 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.glade:
	  UI layout tweaks

2010-08-03 19:31:23 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	* tests/examples/ges-ui.glade:
	  only allow transitions to be added when the last object isn't a transition

2010-08-03 16:19:01 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  use a private struct with get_selection_foreach

2010-08-03 15:59:38 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  disable add_transition

2010-08-03 15:54:25 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  get add_transition action from xml

2010-08-03 15:51:29 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.glade:
	  menu/toolbar for adding transitions

2010-08-03 15:40:44 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  allow multiple selections

2010-08-03 15:17:25 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  set pipeline to ready on EOS

2010-08-03 15:03:24 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  make sure all actions that mutate timeline are disabled during playback

2010-08-03 14:58:15 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  set frequency property when spin button changed

2010-08-03 14:53:22 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  update frequency spin button when selection changed

2010-08-03 14:46:21 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.glade:
	  add frequency and volume widgets, with signal handlers

2010-08-03 14:43:41 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  update source volume when slider is moved

2010-08-03 14:39:56 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  update volume slider when volume changes

2010-08-03 14:38:42 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  get freq/volume widgets

2010-08-02 19:06:06 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  implement background widget

2010-08-02 17:26:24 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  fill backround type table from enum values

2010-08-02 17:25:26 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  adjust visibility calculations

2010-08-02 17:24:24 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  allow adding test sources

2010-08-02 17:22:39 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  get background widgets from xml

2010-08-02 17:21:36 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.glade:
	  test sources

2010-07-27 15:25:20 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	* tests/examples/ges-ui.glade:
	  add text box to set durations from formatted strings

2010-07-26 20:40:06 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  set sate of pipeline to NULL prior to exit

2010-07-23 19:14:21 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  update text property from text widget

2010-07-23 18:59:40 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  call ges_simple_timeline_layer_add_object intead of base method

2010-07-23 18:59:11 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  completely hide properties widgets when nothign is selected

2010-07-23 18:56:48 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  refactor connecto_to_* family of functions

2010-07-23 18:43:37 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  connect to text property widgets

2010-07-23 18:42:53 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.glade:
	  add widgets to UI for editing text properties

2010-07-23 18:42:13 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  add signal handlers for text properties

2010-07-23 18:38:46 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  keep track of the type of selected objects

2010-07-23 18:36:54 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  add title source when action activates

2010-07-23 10:58:11 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.glade:
	  add text properties to UI

2010-07-22 18:07:26 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  allow multiple files to be added

2010-07-22 17:58:00 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  use file-chooser dialog when adding files

2010-07-22 13:13:20 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	* tests/examples/ges-ui.glade:
	  disable playback when there's nothing in the timeline

2010-07-22 12:54:01 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  disable add_file during playback

2010-07-22 12:51:07 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  disable delete during playback

2010-07-22 12:48:34 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  disable properties during playback

2010-07-22 12:43:13 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  update state from bus; set button icon from playback state

2010-07-22 12:20:59 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  set the action sensitivity, not the menu item

2010-07-22 12:17:24 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	* tests/examples/ges-ui.glade:
	  toggle playback when button clicked

2010-07-22 12:08:28 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  fix signal handler signatures

2010-07-22 12:05:09 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.glade:
	  add play action/controls

2010-07-22 11:00:15 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	* tests/examples/ges-ui.glade:
	  add toolbar; connect to action signals instead of menu items directly

2010-07-22 10:18:41 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  also set state of delete menu item

2010-07-21 20:21:01 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	* tests/examples/ges-ui.glade:
	  update in-point from in-point slider

2010-07-21 19:02:09 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.glade:
	  add in-point slider

2010-07-21 19:01:33 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	* tests/examples/ges-ui.glade:
	  format duration nicely

2010-07-21 18:15:56 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  set slider range before setting duration

2010-07-21 18:15:06 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  remove some unneeded function protos

2010-07-21 18:03:06 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	* tests/examples/ges-ui.glade:
	  slider updates duration of selected object now

2010-07-21 17:00:35 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  connect to duration and max-duration changed of filesources

2010-07-21 16:29:12 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  do housekeeping each time selection is updated

2010-07-21 15:43:28 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	* tests/examples/ges-ui.glade:
	  clean up the create_ui function a bit

2010-07-21 15:23:18 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  disable properties editor when nothing is selected

2010-07-21 15:22:29 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.glade:
	  rename a few attributes

2010-07-21 13:54:24 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  update list model when objects are removed from layer

2010-07-21 13:53:54 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  delete selected objects from layer when user issues delete command

2010-07-21 13:53:01 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  store a pointer to the list selection

2010-07-21 11:40:18 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  display filename and duration of added clip

2010-07-21 11:36:41 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.glade:
	  don't create tree model in XML

2010-07-20 19:41:58 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	* tests/examples/ges-ui.glade:
	  make sure we get everythign we need from the XML file

2010-07-20 19:13:06 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  connect to layer object-{added,removed} and display message

2010-07-20 19:05:15 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  add some simple code to add a source to the timeline

2010-07-20 18:53:15 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  add liscence and some organizational comments

2010-07-20 18:38:54 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  we don't have to free all that much, in fact

2010-07-20 18:24:14 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  create a simple timeline layer

2010-07-20 17:59:59 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  pass app instance to signal handlers

2010-07-20 17:55:06 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  move app data to private struct

2010-07-20 17:52:24 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/Makefile.am:
	  export dynamic symbols in examples so signal autoconnect works

2010-07-20 17:05:26 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	  add protos so it builds under c90 mode

2010-07-20 16:44:01 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/Makefile.am:
	  add ges-ui.c to build system

2010-07-20 16:43:03 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* configure.ac:
	  add GTK+ to configure.ac as optional dependency for examples UI

2010-07-20 16:23:40 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/ges-ui.c:
	* tests/examples/ges-ui.glade:
	* tools/ges-ui.c:
	* tools/ges-ui.glade:
	  move ui to tests/examples

2010-07-20 15:56:12 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tools/ges-ui.c:
	* tools/ges-ui.glade:
	  add 'add_file' menu item

2010-07-20 13:57:28 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tools/ges-ui.c:
	* tools/ges-ui.glade:
	  flesh out ui design a bit more

2010-07-19 19:39:26 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tools/ges-ui.c:
	* tools/ges-ui.glade:
	  quit when main window closes

2010-07-19 19:02:41 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tools/ges-ui.c:
	  check in UI implementation

2010-07-19 18:09:32 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tools/ges-ui.glade:
	  check in ui file

2010-09-02 17:55:20 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track-object.c:
	  GESTrackObject: Fix debug statement

2010-09-02 17:54:48 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/ges/filesource.c:
	  tests: Fix a leak in test_filesource_images

2010-09-01 17:04:26 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-source.c:
	  GESTimelineFileSource: Don't leak strings

2010-07-16 16:43:38 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/simplelayer.c:
	  update unit tests to catch an earlier bug

2010-07-14 16:50:16 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/Makefile.am:
	* tests/examples/text_properties.c:
	  check in text properties example

2010-07-14 16:14:19 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-source.c:
	  deactivate overlay when no text is present

2010-07-14 16:12:56 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/Makefile.am:
	* tests/check/ges/text_properties.c:
	  add unit tests for text properties

2010-07-14 15:23:35 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-source.c:
	* ges/ges-timeline-source.h:
	  expose text, font-desc, and alignment properties in GESTimelineSource

2010-07-14 15:19:30 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-text-overlay.c:
	  fix typo in docstring

2010-07-14 13:18:57 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-text-overlay.c:
	  add conversion elements to TrackTextOverlay

2010-07-14 13:14:54 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	  tweak gstl recalculate: cur track object sets priority for next transition

2010-07-13 18:44:41 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/backgroundsource.c:
	* tests/check/ges/layer.c:
	* tests/check/ges/overlays.c:
	* tests/check/ges/titles.c:
	  supply type param to _find_track_objects in unit tests

2010-07-13 18:42:46 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-object.c:
	* ges/ges-timeline-object.h:
	  add type argument to ges_timeline_object_find_track_objects()

2010-07-13 18:14:33 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/simplelayer.c:
	  unref timeline in unit test

2010-07-13 18:12:34 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-source.c:
	  don't add the same track object twice

2010-07-13 17:13:02 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-title-source.c:
	  check for proper instance type in _set_* functions

2010-07-13 12:11:06 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-object.h:
	  fix documentation comment

2010-07-09 18:59:41 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-source.c:
	  create a text overlay with default text for every TimelineSource

2010-07-09 18:29:27 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-source.c:
	* tests/check/ges/layer.c:
	* tests/check/ges/simplelayer.c:
	  increase default priority offset for sources; update unit tests

2010-07-09 18:27:19 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	  move this commit down where it belongs

2010-07-09 18:26:56 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-source.c:
	  override create_track_objects (plural) in TimelineSource

2010-07-09 15:59:44 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/layer.c:
	  test height notification

2010-07-09 13:49:23 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-object.c:
	  update height when track object priority offset changes

2010-07-09 13:48:19 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	  reword priority documentation comments

2010-07-09 12:10:06 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	  use object height in gstl recalcuate

2010-07-09 12:09:29 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-object.c:
	  initialize height to 1

2010-07-09 12:09:08 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-object.h:
	  add accessor macro

2010-07-09 11:51:21 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-object.c:
	* ges/ges-timeline-object.h:
	  add height property

2010-07-09 11:50:31 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-object.c:
	  document timelineobject::priority

2010-07-08 19:01:46 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-object.c:
	* tests/check/ges/layer.c:
	  expose priority-offset as a property

2010-07-08 18:52:15 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* tests/check/ges/layer.c:
	  update documentation and unit tests

2010-07-08 18:51:38 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	  distinguish between base_priority, priority_offset, and gnl_priority

2010-07-07 17:07:33 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-object.c:
	* ges/ges-timeline-object.h:
	  split timeline_object_add_track_object out of create_track_object

2010-07-07 16:51:39 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-object.c:
	* ges/ges-timeline-object.h:
	* ges/ges-timeline.c:
	  add create_track_objects

2010-07-07 15:47:51 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-object.h:
	  add create_track_objects declarations

2010-07-07 15:47:12 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline.c:
	  call create_track_objects in timeline.c

2010-08-31 13:49:21 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-transition.c:
	  GESTimelineTransition: Remove unneeded variable

2010-08-31 13:29:37 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tools/ges-launch.c:
	  ges-launch: Fix memory leak

2010-08-12 15:45:15 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-image-source.c:
	  allow borders on still image videoscale

2010-08-12 15:44:47 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline.c:
	  always support audio on still images

2010-08-11 18:23:17 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-image-source.c:
	  remove ffmpegcolorspace after freeze (see 626518)

2010-08-10 16:17:07 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline.c:
	  don't set max duration on still images

2010-08-10 10:54:04 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-image-source.c:
	  implement still image sources

2010-08-09 18:36:00 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-image-source.c:
	  naive implementation of still images (seems broken)

2010-08-09 18:35:26 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-file-source.c:
	* tests/check/ges/filesource.c:
	  create GESTrackAudioTestSource for audio tracks when is-image is true

2010-08-09 18:34:35 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline.c:
	  set 'is-image' property true when source has an image stream type

2010-08-09 13:27:25 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/filesource.c:
	  set supported formats in new unit test

2010-08-09 13:26:20 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-file-source.c:
	  create image sources when is_image is set to true

2010-08-09 12:01:34 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-file-source.c:
	* ges/ges-timeline-file-source.h:
	  Add "is-image" property to GESTimelineFileSource

2010-08-09 11:59:04 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/filesource.c:
	  unit test for image sources

2010-08-06 12:58:08 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/Makefile.am:
	* ges/ges-track-image-source.c:
	* ges/ges-track-image-source.h:
	* ges/ges-types.h:
	* ges/ges.h:
	  check in GESTrackImageSource

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

	* ges/Makefile.am:
	  ges: Also dist the generated files

2010-08-05 11:40:49 +0200  Edward Hervey <bilboed@bilboed.com>

	* ges/Makefile.am:
	  marshal: Fix typo in the Makefile that prevented marshal .c being built

2010-07-23 18:22:31 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-title-source.c:
	  link to the right sink pad on textoverlay object

2010-07-16 18:41:02 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  fwrite doesn't return the number of bytes written. check that fwrite is non-zero and that ferror() isn't set instead.

2010-07-16 18:39:07 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-screenshot.c:
	  don't plug encoders when raw caps are given

2010-07-16 18:37:54 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/Makefile.am:
	* tests/examples/thumbnails.c:
	  add thumbnailing example which tests rest of thumbnailing api

2010-07-16 17:38:44 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  ges_caps_set_simple was being called incorrectly

2010-07-16 18:17:27 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/Makefile.am:
	  docs: Use the proper location for header files

2010-07-16 18:00:05 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/Makefile.am:
	  ges: Don't forget to dist ges-timeline-overlay.h

2010-07-16 17:29:05 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  TimelinePipeline: Make sure fwrite completes successfully

2010-07-15 19:50:22 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tools/ges-launch.c:
	  add option to ges-launch to save thumbnails periodicaly

2010-07-15 19:49:53 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	  update documentation

2010-07-15 19:49:28 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	* ges/ges-timeline-pipeline.h:
	  add routine to save a thumbnail in the specified encoding

2010-07-15 19:19:57 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-screenshot.c:
	  add todo item

2010-07-15 19:12:53 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-screenshot.c:
	  factor encoder-finding code into separate function

2010-07-15 18:59:50 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-screenshot.c:
	  use gstprofile to plug an encoder and encode the current frame

2010-07-15 16:58:22 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	* ges/ges-timeline-pipeline.h:
	  add methods to retreive the current frame as a thumbnail

2010-07-15 16:56:00 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/Makefile.am:
	* ges/ges-screenshot.c:
	* ges/ges-screenshot.h:
	  duplicate code from gstscreenshot.{c,h} and gstplaysink.{c,h}

2010-07-15 12:09:26 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: Use smartencoder feature from encodebin

2010-07-14 13:29:49 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* configure.ac:
	  configure: Require new core/base for fast pad linking

2010-07-14 13:29:23 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	* ges/ges-track-audio-transition.c:
	* ges/ges-track-title-source.c:
	* ges/ges-track-video-transition.c:
	  GES: Switch to new fast pad linking

2010-07-08 17:10:19 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/transition.c:
	  fix mem leak in unit test

2010-07-08 16:35:43 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-enums.c:
	* ges/ges-enums.h:
	* ges/ges-timeline-test-source.c:
	  Don't expose test source enum value table

2010-07-08 15:54:46 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-enums.c:
	* ges/ges-enums.h:
	  don't expose transition enum value table

2010-07-08 15:54:27 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-transition.c:
	  use gtype to get the enum value for the nick

2010-07-08 13:20:56 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-transition.c:
	* ges/ges-track-video-transition.c:
	* ges/ges-track-video-transition.h:
	  check whether setting vtype property actually succeeds

2010-07-07 18:00:21 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-transition.c:
	* ges/ges-track-video-transition.c:
	  initialize transitions to type _TRANSITION_TYPE_NONE

2010-07-08 13:41:12 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-enums.c:
	* ges/ges-enums.h:
	  add new invalid enum type

2010-07-08 13:20:56 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-audio-transition.c:
	* ges/ges-track-video-transition.c:
	  refactor duration_changed method as this is now a TrackObjectClass method

2010-07-08 13:20:08 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	  remove notify::duration signal handler

2010-07-08 12:35:41 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	  add track object virtual methods for property change notifications

2010-07-07 17:58:59 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-audio-transition.c:
	* ges/ges-track-video-transition.c:
	  remove unneeded assertions

2010-07-07 17:34:58 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-overlay.c:
	* ges/ges-timeline-overlay.h:
	* ges/ges-timeline-transition.c:
	* ges/ges-track-operation.c:
	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	  remove unneeded _new methods on certain base classes

2010-07-06 19:08:56 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	  docs: Add ges_track_video_test_source_set_pattern

2010-07-06 19:07:50 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track-transition.c:
	  TrackTransition: Don't return anything for unhandled tracks

2010-07-06 19:06:24 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track-audio-transition.c:
	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	* ges/ges-track-video-transition.c:
	  TrackTransition: Remove second argument from duration_changed vmethod
	  And get properties directly from parent classes instead

2010-07-06 19:05:38 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-text-overlay.c:
	* ges/ges-track-audio-test-source.c:
	* ges/ges-track-video-test-source.c:
	  GES: whitespace fixes

2010-07-06 19:04:42 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-transition.c:
	  GES: Simplify loops

2010-07-06 19:03:52 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-text-overlay.c:
	* ges/ges-timeline-title-source.c:
	  GES: Remove un-needed branches
	  res it initialized to NULL

2010-07-06 19:03:05 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-text-overlay.c:
	* ges/ges-timeline-title-source.c:
	  GES: Fix initialization values

2010-07-06 19:02:02 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-test-source.c:
	* ges/ges-timeline-transition.c:
	  GES: Remove useless variables

2010-07-06 19:00:50 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-test-source.c:
	* ges/ges-timeline-text-overlay.c:
	* ges/ges-timeline-title-source.c:
	* ges/ges-timeline-transition.c:
	* ges/ges-track-video-test-source.h:
	  GES: Fix function prototypes

2010-07-06 18:58:16 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-test-source.c:
	  TimelineTestSource: Set freq/volume whether mute or not

2010-07-06 18:57:22 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-overlay.c:
	  TimelineOverlay: Fix doc

2010-07-06 18:54:33 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track-video-transition.c:
	* tests/check/ges/transition.c:
	  TrackVideoTransition: Avoid switching from crossfade to other types
	  This now exposes a bug in the TimelineTransition, since it will have
	  a transition type different from its track objects.

2010-07-06 16:27:21 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	  SimpleTimelineLayer: Fix top-level doc

2010-07-06 16:27:08 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-layer.c:
	  TimelineLayer: Document _set_priority

2010-07-06 16:26:48 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track-video-transition.c:
	* ges/ges-track-video-transition.h:
	  TrackVideoTransition: Use proper transition type

2010-07-06 16:26:26 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-utils.c:
	  utils: Document timeline_new_audio_video

2010-07-06 16:25:50 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* docs/libs/ges.types:
	  docs: hide _get_type/TYPE in private sections

2010-07-02 16:39:33 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-video-transition.h:
	  make type field of video transition private

2010-07-02 16:23:41 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges.types:
	* ges/ges-timeline-overlay.h:
	* ges/ges-timeline-test-source.h:
	* ges/ges-timeline-text-overlay.h:
	* ges/ges-timeline-title-source.c:
	* ges/ges-timeline-title-source.h:
	* ges/ges-track-audio-test-source.h:
	* ges/ges-track-audio-transition.h:
	* ges/ges-track-text-overlay.h:
	* ges/ges-track-title-source.h:
	* ges/ges-track-transition.h:
	* ges/ges-track-video-test-source.h:
	* ges/ges-track-video-transition.h:
	* ges/ges.h:
	  another massive documentation update

2010-07-02 15:42:48 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-test-source.c:
	* ges/ges-timeline-test-source.h:
	* ges/ges-track-audio-test-source.c:
	* tests/check/ges/backgroundsource.c:
	  expose freq and volume props in GESTimelineTestSource

2010-07-02 14:46:09 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-track-audio-test-source.c:
	* ges/ges-track-audio-test-source.h:
	  add routines to AudioTestSource to set freq and volume

2010-07-02 13:14:19 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-text-overlay.c:
	* tests/check/ges/overlays.c:
	  remove 'mute' property from GESTimelineTextOverlay

2010-07-02 12:57:38 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-enums.c:
	  fix incorrect type name strings

2010-07-02 12:48:11 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges.types:
	* ges/ges-timeline-test-source.c:
	* ges/ges-timeline-test-source.h:
	* ges/ges-track-title-source.c:
	* ges/ges-track-video-test-source.c:
	* ges/ges-track-video-test-source.h:
	* tests/check/ges/backgroundsource.c:
	  convert rest of code to use GESVideoTestPattern

2010-07-02 12:47:31 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* docs/libs/ges.types:
	* ges/ges-enums.c:
	* ges/ges-enums.h:
	  add GESVideoTestPattern enum

2010-07-02 12:26:55 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/overlays.c:
	* tests/check/ges/titles.c:
	  update unit tests

2010-07-02 12:26:42 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-text-overlay.c:
	* ges/ges-timeline-title-source.c:
	  make sure to set properties on new track objects

2010-07-02 12:25:58 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-track-text-overlay.c:
	* ges/ges-track-text-overlay.h:
	* ges/ges-track-title-source.c:
	* ges/ges-track-title-source.h:
	  replace existing text position enums

2010-07-02 12:25:12 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-text-overlay.c:
	* ges/ges-timeline-text-overlay.h:
	* ges/ges-timeline-title-source.c:
	* ges/ges-timeline-title-source.h:
	  replace existing text position enums

2010-07-02 12:12:30 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-enums.c:
	* ges/ges-enums.h:
	  add text positioning enums

2010-07-01 18:53:08 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	  move missing symbol to enums section

2010-07-01 18:50:55 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-docs.sgml:
	* docs/libs/ges-sections.txt:
	* docs/libs/ges.types:
	  update documentation files

2010-07-01 18:50:30 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-enums.c:
	* ges/ges-enums.h:
	* ges/ges-timeline-transition.c:
	* ges/ges-timeline-transition.h:
	* ges/ges-track-video-transition.c:
	* tests/check/ges/simplelayer.c:
	* tests/check/ges/transition.c:
	* tools/ges-launch.c:
	  move and rename TRANSITION_VTYPE into enums.h and rename

2010-07-01 17:24:49 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-enums.c:
	* ges/ges-enums.h:
	* ges/ges-track.c:
	* ges/ges-track.h:
	  move track type enum to ges-enums.{h,c}

2010-07-01 17:03:55 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/Makefile.am:
	* ges/ges-enums.c:
	* ges/ges-enums.h:
	* ges/ges.h:
	  check in skeletal ges-enums.{c,h}

2010-07-01 16:48:45 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-docs.sgml:
	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-overlay.c:
	* ges/ges-timeline-overlay.h:
	* ges/ges-timeline-test-source.c:
	* ges/ges-timeline-text-overlay.c:
	* ges/ges-timeline-title-source.c:
	* ges/ges-timeline-transition.c:
	* ges/ges-track-audio-test-source.c:
	* ges/ges-track-audio-transition.c:
	* ges/ges-track-filesource.c:
	* ges/ges-track-object.c:
	* ges/ges-track-operation.c:
	* ges/ges-track-operation.h:
	* ges/ges-track-source.h:
	* ges/ges-track-text-overlay.c:
	* ges/ges-track-title-source.c:
	* ges/ges-track-transition.c:
	* ges/ges-track-video-test-source.c:
	* ges/ges-track-video-transition.c:
	  massive documentation updates

2010-07-01 12:35:31 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-text-overlay.c:
	* ges/ges-timeline-text-overlay.h:
	  GESTimelineTextOverlay inherits from GESTimelineOverlay

2010-07-01 12:34:46 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/Makefile.am:
	* ges/ges-timeline-overlay.c:
	* ges/ges-timeline-overlay.h:
	* ges/ges-types.h:
	* ges/ges.h:
	  check in emtpy GESTimelineOverlay class

2010-07-01 11:17:46 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/Makefile.am:
	* ges/ges-timeline-overlay.c:
	* ges/ges-timeline-overlay.h:
	* ges/ges-timeline-text-overlay.c:
	* ges/ges-timeline-text-overlay.h:
	* ges/ges-types.h:
	* ges/ges.h:
	* tests/check/ges/overlays.c:
	* tests/examples/overlays.c:
	  GESTimelineOverlay -> GESTimelineTextOverlay

2010-06-30 20:25:18 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/Makefile.am:
	* ges/ges-timeline-background-source.c:
	* ges/ges-timeline-background-source.h:
	* ges/ges-timeline-test-source.c:
	* ges/ges-timeline-test-source.h:
	* ges/ges-types.h:
	* ges/ges.h:
	* tests/check/ges/backgroundsource.c:
	* tools/ges-launch.c:
	  GESTimelineBackgroundSource -> GESTimelineTestSource

2010-06-30 20:01:18 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/Makefile.am:
	* ges/ges-timeline-background-source.c:
	* ges/ges-timeline-title-source.c:
	* ges/ges-track-audio-test-source.c:
	* ges/ges-track-audio-test-source.h:
	* ges/ges-types.h:
	* ges/ges.h:
	  GESTrackAudioBackgroundSource -> GESTrackAudioTestSource

2010-06-30 19:34:29 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/Makefile.am:
	* ges/ges-timeline-background-source.c:
	* ges/ges-track-audio-background-source.c:
	* ges/ges-track-audio-background-source.h:
	* ges/ges-track-audio-test-source.c:
	* ges/ges-track-audio-test-source.h:
	* ges/ges-track-title-source.c:
	* ges/ges-track-video-background-source.c:
	* ges/ges-track-video-background-source.h:
	* ges/ges-track-video-test-source.c:
	* ges/ges-track-video-test-source.h:
	* ges/ges-types.h:
	* ges/ges.h:
	* tests/check/ges/backgroundsource.c:
	  GESTrackVideoBackgroundSource -> GESTrackVideoTestSource

2010-06-30 18:13:35 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/Makefile.am:
	* ges/ges-timeline-overlay.c:
	* ges/ges-track-text-overlay.c:
	* ges/ges-track-text-overlay.h:
	* ges/ges-track-video-overlay.c:
	* ges/ges-track-video-overlay.h:
	* ges/ges-types.h:
	* ges/ges.h:
	* tests/check/ges/overlays.c:
	  GESTrackVideoOverlay -> GESTrackTextOverlay

2010-06-30 18:02:49 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/Makefile.am:
	* ges/ges-track-overlay.c:
	* ges/ges-track-overlay.h:
	* ges/ges-types.h:
	* ges/ges.h:
	  remove GESTrackOverlay

2010-06-30 17:59:17 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-overlay.c:
	* ges/ges-track-video-overlay.c:
	* ges/ges-track-video-overlay.h:
	* tests/check/ges/overlays.c:
	  GESTrackVideoOverlay inherits directly from GESTrackOperation

2010-06-30 17:50:49 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/Makefile.am:
	* ges/ges-track-operation.c:
	* ges/ges-track-operation.h:
	* ges/ges-types.h:
	  check in GESTrackOperation

2010-06-30 17:34:54 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-docs.sgml:
	* ges/ges-track-video-background-source.h:
	  documentation fixes

2010-06-30 17:29:32 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	  update documentation

2010-06-30 17:29:21 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-overlay.c:
	* ges/ges-timeline-title-source.c:
	* ges/ges-track-overlay.c:
	* ges/ges-track-title-source.c:
	* ges/ges-track-title-source.h:
	* ges/ges-track-video-overlay.c:
	* ges/ges-track-video-overlay.h:
	* ges/ges-types.h:
	* tests/check/ges/overlays.c:
	* tests/check/ges/titles.c:
	  GESTrackVideoTitleSource -> GESTrackTitleSource

2010-06-30 17:02:10 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/Makefile.am:
	* ges/ges-timeline-overlay.c:
	* ges/ges-timeline-title-source.c:
	* ges/ges-track-overlay.c:
	* ges/ges-track-title-source.c:
	* ges/ges-track-title-source.h:
	* ges/ges-track-video-overlay.c:
	* ges/ges-track-video-overlay.h:
	* ges/ges-track-video-title-source.c:
	* ges/ges-track-video-title-source.h:
	* ges/ges-types.h:
	* ges/ges.h:
	  remove GESTrackTitleSource

2010-06-30 16:47:29 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-source.h:
	  fix doc comments

2010-06-30 16:47:12 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-title-source.c:
	* ges/ges-track-video-title-source.c:
	* ges/ges-track-video-title-source.h:
	  GESTrackVideoTitleSource inherits directly from GESTrackObject

2010-06-30 16:34:47 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/Makefile.am:
	* ges/ges-timeline-background-source.c:
	* ges/ges-track-audio-background-source.h:
	* ges/ges-track-background-source.c:
	* ges/ges-track-background-source.h:
	* ges/ges-types.h:
	* ges/ges.h:
	  remove GESTrackBackgroundSource class

2010-06-30 16:29:04 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-audio-background-source.c:
	* ges/ges-track-audio-background-source.h:
	  GESTrackAudioBackgroundSource inherits from GESTrackSource

2010-06-30 16:25:01 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-video-background-source.c:
	* ges/ges-track-video-background-source.h:
	  GESTrackVideoBackgroundSource inherits directly from track object

2010-06-30 15:40:31 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-source.c:
	* ges/ges-track-source.h:
	  move create_element virtual method up to TimelineSource class

2010-06-30 15:39:24 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	  fix documentation mistake

2010-06-30 13:22:04 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/Makefile.am:
	* ges/ges-track-audio-title-source.c:
	* ges/ges-track-audio-title-source.h:
	* ges/ges-types.h:
	* ges/ges.h:
	  remove GESTrackAudioTitleSource

2010-06-28 18:24:12 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-title-source.c:
	  create test track object instead of audio-title-source

2010-06-28 18:23:37 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-video-transition.c:
	  keep track of and release request pads for smpte also

2010-06-28 18:20:15 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-video-transition.c:
	  free mixer in dispose separately from sink pads

2010-06-28 17:33:53 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/.gitignore:
	  examples: Ignore files

2010-06-28 17:33:34 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

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

2010-06-28 17:24:25 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-docs.sgml:
	  docs: Add links to all new documentation files

2010-06-28 17:23:49 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/overlays.c:
	  tests: Add <stdlib.h> for exit usage

2010-06-25 12:04:47 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-video-overlay.c:
	  don't forget to unref pad targets

2010-06-23 18:23:31 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-video-overlay.c:
	  rough overlay implementation

2010-06-23 18:22:56 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/Makefile.am:
	* tests/examples/overlays.c:
	  check in overlay test app

2010-06-23 16:42:14 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-overlay.c:
	  activate property setting functions

2010-06-23 16:38:45 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/overlays.c:
	  activate remaining overlay tests

2010-06-23 16:38:19 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges.h:
	  add video overlays to main header

2010-06-23 16:32:25 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-overlay.c:
	  create timeline-overly creates appropriate track object

2010-06-23 16:30:18 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/Makefile.am:
	* ges/ges-track-video-overlay.c:
	* ges/ges-track-video-overlay.h:
	* ges/ges-types.h:
	  check in GESTrackVideoOverlay

2010-06-21 16:22:06 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/Makefile.am:
	* ges/ges-timeline-overlay.c:
	* ges/ges-track-overlay.c:
	* ges/ges-track-overlay.h:
	* ges/ges-types.h:
	* ges/ges.h:
	  check in ges-track-overlay.{c,h}

2010-06-21 16:04:22 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/Makefile.am:
	* tests/check/ges/overlays.c:
	  check in overlay unit tests

2010-06-21 15:47:04 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/Makefile.am:
	* ges/ges-timeline-overlay.c:
	* ges/ges-timeline-overlay.h:
	* ges/ges-types.h:
	* ges/ges.h:
	  check in timelineoverlay, structural copy of GESTimelineTitleSource

2010-06-21 16:04:50 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-transition.h:
	  update doc comment

2010-06-18 16:36:54 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-audio-transition.c:
	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	* ges/ges-track-video-transition.c:
	  remove unneeded paramenter to create_element

2010-06-18 16:26:24 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/transition.c:
	  update unit tests

2010-06-18 16:22:38 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	  update documentation

2010-06-18 16:22:21 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-transition.c:
	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	* ges/ges-track-video-transition.c:
	* ges/ges-track-video-transition.h:
	  push struct fields down to VideoTransition

2010-06-18 15:54:37 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-transition.c:
	* ges/ges-track-video-transition.c:
	  push make_video_bin() down into subclass

2010-06-18 15:21:02 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-audio-transition.c:
	* ges/ges-track-audio-transition.h:
	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	  push relevant struct fields into AudioTransition

2010-06-18 15:20:06 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	  update documentation

2010-06-18 15:04:50 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-audio-transition.c:
	* ges/ges-track-transition.c:
	  push make_audio_bin down into subclass

2010-06-18 13:42:47 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	  add duration_changed virtual method to GESTrackTransition

2010-06-18 12:55:30 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	  add create_element vmethod to GESTrackTransition

2010-06-18 11:50:08 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-transition.c:
	  create transition subtype according to track type

2010-06-18 11:24:07 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/Makefile.am:
	* ges/ges-track-video-transition.c:
	* ges/ges-track-video-transition.h:
	* ges/ges-types.h:
	  check in GESTrackVideoTransition, empty subclass of TrackTransition

2010-06-18 11:09:28 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/Makefile.am:
	* ges/ges-track-audio-transition.c:
	* ges/ges-track-audio-transition.h:
	* ges/ges-types.h:
	  check in GESTrackAudioTransition, empyt subclass of TrackTransition

2010-06-17 18:31:07 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-video-title-source.c:
	* ges/ges-track-video-title-source.h:
	  fix header file param names

2010-06-17 12:25:27 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-video-title-source.c:
	  fix stupid copy/paste typo

2010-06-17 11:22:30 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-title-source.c:
	* ges/ges-timeline-transition.c:
	* ges/ges-track-video-title-source.c:
	  free existing strings before assigning new ones

2010-06-17 11:21:43 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/titles.c:
	  clean up some memory leaks in the titles unit test

2010-06-16 19:04:53 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/titles.c:
	  unit tests for {h,v}alignment properties

2010-06-16 19:03:51 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-title-source.c:
	* ges/ges-timeline-title-source.h:
	  implement {h,v}alignment property for timeline titles

2010-06-16 19:02:40 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	  documentation

2010-06-16 19:01:48 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-video-title-source.c:
	* ges/ges-track-video-title-source.h:
	  add ..._set_{h,v}alignment() methods to video titles

2010-06-16 16:58:42 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-title-source.c:
	* ges/ges-timeline-title-source.h:
	  add font-desc property to TimelineTitleSource

2010-06-16 16:58:13 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-track-video-title-source.c:
	* ges/ges-track-video-title-source.h:
	  add ...set_font_desc() method to VideoTitleSource

2010-06-16 13:27:35 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-video-title-source.c:
	  set black background on titles by default

2010-06-16 13:22:15 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tools/ges-launch.c:
	  add title sources to ges-launch

2010-06-16 13:21:19 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-title-source.c:
	  have timeline title source create audio title sources

2010-06-16 13:20:54 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/Makefile.am:
	* ges/ges-track-audio-title-source.c:
	* ges/ges-track-audio-title-source.h:
	* ges/ges-types.h:
	* ges/ges.h:
	  check in ges-track-audio-title-source.{c,h}

2010-06-15 19:22:04 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-video-title-source.c:
	  don't forget to check for null

2010-06-15 19:21:37 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-title-source.c:
	* ges/ges-timeline-title-source.h:
	  set text on video track objects when text property changes

2010-06-15 19:20:17 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-title-source.c:
	  implement ges_timeline_title_source_create_track_object

2010-06-15 17:10:17 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-video-background-source.h:
	  remove trailing '$' accidentally pasted

2010-06-15 17:09:50 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	  update documentation

2010-06-15 17:09:31 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-video-title-source.c:
	* ges/ges-track-video-title-source.h:
	  these should have been checked in before

2010-06-15 13:16:28 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-title-source.c:
	  add text property to GESTimelineTitleSource

2010-06-15 13:14:14 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/Makefile.am:
	* tests/check/ges/titles.c:
	  check in unit tests for titles

2010-06-14 19:19:23 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-background-source.c:
	* ges/ges-timeline-background-source.h:
	* ges/ges-timeline-title-source.c:
	* ges/ges-timeline-title-source.h:
	* ges/ges-timeline-transition.c:
	* ges/ges-track-audio-background-source.c:
	* ges/ges-track-audio-background-source.h:
	* ges/ges-track-background-source.c:
	* ges/ges-track-background-source.h:
	* ges/ges-track-title-source.c:
	* ges/ges-track-title-source.h:
	* ges/ges-track-video-background-source.c:
	* ges/ges-track-video-background-source.h:
	  massive update to doc comments

2010-06-14 19:18:46 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-background-source.c:
	* ges/ges-track-video-background-source.h:
	  remove the zone plate and gamut enum values

2010-06-14 17:52:29 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	  massive update to documentation

2010-06-14 17:52:09 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/Makefile.am:
	* ges/ges-track-video-background-source.h:
	* ges/ges-types.h:
	* ges/ges.h:
	  check in skeletal GESTrackVideoTitleSource

2010-06-14 15:34:08 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/Makefile.am:
	* ges/ges-track-title-source.c:
	* ges/ges-track-title-source.h:
	* ges/ges-types.h:
	  check in skeletal GESTrackTitleSource

2010-06-14 13:31:15 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/Makefile.am:
	* ges/ges-timeline-title-source.c:
	* ges/ges-timeline-title-source.h:
	* ges/ges-types.h:
	* ges/ges.h:
	  check in sekeletal GESTimelineTitleSource

2010-06-11 17:57:20 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/backgroundsource.c:
	  don't forget to unref objects in unit tests

2010-06-11 17:21:45 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges.h:
	* tests/check/ges/backgroundsource.c:
	  test vpatern property in unit tests

2010-06-11 17:02:55 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-audio-background-source.c:
	  make audio background-sources output silence

2010-06-11 16:55:31 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tools/ges-launch.c:
	  use ges_timeline_background_source_new_for_nick when creating pattern sources

2010-06-11 16:53:03 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-background-source.c:
	  don't initialize vpattern field

2010-06-11 16:51:44 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-background-source.c:
	* ges/ges-timeline-background-source.h:
	  implement ges_timeline_background_source_new_for_nick()

2010-06-11 16:50:07 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-background-source.c:
	  move enum table into file scope

2010-06-11 15:28:43 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tools/ges-launch.c:
	  rewrite print_pattern_list to use GEnumValues

2010-06-11 15:28:17 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tools/ges-launch.c:
	  remove unnecessary g_print

2010-06-11 15:19:28 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tools/ges-launch.c:
	  switch to using GESTimelineBackgroundSource objects for patterns

2010-06-11 15:18:17 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-background-source.c:
	  set pattern on newly-created video track objects

2010-06-11 15:17:42 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-background-source.c:
	  implement vpattern gobject property of tl background source

2010-06-11 15:16:40 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-background-source.c:
	  add big blob of pattern enum values copied from videotestsrc

2010-06-11 15:15:59 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-background-source.h:
	  add vpattern field to GESTimelineBackground source

2010-06-11 15:14:40 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-video-background-source.c:
	* ges/ges-track-video-background-source.h:
	  implement setting pattern on video background sources

2010-06-11 13:44:40 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-video-background-source.c:
	* ges/ges-track-video-background-source.h:
	  add routines to set track object pattern

2010-06-11 13:41:44 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-video-background-source.h:
	  add enum for video patterns

2010-06-11 13:40:54 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/backgroundsource.c:
	  test Backgroudn sources in layers

2010-06-11 10:42:00 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-background-source.c:
	  implment GESTimelineBackground source create_track_object

2010-06-11 10:40:02 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/Makefile.am:
	  add audio background source to build system

2010-06-11 10:39:14 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-types.h:
	  add audio background source to types.h

2010-06-11 10:37:49 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-audio-background-source.c:
	* ges/ges-track-audio-background-source.h:
	  check in audio background source

2010-06-10 17:44:17 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/Makefile.am:
	* ges/ges-types.h:
	  add ges video-track background to build system

2010-06-10 13:21:47 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-video-background-source.c:
	* ges/ges-track-video-background-source.h:
	  check in ges-track-video-background-source.{c,h}

2010-06-10 13:29:22 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/Makefile.am:
	  add GESTrackBackgroundSource to build system

2010-06-10 17:42:09 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges.h:
	  add track background source to header

2010-06-10 17:43:56 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-types.h:
	  add track background source to ges-types.h

2010-06-10 13:51:33 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-background-source.c:
	* ges/ges-track-background-source.h:
	  check in GESTrackBackgroundSource

2010-06-10 13:23:59 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/Makefile.am:
	* ges/ges-types.h:
	  add GESTimelineBackgroundSource to build system

2010-06-10 17:41:57 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges.h:
	  add timeline background source to header

2010-06-10 13:22:36 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/Makefile.am:
	* tests/check/ges/backgroundsource.c:
	  check in background source unit test

2010-06-10 13:21:06 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-background-source.c:
	* ges/ges-timeline-background-source.h:
	  check in ges-timeline-background-source.{c,h}

2010-06-28 17:23:49 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/simple1.c:
	* tests/examples/transition.c:
	  tests: Add <stdlib.h> for exit usage

2010-07-07 01:21:38 -0300  Thiago Santos <thiago.sousa.santos@collabora.co.uk>

	* docs/libs/Makefile.am:
	* tests/examples/simple1.c:
	* tests/examples/transition.c:
	* tools/ges-launch.c:
	  Fix building issues
	  Adds missing headers to some files and needed cflags to gtk-doc
	  scanner build

2010-06-28 17:08:08 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: Fix leaked caps

2010-06-21 11:54:01 +0200  Edward Hervey <bilboed@bilboed.com>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: unref all pads

2010-06-21 11:53:30 +0200  Edward Hervey <bilboed@bilboed.com>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: Make a copy of the provided GstEncodingProfile

2010-06-21 11:52:49 +0200  Edward Hervey <bilboed@bilboed.com>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: Properly release playsink and encodebin

2010-06-21 11:52:01 +0200  Edward Hervey <bilboed@bilboed.com>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: finalize => dispose
	  We want to release our objects before the parent GstBin class does so.

2010-06-21 11:47:44 +0200  Edward Hervey <bilboed@bilboed.com>

	* tools/ges-launch.c:
	  ges-launch: Don't leak caps

2010-06-21 11:47:21 +0200  Edward Hervey <bilboed@bilboed.com>

	* tools/ges-launch.c:
	  ges-launch: Properly free profile and outputuri

2010-06-17 11:45:27 +0200  Edward Hervey <bilboed@bilboed.com>

	* tools/ges-launch.c:
	  ges-launch: Cleanup profile

2010-06-14 19:40:50 +0200  Edward Hervey <bilboed@bilboed.com>

	* ges/ges-track-transition.c:
	  GESTrackTransition: Release all pads.
	  Whether calling get_request_pad or get_static_pad we always end up
	  with an extra reference.
	  Also keep a reference on videomixer so it doesn't go away before we
	  call _release_request_pad() on it with the proper pads to release.

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

	* common:
	  Update to latest common

2010-06-11 19:34:39 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/transition.c:
	  examples: Fix debug statement

2010-06-10 16:19:11 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	  release the request pads in dispose

2010-06-10 16:14:20 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-transition.c:
	  don't keep an extra reference to vsmpte

2010-06-10 12:52:41 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/simplelayer.c:
	  add elemt. to bin in arbitrary_fill_track_func

2010-06-09 18:57:59 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/simplelayer.c:
	  fix typos in comment block

2010-06-09 18:56:55 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	  gstl_recalculate() won't set priorities to -1

2010-06-09 16:35:17 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-track-transition.h:
	  ges/ges-track-transition.h: add missing function prototype

2010-06-09 17:11:56 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tools/ges-launch.c:
	  tools/ges-launch.c: C90 fixes

2010-06-09 17:09:10 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/transition.c:
	  tests/examples/transition.c: C90 fixes

2010-06-09 17:08:31 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/test4.c:
	  tests/examples/test4.c: C90 fixes

2010-06-09 16:27:43 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/examples/concatenate.c:
	  tests/check/ges/concatenate.c: C90 fixes

2010-06-09 16:27:43 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/transition.c:
	  tests/check/ges/transition.c: C90 fixes

2010-06-09 16:27:43 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/simplelayer.c:
	  tests/check/ges/simplelayer.c: C90 fixes

2010-06-09 16:27:43 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* tests/check/ges/filesource.c:
	  tests/check/ges/filesource.c: C90 fixes

2010-06-09 16:27:43 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-utils.h:
	  ges/ges-utils.h: C90 fixes

2010-06-09 16:27:43 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track.h:
	  ges/ges-track.h: C90 fixes

2010-06-09 16:27:43 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track.c:
	  ges/ges-track.c: C90 fixes

2010-06-09 16:27:43 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-transition.c:
	  ges/ges-track-transition.c: C90 fixes

2010-06-09 16:27:43 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-object.c:
	  ges/ges-track-object.c: C90 fixes

2010-06-09 16:27:43 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-transition.c:
	  ges/ges-timeline-transition.c: C90 fixes

2010-06-09 16:27:43 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-object.c:
	  ges/ges-timeline-object.c: C90 fixes

2010-06-09 16:27:43 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-layer.c:
	  ges/ges-timeline-layer.c: C90 fixes

2010-06-09 16:27:43 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	  ges/ges-simple-timeline-layer.c: C90 fixes

2010-06-09 13:53:32 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* configure.ac:
	  configure.ac: Actually use the WARNING/ERROR CFLAGS
	  We weren't detecting all these issues previously

2010-06-09 13:53:07 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track-transition.c:
	  GESTrackTransition: Fix debug statement

2010-06-09 13:52:35 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline.c:
	  GESTimeline: Remove all tracks/layers when being disposed

2010-06-09 13:52:08 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-layer.c:
	  GESTimelineLayer: Release all layer/tracks when being disposed

2010-06-09 11:22:05 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-transition.c:
	  ges/ges-track-transition.c: set referece to vsmpte to NULL after freeing

2010-06-09 11:21:26 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-track-transition.c:
	  ges/ges-track-transition.c: was freeing same GstController twice in _dispose()

2010-06-09 11:17:08 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* common:
	  common: Update to latest submodule revision

2010-06-08 18:38:44 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/ges/simplelayer.c:
	  check: Check that all objects are removed from the layer
	  This currently fails

2010-06-08 18:37:49 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/ges/transition.c:
	  check: Use release_track_object instead of unref

2010-06-08 18:37:01 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track-transition.c:
	  GESTrackTransition: Unref the ControlSource in dispose

2010-06-08 18:36:37 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges.c:
	  ges: Initialize GstController in ges_init

2010-06-04 19:53:35 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	  ges/ges-simple-timeline-layer.c: print a warning when transitions overlap

2010-06-04 18:31:25 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-transition.c:
	  ges/ges-timeline-transition.c: can't set enums by nick

2010-06-04 18:07:39 +0200  Brandon Lewis <brandon@collabora.co.uk>

	* ges/ges-timeline-transition.c:
	  ges/ges-timeline-transition.c: initialize vtype enum type from static list of GEnumValues

2010-06-04 17:53:15 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/.gitignore:
	* tools/.gitignore:
	  tools/examples: Ignore more files

2010-06-04 17:50:42 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* Makefile.am:
	* configure.ac:
	* tests/examples/Makefile.am:
	* tests/examples/playlist.c:
	* tools/Makefile.am:
	* tools/ges-launch.c:
	  tools: Moving playlist from examples and making it installable
	  It is now called ges-launch

2010-06-04 12:17:56 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/playlist.c:
	  tests/examples/playlist.c: allow file / pattern durations to be 0 (but not transitions)

2010-06-04 12:17:28 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/playlist.c:
	  tests/examples/playlist.c: clean up playlist help text

2010-06-03 19:14:41 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/playlist.c:
	  tests/examples/playlist.c: better sanity checking of arguments

2010-06-03 19:13:42 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/playlist.c:
	  tests/examples/playlist.c: add option to print avail. transitions/patterns. update help strings

2010-06-03 19:04:11 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/check/ges/simplelayer.c:
	* tests/check/ges/transition.c:
	  tests/check/ges/{simplelayer.c,transition.c}: update unit tests

2010-06-03 19:02:58 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-track-transition.c:
	  ges/ges-track-transition.c: adjust to the change in VTYPE_CROSSFADE

2010-06-03 19:01:21 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-timeline-transition.c:
	* ges/ges-timeline-transition.h:
	  ges/ges-timeline-transition.{c,h}: value for VTYPE_CROSSFADE changed to 512 and exported in ges-timeline-transition.h

2010-06-02 18:58:14 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/check/ges/transition.c:
	  tests/check/ges/transition.c: test that changing timeline vtype sets trackobj vtype

2010-06-02 18:57:10 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-timeline-transition.c:
	  ges/ges-timeline-transition.c: implement vtype gobject property on GESTimelineTransitions

2010-06-02 18:55:52 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	  ges/ges-track-transition.{c,h}: add ability to change smptealpha type

2010-06-02 16:52:02 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/check/ges/simplelayer.c:
	* tests/check/ges/transition.c:
	  tests/check/ges/{simplelayer.c,tests/check/ges/transition.c}: sync with previous api change

2010-06-02 16:50:07 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-timeline-transition.c:
	* ges/ges-timeline-transition.h:
	  ges/ges-timeline-transition.{c,h}: api change, pass gint instead of GEnumValue to new()

2010-06-02 16:43:10 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-timeline-transition.c:
	* ges/ges-timeline-transition.h:
	* tests/check/ges/transition.c:
	  ges/ges-timeline-transition.{c,h},tests/.../transition.c: type change of vtype to gint from GEnumValue

2010-06-02 16:35:57 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-timeline-transition.c:
	  ges/ges-timeline-transition.c: sync with API change in previous commit

2010-06-02 16:27:58 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	  ges/ges-track-transition.{c,h}: api change: pass gint instead of GEnumValue

2010-06-02 15:18:55 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	* tests/check/ges/transition.c:
	  ges/ges-track-transition.{c,h}, tests/check/ges/transition.c: change vtype from GEnumValue to simple gint;

2010-06-02 13:50:06 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/check/ges/transition.c:
	  tests/check/ges/transition.c: make sure unit tests work properly

2010-06-02 13:20:09 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/check/ges/transition.c:
	  tests/check/ges/transition.c: oops, unit tests using wrong api

2010-06-02 12:46:05 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/check/Makefile.am:
	  tests/check/Makefile.am: add transition unit tests to make check

2010-06-02 12:34:57 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/check/ges/transition.c:
	  tests/check/ges/transition.c: check in transition unit tests

2010-06-01 13:22:05 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-track-filesource.h:
	  ges/ges-track-filesource.h: fix typo in documentation commments

2010-06-01 11:57:42 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-track-filesource.h:
	  ges/ges-track-filesource.h: fix incorrect definition of GESTrackFileSource structs.

2010-05-31 18:59:12 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-custom-timeline-source.h:
	* ges/ges-simple-timeline-layer.c:
	* ges/ges-simple-timeline-layer.h:
	* ges/ges-timeline-file-source.c:
	* ges/ges-timeline-file-source.h:
	* ges/ges-timeline-layer.c:
	* ges/ges-timeline-layer.h:
	* ges/ges-timeline-object.c:
	* ges/ges-timeline-object.h:
	* ges/ges-timeline-pipeline.h:
	* ges/ges-timeline-source.h:
	* ges/ges-timeline-transition.h:
	* ges/ges-timeline.c:
	* ges/ges-timeline.h:
	* ges/ges-track-filesource.h:
	* ges/ges-track-object.h:
	* ges/ges-track-source.h:
	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	* ges/ges-track.h:
	  Add missing documentation

2010-05-31 15:42:23 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/check/ges/simplelayer.c:
	* tests/examples/transition.c:
	  tests/check/ges/{simplelayer.c,transition.c}: create audio tracks in demos

2010-05-31 15:40:52 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-track-transition.c:
	  ges/ges-track-transition.c: implement audio crossfades

2010-05-31 15:38:14 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	  ges/ges-track-transition.{c,h}: add fields for audio interpolation to obj

2010-05-28 11:42:29 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	* tests/check/ges/simplelayer.c:
	  fix bugs

2010-05-28 03:02:49 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	  ges/ges-track-transition.{c,h}: rename some members of ges-track-transition struct to separate between audio and video objects.

2010-05-28 02:31:42 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-track-transition.c:
	  ges/ges-track-transition.c: factor out code which produces video bin into a seprate routine

2010-05-28 00:19:24 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/playlist.c:
	  tests/examples/playlist.c: make audio stream of audiotestsrc silent (it's much less annoying).

2010-05-28 00:16:28 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/playlist.c:
	  tests/examples/playlist.c: fix inappropriate down-casts in playlist.py

2010-05-28 00:12:45 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-track-transition.c:
	  ges/ges-track-transition.c: give gnloperations a unique name

2010-05-28 00:11:51 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	  ges/ges-simple-timeline-layer.c: also error when transition duration exceeds that of its neighbors

2010-05-27 23:37:11 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	  ges/ges-simple-timeline-layer.c: don't allow user to create timelines with adjacent transitions

2010-05-27 23:36:10 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	  ges/ges-simple-timeline-layer.c: implement simple stair-step like priority management scheme.

2010-05-27 23:10:04 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/check/ges/simplelayer.c:
	  tests/check/ges/simplelayer.c: check in massive unit test case for GSTL with transitions

2010-05-27 12:06:00 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/playlist.c:
	  tests/examples/playlist.c: add transitions to playlist example

2010-05-27 12:04:05 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/transition.c:
	  tests/examples/transition.c: use ges_timeline_transition_new_from_nick()

2010-05-27 12:02:10 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-transition.c:
	* ges/ges-timeline-transition.h:
	  ges/ges-timeline-transition.{c,h}: add convenience routine for creating transitions docs/libs/ges-sections.txt: add routine to documentation

2010-05-26 18:19:41 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/playlist.c:
	  tests/examples/playlist.c: re-work pattern command line syntax

2010-05-26 16:57:59 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/transition.c:
	  ests/examples/transition.c: create transition with specified type

2010-05-26 16:36:24 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	  ges/ges-track-transition.{c,h}: add support for other wipes with smptealpha

2010-05-26 16:33:44 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-timeline-transition.c:
	* ges/ges-timeline-transition.h:
	  ges/ges-timeline-transition.{c,h}: add a type field

2010-05-26 13:27:46 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/transition.c:
	  tests/examples/transition.c: pass transition type to make_timeline

2010-05-26 13:05:18 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/transition.c:
	  tests/examples/transition.c: make -t option work with values supported by smpte + "crossfade"

2010-05-26 13:04:06 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/transition.c:
	  tests/examples/transition.c: add routines for identifying transitions

2010-05-26 11:38:19 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/transition.c:
	  tests/examples/transition.c: split out "make_timeline" into separate routine

2010-05-26 10:48:13 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/transition.c:
	  tests/examples/transition.c: remove some cruft from transition example

2010-05-25 19:10:27 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/transition.c:
	  tests/examples/transition.c: print values in seconds not nseconds

2010-05-25 19:07:21 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-track-transition.c:
	  ges-track-transition.c: set interpolation control points properly from gnlobject properties

2010-05-25 19:06:10 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-track-transition.h:
	  ges-track-transition.c: GstControlSource -> GstInterpolationControlSource

2010-05-25 16:44:58 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/transition.c:
	  tests/examples/transition.c: cast arguments to g_object_set

2010-05-25 16:42:47 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-track-transition.c:
	  ges-track-transition.c: create gst-controller for transition

2010-05-25 16:41:53 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	  ges-track-transition.c: add controller and control-source members

2010-05-25 16:35:16 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* configure.ac:
	* ges/Makefile.am:
	  depend on GST_CONTROLLER

2010-05-25 13:44:57 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-layer.c:
	* ges/ges-timeline-transition.c:
	* ges/ges-track-transition.c:
	* tests/examples/transition.c:
	  hacking

2010-05-24 17:51:31 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/transition.c:
	  tests/examples/transition.c: create transition when duration > 0

2010-05-24 17:39:45 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/Makefile.am:
	  dist transition.c

2010-05-24 17:39:07 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/transition.c:
	  check in single transition demo

2010-05-24 14:58:55 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-types.h:
	  ges/ges-types.h: add typedefs for GESTrackTransition[Class] structs

2010-05-24 14:57:12 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-track-transition.h:
	  ges-track-transition.h: fix typo

2010-05-24 14:55:53 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/Makefile.am:
	  ges/Makefile.am: dist ges-track-transition.c,h

2010-05-24 13:08:32 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-track-transition.c:
	* ges/ges-track-transition.h:
	  skeletal implementation of GESTrackTransition

2010-05-24 12:34:36 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* ges/ges-track-transition.h:
	  check-in ges-track-transition.h

2010-05-24 10:59:43 +0200  Brandon Lewis <brandon.lewis@collabora.co.uk>

	* tests/examples/playlist.c:
	  playlist.c: working pattern sources

2010-06-02 11:49:08 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/playlist.c:
	  examples: Add a looping feature to playlist example
	  Allows playing the timeline repeatedly a certain number of times

2010-05-25 16:22:58 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline.c:
	  GESTimeline: Freeze state of Tracks when doing an async state change

2010-05-20 10:46:38 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/.gitignore:
	* tests/examples/Makefile.am:
	* tests/examples/concatenate.c:
	  examples: New concatenate examples.
	  Allows concatenating several files of the same type together

2010-05-20 10:44:01 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/Makefile.am:
	* ges/ges-utils.c:
	* ges/ges-utils.h:
	* ges/ges.h:
	  GES: Add a new utility file
	  API : ges_timeline_new_audio_video()

2010-05-11 15:03:33 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/.gitignore:
	  examples: Ignore some files

2010-05-20 12:29:30 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: Only remove the playsink if it was used

2010-05-19 15:50:51 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/Makefile.am:
	  docs: Use proper CFLAGS/LIBS when building docs

2010-05-19 15:50:41 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline.c:
	  GESTimeline: Remove unused variable

2010-05-19 12:39:23 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/ges/.gitignore:
	* tests/examples/.gitignore:
	  tests: ignore more files

2010-05-19 12:38:21 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/playlist.c:
	  examples: Allow setting null duration on files
	  This will make the timeline use GstDiscoverer to analyze the file.

2010-05-19 12:36:11 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline.c:
	* ges/ges-timeline.h:
	  GESTimeline: Use GstDiscoverer for incomplete filesources
	  If a GESTimelineFileSource is added to a layer and:
	  * It doesn't have specified supported formats
	  * OR it doesn't have a specified maximum duration
	  * OR it doesn't have a specifed duration
	  Then we asynchronously send it to the GstDiscoverer.
	  If this happens, the state change of the timeline from READY to
	  PAUSED will happen asynchronously and be completed when everything
	  has been properly discovered.
	  Part 2 of GstDiscoverer integration

2010-05-19 12:24:44 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-file-source.c:
	* ges/ges-timeline-file-source.h:
	* tests/check/ges/filesource.c:
	  GESTimelineFileSource: Add 'max-duration' and 'supported-formats' properties
	  * max-duration is the total length of the File.
	  * supported-formats is the various track types this filesource can produce
	  trackobjects for. This should maybe be moved to parent classes in the
	  future
	  Step 1 of GstDiscoverer integration

2010-05-19 12:19:37 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-object.c:
	  GESTimelineObject: Properly set default duration
	  Set it in the instance_init to GST_SECOND, But let the subclasses override
	  it.
	  This allows subclasses to set a different default duration

2010-05-19 12:14:34 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	  GESSimpleTimelineLayer: Recalculate positions when object duration change
	  This ensures that if someone changes the duration, the clips still remain
	  contiguous and in the proper order.

2010-05-18 19:07:27 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* configure.ac:
	* ges/Makefile.am:
	  configure: Depend on gstreamer-discoverer

2010-05-18 17:43:28 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track.c:
	* ges/ges-track.h:
	  GESTrack: Make GESTrackType a flag, and add GES_TRACK_TYPE_UNKNOWN
	  Also add a bit more documentation about it.

2010-05-18 15:19:06 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/.gitignore:
	* docs/libs/doc-registry.xml:
	* docs/libs/ges-decl-list.txt.bak:
	* docs/libs/ges-decl.txt.bak:
	* docs/libs/html/GESCustomTimelineSource.html:
	* docs/libs/html/GESSimpleTimelineLayer.html:
	* docs/libs/html/GESTimeline.html:
	* docs/libs/html/GESTimelineFileSource.html:
	* docs/libs/html/GESTimelineLayer.html:
	* docs/libs/html/GESTimelineObject.html:
	* docs/libs/html/GESTimelinePipeline.html:
	* docs/libs/html/GESTimelineSource.html:
	* docs/libs/html/GESTimelineTransition.html:
	* docs/libs/html/GESTrack.html:
	* docs/libs/html/GESTrackFileSource.html:
	* docs/libs/html/GESTrackObject.html:
	* docs/libs/html/GESTrackSource.html:
	* docs/libs/html/api-index-full.html:
	* docs/libs/html/architecture.xml:
	* docs/libs/html/ch01.html:
	* docs/libs/html/ch02.html:
	* docs/libs/html/ch03.html:
	* docs/libs/html/ch04.html:
	* docs/libs/html/ges-Initialization.html:
	* docs/libs/html/ges-architecture.html:
	* docs/libs/html/ges-hierarchy.html:
	* docs/libs/html/ges.devhelp:
	* docs/libs/html/ges.devhelp2:
	* docs/libs/html/home.png:
	* docs/libs/html/index.html:
	* docs/libs/html/index.sgml:
	* docs/libs/html/layer_track_overview.png:
	* docs/libs/html/left.png:
	* docs/libs/html/right.png:
	* docs/libs/html/style.css:
	* docs/libs/html/up.png:
	* docs/libs/tmpl/ges-common.sgml:
	* docs/libs/tmpl/ges-common.sgml.bak:
	* docs/libs/tmpl/ges-custom-timeline-source.sgml:
	* docs/libs/tmpl/ges-custom-timeline-source.sgml.bak:
	* docs/libs/tmpl/ges-simple-timeline-layer.sgml:
	* docs/libs/tmpl/ges-simple-timeline-layer.sgml.bak:
	* docs/libs/tmpl/ges-timeline-filesource.sgml:
	* docs/libs/tmpl/ges-timeline-filesource.sgml.bak:
	* docs/libs/tmpl/ges-timeline-layer.sgml:
	* docs/libs/tmpl/ges-timeline-layer.sgml.bak:
	* docs/libs/tmpl/ges-timeline-object.sgml:
	* docs/libs/tmpl/ges-timeline-object.sgml.bak:
	* docs/libs/tmpl/ges-timeline-pipeline.sgml:
	* docs/libs/tmpl/ges-timeline-pipeline.sgml.bak:
	* docs/libs/tmpl/ges-timeline-source.sgml:
	* docs/libs/tmpl/ges-timeline-source.sgml.bak:
	* docs/libs/tmpl/ges-timeline-transition.sgml:
	* docs/libs/tmpl/ges-timeline-transition.sgml.bak:
	* docs/libs/tmpl/ges-timeline.sgml:
	* docs/libs/tmpl/ges-timeline.sgml.bak:
	* docs/libs/tmpl/ges-track-filesource.sgml:
	* docs/libs/tmpl/ges-track-filesource.sgml.bak:
	* docs/libs/tmpl/ges-track-object.sgml:
	* docs/libs/tmpl/ges-track-object.sgml.bak:
	* docs/libs/tmpl/ges-track-source.sgml:
	* docs/libs/tmpl/ges-track-source.sgml.bak:
	* docs/libs/tmpl/ges-track.sgml:
	* docs/libs/tmpl/ges-track.sgml.bak:
	* docs/libs/tmpl/ges-unused.sgml:
	* docs/libs/xml/api-index-deprecated.xml:
	* docs/libs/xml/api-index-full.xml:
	* docs/libs/xml/ges-common.xml:
	* docs/libs/xml/ges-custom-timeline-source.xml:
	* docs/libs/xml/ges-doc.bottom:
	* docs/libs/xml/ges-doc.top:
	* docs/libs/xml/ges-simple-timeline-layer.xml:
	* docs/libs/xml/ges-timeline-filesource.xml:
	* docs/libs/xml/ges-timeline-layer.xml:
	* docs/libs/xml/ges-timeline-object.xml:
	* docs/libs/xml/ges-timeline-pipeline.xml:
	* docs/libs/xml/ges-timeline-source.xml:
	* docs/libs/xml/ges-timeline-transition.xml:
	* docs/libs/xml/ges-timeline.xml:
	* docs/libs/xml/ges-track-filesource.xml:
	* docs/libs/xml/ges-track-object.xml:
	* docs/libs/xml/ges-track-source.xml:
	* docs/libs/xml/ges-track.xml:
	* docs/libs/xml/object_index.sgml:
	* docs/libs/xml/tree_index.sgml:
	* docs/libs/xml/version.entities:
	  docs: And remove all the stuff that's meant to be generated at runtime

2010-05-18 12:56:24 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/doc-registry.xml:
	* docs/libs/ges-decl-list.txt.bak:
	* docs/libs/ges-decl.txt.bak:
	* docs/libs/ges-sections.txt:
	* docs/libs/html/GESCustomTimelineSource.html:
	* docs/libs/html/GESSimpleTimelineLayer.html:
	* docs/libs/html/GESTimeline.html:
	* docs/libs/html/GESTimelineFileSource.html:
	* docs/libs/html/GESTimelineLayer.html:
	* docs/libs/html/GESTimelineObject.html:
	* docs/libs/html/GESTimelinePipeline.html:
	* docs/libs/html/GESTimelineSource.html:
	* docs/libs/html/GESTimelineTransition.html:
	* docs/libs/html/GESTrack.html:
	* docs/libs/html/GESTrackFileSource.html:
	* docs/libs/html/GESTrackObject.html:
	* docs/libs/html/GESTrackSource.html:
	* docs/libs/html/api-index-full.html:
	* docs/libs/html/architecture.xml:
	* docs/libs/html/ch01.html:
	* docs/libs/html/ch02.html:
	* docs/libs/html/ch03.html:
	* docs/libs/html/ch04.html:
	* docs/libs/html/ges-Initialization.html:
	* docs/libs/html/ges-architecture.html:
	* docs/libs/html/ges-hierarchy.html:
	* docs/libs/html/ges.devhelp:
	* docs/libs/html/ges.devhelp2:
	* docs/libs/html/home.png:
	* docs/libs/html/index.html:
	* docs/libs/html/index.sgml:
	* docs/libs/html/layer_track_overview.png:
	* docs/libs/html/left.png:
	* docs/libs/html/right.png:
	* docs/libs/html/style.css:
	* docs/libs/html/up.png:
	* docs/libs/tmpl/ges-common.sgml:
	* docs/libs/tmpl/ges-common.sgml.bak:
	* docs/libs/tmpl/ges-custom-timeline-source.sgml:
	* docs/libs/tmpl/ges-custom-timeline-source.sgml.bak:
	* docs/libs/tmpl/ges-simple-timeline-layer.sgml:
	* docs/libs/tmpl/ges-simple-timeline-layer.sgml.bak:
	* docs/libs/tmpl/ges-timeline-filesource.sgml:
	* docs/libs/tmpl/ges-timeline-filesource.sgml.bak:
	* docs/libs/tmpl/ges-timeline-layer.sgml:
	* docs/libs/tmpl/ges-timeline-layer.sgml.bak:
	* docs/libs/tmpl/ges-timeline-object.sgml:
	* docs/libs/tmpl/ges-timeline-object.sgml.bak:
	* docs/libs/tmpl/ges-timeline-pipeline.sgml:
	* docs/libs/tmpl/ges-timeline-pipeline.sgml.bak:
	* docs/libs/tmpl/ges-timeline-source.sgml:
	* docs/libs/tmpl/ges-timeline-source.sgml.bak:
	* docs/libs/tmpl/ges-timeline-transition.sgml:
	* docs/libs/tmpl/ges-timeline-transition.sgml.bak:
	* docs/libs/tmpl/ges-timeline.sgml:
	* docs/libs/tmpl/ges-timeline.sgml.bak:
	* docs/libs/tmpl/ges-track-filesource.sgml:
	* docs/libs/tmpl/ges-track-filesource.sgml.bak:
	* docs/libs/tmpl/ges-track-object.sgml:
	* docs/libs/tmpl/ges-track-object.sgml.bak:
	* docs/libs/tmpl/ges-track-source.sgml:
	* docs/libs/tmpl/ges-track-source.sgml.bak:
	* docs/libs/tmpl/ges-track.sgml:
	* docs/libs/tmpl/ges-track.sgml.bak:
	* docs/libs/tmpl/ges-unused.sgml:
	* docs/libs/xml/api-index-deprecated.xml:
	* docs/libs/xml/api-index-full.xml:
	* docs/libs/xml/ges-common.xml:
	* docs/libs/xml/ges-custom-timeline-source.xml:
	* docs/libs/xml/ges-doc.bottom:
	* docs/libs/xml/ges-doc.top:
	* docs/libs/xml/ges-simple-timeline-layer.xml:
	* docs/libs/xml/ges-timeline-filesource.xml:
	* docs/libs/xml/ges-timeline-layer.xml:
	* docs/libs/xml/ges-timeline-object.xml:
	* docs/libs/xml/ges-timeline-pipeline.xml:
	* docs/libs/xml/ges-timeline-source.xml:
	* docs/libs/xml/ges-timeline-transition.xml:
	* docs/libs/xml/ges-timeline.xml:
	* docs/libs/xml/ges-track-filesource.xml:
	* docs/libs/xml/ges-track-object.xml:
	* docs/libs/xml/ges-track-source.xml:
	* docs/libs/xml/ges-track.xml:
	* docs/libs/xml/object_index.sgml:
	* docs/libs/xml/tree_index.sgml:
	* docs/libs/xml/version.entities:
	* ges/ges-timeline-object.h:
	  GESTimelineObject: Document CreateTrackObjectFunc vmethod

2010-05-18 12:32:31 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* docs/libs/ges.types:
	* docs/libs/scanobj-build.stamp:
	  docs: Make sure hierarchy/properties/signals get built for all classes

2010-05-10 12:44:56 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: Fix 32bit runtime issues

2010-05-07 13:30:07 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: Limit encodebin buffering to 1 buffer
	  We don't need to queue more than that since we only need thread decoupling
	  and the various streams going into encodebin are guaranteed to come
	  from different streaming threads (since they're separate gnlcomposition).

2010-05-06 19:57:25 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/playlist.c:
	  examples: Add option to specify video restriction
	  Some encoders don't handle _get_caps() properly :(

2010-04-27 11:45:15 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: Remove unused variable/label.

2010-04-20 13:41:20 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: Cleanup properly when pads are removed

2010-04-20 13:26:00 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: Implement smart rendering

2010-04-20 13:08:27 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/Makefile.am:
	* tests/examples/playlist.c:
	  examples: New playlist examples
	  Allows giving lists of file/start/duration triplets and testing the
	  various timeline-pipeline modes (preview, render, smart-render)

2010-04-20 13:04:31 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/Makefile.am:
	  check: Use GST_CFLAGS so we get new compilation flags

2010-04-20 13:00:38 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	* ges/ges-timeline-pipeline.h:
	  GESTimelinePipeline: Store encoding profile

2010-04-20 12:59:26 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.h:
	  GESTimelinePipeline: New Smart Render mode

2010-04-20 12:57:53 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: new functions to search/create OutputChain

2010-04-20 12:53:51 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: Remove unused code

2010-04-20 12:50:34 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track.c:
	  GESTrack: set caps on the composition
	  This will allow them to be propagated to all objects contained within

2010-04-20 12:50:09 +0200  Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	* ges/ges-timeline.c:
	  GESTimeLine(PipeLine): remove additional unref

2010-04-20 12:47:22 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* configure.ac:
	  configure.ac : round of cleanup
	  Add extra CFLAGS
	  Change GST_CVS to GST_GIT
	  Add -DGST_USE_UNSTABLE_API for gstprofile, since we know it's unstable.

2010-04-20 12:28:59 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/Makefile.am:
	  ges: Link gstprofile

2010-04-20 11:48:21 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline.c:
	* ges/ges-timeline.h:
	  GESTimeline: New method ges_timeline_get_tracks

2010-03-13 16:43:59 +0100  Edward Hervey <bilboed@bilboed.com>

	* tests/examples/Makefile.am:
	* tests/examples/simple1.c:
	  examples: Simple Audio/Video example
	  Currently one can:
	  * Give a multimedia file
	  * modify the inpoint
	  * modify the duration
	  * mute the audio

2010-03-13 16:05:37 +0100  Edward Hervey <bilboed@bilboed.com>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: Fix minor bug in get_compatible_unlinked_pad
	  We weren't breaking and ended up doing a fallthrough to the loop
	  completion.

2010-03-13 15:53:16 +0100  Edward Hervey <bilboed@bilboed.com>

	* ges/ges-timeline-object.h:
	  GESTimelineObject: Fix doc of priority property

2010-03-13 15:51:16 +0100  Edward Hervey <bilboed@bilboed.com>

	* ges/ges-track-filesource.c:
	  GESTrackFileSource: Don't forget to free the URI string

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

	* tests/check/Makefile.am:
	* tests/check/ges/layer.c:
	  tests: Add unit test for layer property.
	  Still needs more work though

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

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-layer.c:
	* ges/ges-timeline-layer.h:
	  GESTimelineLayer: Add a 'priority' property

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

	* ges/ges-timeline.c:
	  GESTimeline: Properly iterate TrackObject lists when removing them

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

	* tests/check/ges/basic.c:
	  tests: Check refcount of created trackobjects

2010-03-13 15:52:14 +0100  Edward Hervey <bilboed@bilboed.com>

	* ges/ges-timeline-object.c:
	* tests/check/ges/filesource.c:
	  GESTimelineObject: Don't leak a reference when creating TrackObject

2010-03-12 17:17:30 +0100  Edward Hervey <bilboed@bilboed.com>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-object.c:
	* ges/ges-timeline-object.h:
	  GESTimelineObject: new API : _find_track_object
	  This allows getting the TrackObject for a corresponding TimelineObject
	  and Track combination

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

	* Makefile.am:
	* configure.ac:
	  configure: use automake 1. 11 silent rules instead of shave if available

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

	* common:
	  common: Update to latest common

2010-03-11 11:06:50 +0100  Edward Hervey <bilboed@bilboed.com>

	* .gitignore:
	* tests/check/ges/.gitignore:
	* tests/examples/.gitignore:
	  ignore more files

2010-03-05 16:10:13 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/Makefile.am:
	  examples: Fix linking/include order

2010-03-05 15:50:49 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/ges/filesource.c:
	  check: Add a test for checking timelinefilesource properties
	  This include the mute feature

2010-02-09 17:45:42 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/Makefile.am:
	  examples: Use profile LIBS
	  and fix a typo with GST_LIBS

2010-02-09 17:44:54 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* configure.ac:
	  configure.ac: gst-profile is now a standalone pkgconfig

2010-01-20 11:09:56 +0100  Jarkko Pallviainen <ext-jarkko.palviainen@nokia.com>

	* tests/examples/test1.c:
	  examples: Fix build on 32bit systems

2010-01-08 18:21:08 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: Add comment for _set_render_settings

2010-01-08 18:16:16 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/Makefile.am:
	* tests/examples/test4.c:
	  examples: test4: variant of test3 with rendering.
	  Usage: ./test4 output_uri audio_files
	  This will render in ogg/vorbis the first seconds of all the provided
	  audio files to the output_uri
	  Ex : ./test4 file:///data/audio1s.ogg /data/music/*.ogg

2010-01-08 18:14:46 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: Also get static pads for static pads from encodebin.
	  This is for the cases where the provided GstStreamEncodingProfile has
	  a non-zero presence.

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

	* configure.ac:
	  configure.ac: detect gst-convenience

2009-12-11 15:24:56 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-custom-timeline-source.h:
	* ges/ges-timeline-pipeline.c:
	* ges/ges-track-object.h:
	  ges: Small doc fixups

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

	* tests/check/ges/timelineobject.c:
	  tests: Fix macro by making it use the proper argument types

2009-12-11 15:16:26 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/Makefile.am:
	  tests: Fix linking order.
	  This ensures that "make check" will run with the local libraries and not
	  the system-wide ones

2009-12-11 15:15:29 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-object.c:
	  GESTimelineObject: Move property setting to an earlier stage.
	  This ensures that any properties set on the TimelineObject will be
	  propagated to the created TrackObjects just after they're created

2009-12-11 15:13:19 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	  GESTrackObject: Store pending values when GnlObject isn't created yet

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

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: Sync state of newly added element to container

2009-12-09 15:03:30 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: Don't forget to remember the mode

2009-12-09 15:03:15 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-file-source.c:
	  GESTimelineFileSource: Properly handle mute
	  mute != active

2009-12-09 12:22:34 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: More render support

2009-12-04 10:49:32 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-pipeline.c:
	* ges/ges-timeline-pipeline.h:
	  GESTimelinePipeline: beginning of render support

2009-11-30 15:14:25 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-custom-timeline-source.c:
	* ges/ges-custom-timeline-source.h:
	* ges/ges-internal.h:
	* ges/ges-simple-timeline-layer.c:
	* ges/ges-simple-timeline-layer.h:
	* ges/ges-timeline-file-source.c:
	* ges/ges-timeline-file-source.h:
	* ges/ges-timeline-layer.c:
	* ges/ges-timeline-layer.h:
	* ges/ges-timeline-object.c:
	* ges/ges-timeline-object.h:
	* ges/ges-timeline-pipeline.c:
	* ges/ges-timeline-pipeline.h:
	* ges/ges-timeline-source.c:
	* ges/ges-timeline-source.h:
	* ges/ges-timeline-transition.c:
	* ges/ges-timeline-transition.h:
	* ges/ges-timeline.c:
	* ges/ges-timeline.h:
	* ges/ges-track-filesource.c:
	* ges/ges-track-filesource.h:
	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	* ges/ges-track-source.c:
	* ges/ges-track-source.h:
	* ges/ges-track.c:
	* ges/ges-track.h:
	* ges/ges-types.h:
	* ges/ges.c:
	* ges/ges.h:
	  ges/: Fix copyright in headers

2009-11-30 15:14:06 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* AUTHORS:
	  AUTHORS: Add myself

2009-11-25 13:13:49 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-file-source.c:
	  timelinefilesource: Free URI when finalizing

2009-11-25 13:11:32 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track-object.c:
	  trackobject: priority is a uint32

2009-11-25 12:53:13 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/ges/timelineobject.c:
	  tests: release TrackObject when we're done with it

2009-11-25 12:52:50 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/ges/simplelayer.c:
	* tests/check/ges/timelineobject.c:
	  tests: Don't forget to cast to guint64 when using g_object_set
	  ... else total failure ensues on 32bit machines

2009-11-25 11:56:58 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-object.c:
	  TimelineObject: Add missing argument to printf statement

2009-11-25 11:55:50 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-custom-timeline-source.c:
	  customtimelinesource: Fix indentation

2009-11-25 11:14:02 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/working-diagrams.svg:
	  docs: updates to working diagram, still needs more love

2009-11-15 18:23:33 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* configure.ac:
	* docs/libs/Makefile.am:
	* docs/libs/architecture.xml:
	* docs/libs/layer_track_overview.png:
	* docs/working-diagrams.svg:
	  docs: Improve docs some more

2009-11-12 20:11:28 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* common:
	* docs/libs/Makefile.am:
	* docs/libs/architecture.xml:
	* docs/libs/ges-docs.sgml:
	* docs/libs/ges-sections.txt:
	* docs/libs/ges.types:
	* ges/ges.c:
	  docs: Add overview and architecture document and cleanup docs more.

2009-11-12 19:14:35 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/design/gstprofile.h:
	  docs: Update to gstprofile header

2009-11-09 15:55:06 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* .gitignore:
	  ignore more files

2009-11-09 15:54:18 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* m4/Makefile.am:
	* m4/codeset.m4:
	* m4/gettext.m4:
	* m4/glibc2.m4:
	* m4/glibc21.m4:
	* m4/iconv.m4:
	* m4/intdiv0.m4:
	* m4/intl.m4:
	* m4/intldir.m4:
	* m4/intlmacosx.m4:
	* m4/intmax.m4:
	* m4/inttypes-pri.m4:
	* m4/inttypes_h.m4:
	* m4/lcmessage.m4:
	* m4/lib-ld.m4:
	* m4/lib-link.m4:
	* m4/lib-prefix.m4:
	* m4/libtool.m4:
	* m4/lock.m4:
	* m4/longlong.m4:
	* m4/ltoptions.m4:
	* m4/ltsugar.m4:
	* m4/ltversion.m4:
	* m4/lt~obsolete.m4:
	* m4/nls.m4:
	* m4/po.m4:
	* m4/printf-posix.m4:
	* m4/progtest.m4:
	* m4/size_max.m4:
	* m4/stdint_h.m4:
	* m4/uintmax_t.m4:
	* m4/visibility.m4:
	* m4/wchar_t.m4:
	* m4/wint_t.m4:
	* m4/xsize.m4:
	  remove m4/*.m4, will be automatically created by autogen.sh

2009-11-05 10:22:57 +0100  Edward Hervey <edward.hervey@collabora.co.uk>

	* common:
	  update common submodule version used

2009-10-22 17:37:54 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	  docs: Add missing symbol to documentation

2009-10-19 18:32:23 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/design/encoding-research.txt:
	* docs/design/encoding.txt:
	* docs/design/gstprofile.h:
	  docs/design: Fixups/additions based on feedback

2009-10-07 16:23:22 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/design/encoding-research.txt:
	* docs/design/encoding.txt:
	* docs/design/gstencodebin.h:
	* docs/design/gstprofile.h:
	  docs/design: Add encoding/profile proposal/design

2009-09-30 16:45:13 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/Makefile.am:
	* tests/check/ges/timelineobject.c:
	  tests: New unit test for GESTimelineObject

2009-09-30 16:44:41 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-object.c:
	  GESTimelineObject: First set the duration and priority before the inpoint.

2009-09-30 16:44:12 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-file-source.c:
	* ges/ges-timeline-file-source.h:
	  GESTimelineFileSource: Add a 'mute' property.
	  This property deactivates the audio trackobjects if set to TRUE

2009-09-30 16:43:12 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track-object.c:
	  GESTrackObject: Listen to property change from gnlobject
	  TODO: add/emit the 'changed' signal

2009-09-30 16:42:31 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track-object.h:
	  GESTrackObject: Add convenience macros for accessing properties

2009-09-30 16:42:08 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track-object.c:
	  GESTrackObject: Set sane default values

2009-09-30 16:40:59 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	  GESTrackObject: Add 'active' property.
	  This property allows (de)activating a track object

2009-09-29 15:32:23 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/Makefile.am:
	* tests/examples/test3.c:
	  tests/examples: test3, same as test2, but uses a SimpleTimelineLayer

2009-09-29 15:29:11 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/Makefile.am:
	* tests/check/ges/simplelayer.c:
	  tests/check: Add test for GESSimpleTimelineLayer

2009-09-29 15:27:55 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	* ges/ges-simple-timeline-layer.h:
	  GESSimpleTimelineLayer: Implement add()/move() and parent class changes
	  If changes happen when accessing the GESTimelineLayer API, they will be taken
	  into account.

2009-09-29 15:27:17 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-layer.h:
	  ges-timeline-layer.h: Add comment

2009-09-29 15:25:54 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-timeline-object.h:
	  ges-timeline-object: Add convenience macros

2009-09-21 18:11:19 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/Makefile.am:
	* tests/examples/test2.c:
	  tests/example: New small example of timeline file sources.
	  This examples takes a list of files with audio tracks, and plays the first
	  second of each.
	  This demonstrates the usage of GESTimelineFileSource

2009-09-21 18:08:51 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/Makefile.am:
	* tests/check/ges/filesource.c:
	  tests/check: New test for GESTimelineFileSource

2009-09-21 12:51:16 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-docs.sgml:
	* docs/libs/ges-sections.txt:
	* ges/Makefile.am:
	* ges/ges-timeline-file-source.c:
	* ges/ges-timeline-file-source.h:
	* ges/ges-timeline-object.c:
	* ges/ges-timeline-object.h:
	* ges/ges-track-filesource.c:
	* ges/ges-track-filesource.h:
	* ges/ges-types.h:
	* ges/ges.h:
	  New GESTimelineFileSource and GESTrackFileSource classes

2009-09-16 12:37:45 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-custom-timeline-source.c:
	* ges/ges-custom-timeline-source.h:
	* ges/ges-simple-timeline-layer.c:
	* ges/ges-simple-timeline-layer.h:
	* ges/ges-timeline-layer.c:
	* ges/ges-timeline-object.c:
	* ges/ges-timeline-object.h:
	* ges/ges-timeline-pipeline.c:
	* ges/ges-timeline.c:
	  Finish public API documentation

2009-09-16 12:37:13 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-docs.sgml:
	  docs: Add index and object hierarchy

2009-09-14 19:45:43 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/ges/basic.c:
	  tests: Make basic test check for proper reference counting.

2009-09-14 19:44:03 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track.c:
	  GESTrack: The track steals the refcount to the caps. document that.

2009-09-14 19:42:58 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/.gitignore:
	  docs/libs: ignore more files

2009-09-14 19:24:28 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline.c:
	  GESTimeline: Fix reference counting of tracks, add docs.

2009-09-14 19:23:52 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-layer.c:
	  GESTimelineLayer: Fix reference handling of objects, add docs.

2009-09-14 19:23:21 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* configure.ac:
	  configure.ac: Require latest gst-plugins-base for 'playsink'

2009-09-14 17:00:13 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline.h:
	  GESTimeline: start more documentation

2009-09-14 16:33:25 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	  GESTrackObject: Document some more

2009-09-14 15:51:49 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-sections.txt:
	* ges/ges-track.c:
	  GESTrack: document more

2009-09-10 18:17:38 +0100  Tim-Philipp Müller <tim.muller@collabora.co.uk>

	* docs/libs/Makefile.am:
	* docs/libs/ges.types:
	  docs: fix gtk-doc build and make distcheck for me

2009-09-10 18:53:31 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/test1.c:
	  Document first high-level demo.

2009-09-10 18:40:51 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/libs/ges-docs.sgml:
	* docs/libs/ges-sections.txt:
	* ges/ges-custom-timeline-source.c:
	* ges/ges-simple-timeline-layer.c:
	* ges/ges-timeline-layer.c:
	* ges/ges-timeline-object.c:
	* ges/ges-timeline-pipeline.c:
	* ges/ges-timeline-source.c:
	* ges/ges-timeline-transition.c:
	* ges/ges-timeline.c:
	* ges/ges-track-object.c:
	* ges/ges-track-source.c:
	* ges/ges-track.c:
	* ges/ges-track.h:
	* ges/ges.c:
	  More documentation. Coverage now at 25%

2009-09-10 16:23:12 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/random/scenarios:
	* docs/scenarios:
	  docs: move working document

2009-09-10 16:22:00 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* Makefile.am:
	* configure.ac:
	* docs/Makefile.am:
	* docs/libs/Makefile.am:
	* docs/libs/ges-docs.sgml:
	* docs/libs/ges-sections.txt:
	* docs/libs/scanobj-build.stamp:
	* docs/version.entities.in:
	  docs: Add gtk-doc API documentation
	  current coverage : 8%

2009-09-09 15:53:53 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/test1.c:
	  test1: Expand example to also use an audio track.

2009-09-09 15:51:52 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline.c:
	  GESTimeline: Make sure added ghostpads are unique.

2009-09-09 13:57:37 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/test1.c:
	  test1: Actually change videotestsrc patterns to make changes obvious.

2009-09-09 13:55:30 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/test1.c:
	  test1: Use mainloop, required for proper gnonlin behaviour.

2009-09-09 12:42:29 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	  GESTimelinePipeline: Reconfigure playsink once we've added a pad.

2009-09-08 19:46:54 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/examples/test1.c:
	  examples: Add timeline to pipeline and set it to playing.
	  ... and now we need to go an fix playsink :)

2009-09-08 19:46:26 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/ges/basic.c:
	  test/ges/basic: Adapt to API changes.

2009-09-08 19:45:08 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	* ges/ges-timeline-pipeline.h:
	  GESTimelinePipeline: Use 'playsink', track added/removed pads.
	  Also add a method to set a GESTimeline on the pipeline.

2009-09-08 19:44:03 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline.c:
	* ges/ges-timeline.h:
	  GESTimeline: Track internal pads and tracks in sync.
	  Add method to get the Track associated to a ghostpad.

2009-09-08 18:55:41 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* .gitignore:
	  gitignore: Ignore more files

2009-09-08 18:49:22 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track.c:
	* ges/ges-track.h:
	  GESTrack: Add TrackType enum and constructor property.
	  This allows us to speed up detection of track content type.

2009-09-08 18:47:46 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-custom-timeline-source.c:
	  CustomTimelineSource: Fix typo in debug statement

2009-09-07 15:46:44 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-pipeline.c:
	* ges/ges-timeline-pipeline.h:
	  GESTimelinePipeline: Fix typo

2009-08-07 20:33:40 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track-object.c:
	  TrackObject: Add debugging and make default duration 1s

2009-08-07 20:33:18 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-object.c:
	* ges/ges-timeline-object.h:
	  TimelineObject: Add start/inpoint/duration/priority properties and propagate them

2009-08-07 20:32:47 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track.c:
	* ges/ges-track.h:
	  Track: Handle pads

2009-08-07 20:32:29 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track.c:
	* ges/ges-track.h:
	  Track: Add convenience methods for creating a raw Audio or Video track.

2009-08-07 20:31:11 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-custom-timeline-source.c:
	* ges/ges-custom-timeline-source.h:
	* tests/check/ges/basic.c:
	  CustomTimelineSource: Allow giving user_data to the callback

2009-08-07 20:29:35 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* configure.ac:
	* tests/Makefile.am:
	* tests/examples/Makefile.am:
	* tests/examples/test1.c:
	  Add directory for examples along with a minimalistic first example.

2009-08-07 18:18:42 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	* ges/ges-track.c:
	* ges/ges-track.h:
	* tests/check/ges/basic.c:
	  Add 'caps' property on Track

2009-08-07 17:09:59 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* COPYING:
	* COPYING.LIB:
	* INSTALL:
	* Makefile.am:
	* RELEASE:
	* ges/Makefile.am:
	* gst-editing-services.doap:
	  Fix build. Can now run make distcheck.

2009-08-07 16:51:49 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track.c:
	  Track: Add/Remove the GnlComposition from ourself.

2009-08-07 16:47:18 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/ges/basic.c:
	  tests/ges/basic: Extend test to remove the object.

2009-08-07 16:46:57 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track-source.h:
	  TrackSource: Include TrackObject header file

2009-08-07 16:46:35 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges.c:
	  ges.c: Add debug line to inform of initialization

2009-08-07 16:45:16 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/Makefile.am:
	* ges/ges-custom-timeline-source.c:
	* ges/ges-custom-timeline-source.h:
	* ges/ges-types.h:
	* ges/ges.h:
	  New CustomTimelineSource class.

2009-08-07 16:43:49 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track.c:
	* ges/ges-track.h:
	  Track: Implement remove_object()

2009-08-07 16:43:01 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	  TrackObject: Add 'valid' property, Make _set_track() return a bool

2009-08-07 16:41:23 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline.c:
	  Timeline: Implement remove_track, remove_layer, and _layer_object_removed_cb

2009-08-07 16:40:51 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-source.c:
	* ges/ges-timeline-source.h:
	  TimelineSource: Implenent _create_track_object() virtual-method

2009-08-07 16:39:45 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-object.c:
	* ges/ges-timeline-object.h:
	  TimelineObject: Implement _release_track_object()

2009-08-07 16:39:09 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-timeline-layer.c:
	* ges/ges-timeline-layer.h:
	  TimelineLayer: Implement _remove_object()

2009-08-06 20:04:59 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* tests/check/ges/basic.c:
	  tests: Add a simple scenario

2009-08-06 19:59:25 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/ges-simple-timeline-layer.c:
	* ges/ges-timeline-layer.c:
	* ges/ges-timeline-object.c:
	* ges/ges-timeline-pipeline.c:
	* ges/ges-timeline-source.c:
	* ges/ges-timeline-transition.c:
	* ges/ges-timeline.c:
	* ges/ges-track-object.c:
	* ges/ges-track.c:
	  ges: Remove unused private structures. We'll re-add on a per-case basis.

2009-08-06 19:51:29 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* Makefile.am:
	* configure.ac:
	* ges/Makefile.am:
	* ges/ges-internal.h:
	* ges/ges-simple-timeline-layer.c:
	* ges/ges-timeline-layer.c:
	* ges/ges-timeline-object.c:
	* ges/ges-timeline-pipeline.c:
	* ges/ges-timeline-source.c:
	* ges/ges-timeline-transition.c:
	* ges/ges-timeline.c:
	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	* ges/ges-track-source.c:
	* ges/ges-track.c:
	* ges/ges.c:
	* ges/ges.h:
	* tests/Makefile.am:
	* tests/check/Makefile.am:
	* tests/check/ges/basic.c:
	  Add unit test system. Adjust GST_DEBUG usage.

2009-08-06 18:54:01 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/Makefile.am:
	* ges/ges-track-source.c:
	* ges/ges-track-source.h:
	* ges/ges-types.h:
	* ges/ges.h:
	  Add new GESTrackSource

2009-08-06 17:38:43 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/scenarios:
	* ges/ges-simple-timeline-layer.c:
	* ges/ges-timeline-layer.c:
	* ges/ges-timeline-layer.h:
	* ges/ges-timeline-object.c:
	* ges/ges-timeline-object.h:
	* ges/ges-timeline-pipeline.c:
	* ges/ges-timeline-source.c:
	* ges/ges-timeline-source.h:
	* ges/ges-timeline-transition.c:
	* ges/ges-timeline.c:
	* ges/ges-timeline.h:
	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	* ges/ges-track.c:
	* ges/ges-track.h:
	  intermediary commit. Still need to fill in more blanks :(

2009-08-06 12:47:38 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/Makefile.am:
	* ges/gesmarshal.list:
	  Add signal marshalling code

2009-08-06 12:14:37 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* Makefile.am:
	* autogen.sh:
	* configure.ac:
	* ges/Makefile.am:
	* ges/ges-simple-timeline-layer.h:
	* ges/ges-timeline-layer.h:
	* ges/ges-timeline-object.c:
	* ges/ges-timeline-object.h:
	* ges/ges-timeline-pipeline.h:
	* ges/ges-timeline-source.h:
	* ges/ges-timeline-transition.h:
	* ges/ges-timeline.h:
	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	* ges/ges-track.h:
	* ges/ges-types.h:
	* ges/ges.h:
	  build fixed again. Moved type declarations in a standalone file.

2009-08-06 11:24:04 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* ges/Makefile.am:
	* ges/ges-simple-timeline-layer.c:
	* ges/ges-simple-timeline-layer.h:
	* ges/ges-timeline-layer.c:
	* ges/ges-timeline-layer.h:
	* ges/ges-timeline-object.c:
	* ges/ges-timeline-object.h:
	* ges/ges-timeline-pipeline.c:
	* ges/ges-timeline-pipeline.h:
	* ges/ges-timeline-source.c:
	* ges/ges-timeline-source.h:
	* ges/ges-timeline-transition.c:
	* ges/ges-timeline-transition.h:
	* ges/ges-timeline.c:
	* ges/ges-timeline.h:
	* ges/ges-track-object.c:
	* ges/ges-track-object.h:
	* ges/ges-track.c:
	* ges/ges-track.h:
	* ges/ges.c:
	* ges/ges.h:
	* src/Makefile.am:
	* src/ges-simple-timeline-layer.c:
	* src/ges-simple-timeline-layer.h:
	* src/ges-timeline-layer.c:
	* src/ges-timeline-layer.h:
	* src/ges-timeline-object.c:
	* src/ges-timeline-object.h:
	* src/ges-timeline-pipeline.c:
	* src/ges-timeline-pipeline.h:
	* src/ges-timeline-source.c:
	* src/ges-timeline-source.h:
	* src/ges-timeline-transition.c:
	* src/ges-timeline-transition.h:
	* src/ges-timeline.c:
	* src/ges-timeline.h:
	* src/ges-track-object.c:
	* src/ges-track-object.h:
	* src/ges-track.c:
	* src/ges-track.h:
	* src/ges.c:
	* src/ges.h:
	  src/ => ges/

2009-08-06 11:23:01 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* docs/scenarios:
	* src/Makefile.am:
	* src/ges-simple-timeline-layer.h:
	* src/ges-timeline-object.c:
	* src/ges-timeline-object.h:
	* src/ges-timeline.h:
	* src/ges-track-object.c:
	* src/ges-track-object.h:
	* src/ges-track.h:
	* src/ges.c:
	* src/ges.h:
	  MORE HACKING

2009-08-04 19:27:07 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* README:
	  README: Mention license

2009-08-04 19:21:49 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* .gitignore:
	  .gitignore: ignore cruft

2009-08-04 17:16:31 +0200  Edward Hervey <edward.hervey@collabora.co.uk>

	* .gitmodules:
	* AUTHORS:
	* ChangeLog:
	* Makefile.am:
	* NEWS:
	* autogen.sh:
	* common:
	* configure.ac:
	* gst-editing-services.spec.in:
	* m4/Makefile.am:
	* m4/codeset.m4:
	* m4/gettext.m4:
	* m4/glibc2.m4:
	* m4/glibc21.m4:
	* m4/iconv.m4:
	* m4/intdiv0.m4:
	* m4/intl.m4:
	* m4/intldir.m4:
	* m4/intlmacosx.m4:
	* m4/intmax.m4:
	* m4/inttypes-pri.m4:
	* m4/inttypes_h.m4:
	* m4/lcmessage.m4:
	* m4/lib-ld.m4:
	* m4/lib-link.m4:
	* m4/lib-prefix.m4:
	* m4/libtool.m4:
	* m4/lock.m4:
	* m4/longlong.m4:
	* m4/ltoptions.m4:
	* m4/ltsugar.m4:
	* m4/ltversion.m4:
	* m4/lt~obsolete.m4:
	* m4/nls.m4:
	* m4/po.m4:
	* m4/printf-posix.m4:
	* m4/progtest.m4:
	* m4/size_max.m4:
	* m4/stdint_h.m4:
	* m4/uintmax_t.m4:
	* m4/visibility.m4:
	* m4/wchar_t.m4:
	* m4/wint_t.m4:
	* m4/xsize.m4:
	* src/Makefile.am:
	* src/ges-simple-timeline-layer.c:
	* src/ges-simple-timeline-layer.h:
	* src/ges-timeline-layer.c:
	* src/ges-timeline-layer.h:
	* src/ges-timeline-object.c:
	* src/ges-timeline-object.h:
	* src/ges-timeline-pipeline.c:
	* src/ges-timeline-pipeline.h:
	* src/ges-timeline-source.c:
	* src/ges-timeline-source.h:
	* src/ges-timeline-transition.c:
	* src/ges-timeline-transition.h:
	* src/ges-timeline.c:
	* src/ges-timeline.h:
	* src/ges-track-object.c:
	* src/ges-track-object.h:
	* src/ges-track.c:
	* src/ges-track.h:
	  It builds !!!! :)