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

2009-07-13  Jan Schmidt <jan.schmidt@sun.com>

	* configure.ac:
	  releasing 0.10.1, "Le Fromage De La Belle France"

2009-07-13 12:53:17 +0100  Jan Schmidt <thaytan@noraisin.net>

	* gst-libs/gst/gl/gstgldisplay.c:
	  gstgldisplay: Close a small race starting the display thread
	  Take the display lock before signalling the create-context cond
	  to ensure the caller has dropped the lock and is therefore listening
	  for the signal.

2009-07-13 12:52:31 +0100  Jan Schmidt <thaytan@noraisin.net>

	* gst-libs/gst/gl/gstglwindow_x11.c:
	  x11: Don't crash when the X11 display is not available.
	  Error out cleanly instead of crashing when the X11 display can't
	  be contacted.

2009-07-13 12:50:25 +0100  Jan Schmidt <thaytan@noraisin.net>

	* tests/check/Makefile.am:
	  check: Cleanup STATE_IGNORE_ELEMENTS env var
	  Remove elements that don't exist in this module from
	  STATE_IGNORE_ELEMENTS

2009-07-13 12:49:55 +0100  Jan Schmidt <thaytan@noraisin.net>

	* docs/libs/Makefile.am:
	  build: Fix out-of-source-tree docs build (fixes distcheck)

2009-07-13 12:08:11 +0100  Jan Schmidt <thaytan@noraisin.net>

	* gst/gl/Makefile.am:
	  build: Fix typo: gstglbumber.h -> gstglbumper.h

2009-06-28 02:03:03 +0200  Julien Isorce <julien.isorce@gmail.com>

	* po/Makevars:
	  use --no-location to avoid a msgmerge error

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

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

2009-06-25 21:32:38 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst/gl/gstgldeinterlace.c:
	  same motion compensation

2009-06-25 10:44:46 +0200  Julien Isorce <julien.isorce@gmail.com>

	* unix/codeblocks/gstopengl/gstopengl.cbp:
	  fix frozen unix CodeBlocks build

2009-06-25 01:30:44 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst/gl/CMakeLists.txt:
	* gst/gl/Makefile.am:
	* gst/gl/gstgldeinterlace.c:
	* gst/gl/gstopengl.c:
	* unix/codeblocks/gstopengl/gstopengl.cbp:
	* win32/codeblock/gstopengl.cbp:
	* win32/vs8/libgstopengl.vcproj:
	* win32/vs9/libgstopengl.vcproj:
	  fix and add gldeinterlace filter to the builds

2009-06-24 17:58:35 +0200  julien <julien@KJIS.(none)>

	* gst/gl/gstgldeinterlace.c:
	* gst/gl/gstgldeinterlace.h:
	  add a gldeinterlace filter
	  Greedyh operation implemented using OpenGL Shading Language.
	  We could add other operations later.
	  Does some good results but still not as expected.
	  That's why I do not add it yet to the build.

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

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

2009-06-12 11:33:02 +0100  Jan Schmidt <thaytan@noraisin.net>

	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	* gst/gl/gstglbumper.c:
	* gst/gl/gstglfilterapp.c:
	* gst/gl/gstglfiltercube.c:
	* gst/gl/gstglfilterglass.c:
	  fix typo
	  Change GST_GL_DISPLAY_PROJECTION_PERSPECIVE to
	  GST_GL_DISPLAY_PROJECTION_PERSPECTIVE.
	  Re-indent a couple of files that needed it.

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

	* common:
	* docs/libs/Makefile.am:
	* docs/plugins/Makefile.am:
	  docs: bump common. Use upload-doc.mak instead of upload.mak

2009-06-09 20:35:26 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst/gl/gstglimagesink.c:
	* tests/examples/gtk/switchxoverlay/main.cpp:
	  allow to switch xoverlay while being in paused state

2009-06-07 20:19:03 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstglwindow_x11.c:
	* gst-libs/gst/gl/gstglwindow_x11ES2.c:
	  fix window position when using xoverlay
	  x, y are the coordinates of the position inside
	  the new parent window.
	  Fixes #584877

2009-06-06 15:05:10 +0200  Julien Isorce <julien.isorce@gmail.com>

	* configure.ac:
	* tests/examples/gtk/switchxoverlay/Makefile.am:
	  compile switchxoverlay example

2009-06-06 14:34:57 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstglwindow_win32.c:
	* gst-libs/gst/gl/gstglwindow_winCE.c:
	* gst/gl/gstglimagesink.c:
	* gst/gl/gstglimagesink.h:
	* tests/examples/gtk/Makefile.am:
	* tests/examples/gtk/README:
	* tests/examples/gtk/gtk.sln:
	* tests/examples/gtk/switchxoverlay/Makefile.am:
	* tests/examples/gtk/switchxoverlay/main.cpp:
	* tests/examples/gtk/switchxoverlay/switchxoverlay.vcproj:
	  can switch xoverlays while playing
	  Fixes bug #584877
	  Before this commit calling "gst_x_overlay_set_xwindow_id" more
	  than one time, had no effect.
	  It mainly affects the glimagesink implementation.
	  But on win32 (and CE), some stuff has to be done to
	  release the old parent.
	  And add a switchxoverlay example where the user
	  can click on left/right part of the main window to
	  switch the xoverlay.

2009-06-04 18:49:27 +0400  LRN <lrn1986@gmail.com>

	* tests/examples/gtk/filternoxoverlay/Makefile.am:
	  Add -base libs and cflags to filternoxoverlay. Fixes bug #584681

2009-06-04 09:50:52 +0200  LRN <lrn1986@gmail.com>

	* gst/gl/Makefile.am:
	  Add gstvideo to glimagesink LIBADD. Fixes bug #584680

2009-06-04 00:27:44 +0200  LRN <lrn1986@gmail.com>

	* gst-libs/gst/gl/gstglwindow_win32.c:
	  fix miscast of a pointer in SetWindowLongPtr
	  GCC 4.4.0 complains error: cast from pointer to integer of different size
	  Fixes #584678.

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

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

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

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

2009-05-12 11:41:19 +0200  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* gst-libs/gst/gl/Makefile.am:
	  Fix linking by providing libtool the correct --tag parameter

2009-05-11 18:06:18 +0200  julien <julien@KJIS.(none)>

	* tests/examples/clutter/cluttershare.c:
	  change rotation center in cluttershare example

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

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

2009-05-09 21:30:30 +0200  Julien Isorce <julien.isorce@gmail.com>

	* tests/examples/clutter/cluttershare.c:
	  Use a more complex gst gl pipeline in the cluttershare example

2009-05-09 21:26:42 +0200  Julien Isorce <julien.isorce@gmail.com>

	* tests/examples/clutter/cluttershare.c:
	  Add a signal watch bus callback to check gst messages

2009-05-09 20:51:36 +0200  Julien Isorce <julien.isorce@gmail.com>

	* tests/examples/clutter/cluttershare.c:
	  Fix texture actor update due to a too strong thread locking.
	  On linux, the GSource func attached to the clutter_threads_add_idle
	  was not getting the cpu ressource periodically.
	  Because the use of clutter_threads_enter/leave inside the fakesink
	  callback seems to be too strong.
	  So remove the use if clutter_threads_enter/leave in the fakesink callback.
	  Then replace GQueue by GAsyncQueue to keep thread safe access to the
	  communication queues between clutter and gst-gl.
	  Call clutter_threads_add_idle with high priority.

2009-05-09 15:44:09 +0200  Julien Isorce <julien.isorce@gmail.com>

	* tests/examples/clutter/cluttershare.c:
	  Properly clean up pending gst gl buffers in cluttershare example

2009-05-09 12:55:38 +0200  Julien Isorce <julien.isorce@gmail.com>

	* configure.ac:
	* tests/examples/clutter/Makefile.am:
	  cluttershare example does not requires X
	  It works on win32 too.
	  Note that the two other clutter examples (clutteractor and clutteractortee)
	  are using GLX_EXT_texture_from_pixmap which is X specific.

2009-05-08 21:43:56 +0200  Julien Isorce <julien.isorce@gmail.com>

	* tests/examples/clutter/cluttershare.c:
	  Fix cluttershare example.
	  It requires at least clutter 0.8.6 since lower clutter versions are
	  not compatible with GL_TEXTURE_RECTANGLE_ARB.
	  Remove use of ClutterEffectTemplace since it does not exist in
	  clutter 0.9.

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

	* tests/examples/clutter/cluttershare.c:
	  Cast to a GstBuffer* before passing to gst_buffer_unref to fix compiler warning

2009-05-02 14:27:23 +0200  Julien Isorce <julien.isorce@gmail.com>

	* tests/examples/clutter/cluttershare.c:
	  Use GQueue in the cluttershare example

2009-04-30 23:40:38 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstglwindow_win32.c:
	* gst-libs/gst/gl/gstglwindow_winCE.c:
	* tests/examples/clutter/cluttershare.c:
	  Improve cluttershare example
	  Use clutter_threads_API.
	  When just using glupload from rgb, we have to be sure that
	  the upload texture is not in use in our gst gl context.

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

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

2009-04-20 18:32:24 -0400  Julien Isorce <julien.isorce@gmail.com>

	* docs/libs/gst-plugins-gl-libs-docs.sgml:
	* docs/libs/gst-plugins-gl-libs-sections.txt:
	  fix gtk doc

2009-04-20 18:17:54 -0400  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstglwindow_x11.c:
	* gst-libs/gst/gl/gstglwindow_x11ES2.c:
	  [x11/x11ES] fix some pointer cast warnings

2009-04-20 23:55:51 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstglwindow_cocoa.m:
	  [cocoa] update since interface changed

2009-04-20 23:48:15 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	* gst-libs/gst/gl/gstglwindow.h:
	* gst-libs/gst/gl/gstglwindow_win32.c:
	* gst-libs/gst/gl/gstglwindow_winCE.c:
	* gst/gl/gstglupload.c:
	* gst/gl/gstglupload.h:
	* tests/examples/clutter/cluttershare.c:
	* tests/examples/gtk/filternoxoverlay/filternoxoverlay.vcproj:
	* tests/examples/gtk/filterxoverlay/filterxoverlay.vcproj:
	* tests/examples/gtk/fxtest/fxtest.vcproj:
	* tests/examples/gtk/gtkxoverlay/gtkxoverlay.vcproj:
	* tests/examples/gtk/pixbufdrop/pixbufdrop.vcproj:
	* win32/vs9/libgstopengl.vcproj:
	* winCE/vs9/libgstopengl.vcproj:
	  [win32/winCE] fix some pointer cast warnings with mingw
	  And turn off deprecated Wp64 msvc compiler option.

2009-04-20 00:52:41 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	* gst/gl/gstglimagesink.c:
	* gst/gl/gstglimagesink.h:
	* tests/pipelines:
	  add force-aspect-ratio support

2009-04-20 00:49:57 +0200  Julien Isorce <julien.isorce@gmail.com>

	* tests/examples/gtk/filterxoverlay/filterxoverlay.vcproj:
	* tests/examples/gtk/fxtest/fxtest.vcproj:
	* tests/examples/gtk/gtkxoverlay/gtkxoverlay.vcproj:
	* tests/examples/gtk/pixbufdrop/pixbufdrop.vcproj:
	  fix vs9 build of gtk examples

2009-04-18 16:08:23 +0200  Julien Isorce <julien.isorce@gmail.com>

	* tests/examples/clutter/Makefile.am:
	* tests/examples/clutter/cluttershare.c:
	  just gst-indent and C90 on cluttershare example

2009-04-18 08:40:51 -0400  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstglwindow_x11.c:
	* gst-libs/gst/gl/gstglwindow_x11ES2.c:
	* gst/gl/gstglupload.c:
	  indent and fix some compiler warnings

2009-04-18 13:57:44 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	* gst-libs/gst/gl/gstglwindow.h:
	* gst-libs/gst/gl/gstglwindow_cocoa.m:
	* gst-libs/gst/gl/gstglwindow_win32.c:
	* gst-libs/gst/gl/gstglwindow_winCE.c:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	* gst-libs/gst/gl/gstglwindow_x11ES2.c:
	* gst/gl/gstglcolorscale.c:
	* gst/gl/gstglimagesink.c:
	* gst/gl/gstgltestsrc.c:
	* gst/gl/gstglupload.c:
	* gst/gl/gstglupload.h:
	* tests/examples/clutter/cluttershare.c:
	* tests/examples/clutter/cluttershare.cbp:
	  Can now share textures with an external gl context
	  The external opengl context must be specify when creating
	  our OpenGL context (glx) or just after (wgl).
	  When calling glXCreateContext or wglShareLists, the
	  external opengl context must not be current.
	  Then our gl context can be current in the gl thread while
	  the external gl context is current in an other thread.
	  See tests/examples/clutter/cluttershare.c

2009-04-14 11:24:40 -0700  David Schleef <ds@schleef.org>

	* configure.ac:
	* tests/examples/gtk/Makefile.am:
	  Fix Objective C compile problems
	  Fixes #578939

2009-04-12 22:24:06 -0700  David Schleef <ds@hutch-2.local>

	* configure.ac:
	* gst-libs/gst/gl/Makefile.am:
	* gst-libs/gst/gl/gstglwindow.h:
	* gst-libs/gst/gl/gstglwindow_cocoa.m:
	  Build for Cocoa on darwin, with various fixes

2009-04-12 20:03:30 -0700  David Schleef <ds@hutch-2.local>

	* tests/examples/gtk/Makefile.am:
	* tests/examples/gtk/filternoxoverlay/main.cpp:
	* tests/examples/gtk/filterxoverlay/Makefile.am:
	* tests/examples/gtk/filterxoverlay/main.cpp:
	* tests/examples/gtk/fxtest/Makefile.am:
	* tests/examples/gtk/fxtest/fxtest.c:
	* tests/examples/gtk/fxtest/pixbufdrop.c:
	* tests/examples/gtk/gstgtk.c:
	* tests/examples/gtk/gstgtk.h:
	* tests/examples/gtk/gtkxoverlay/Makefile.am:
	* tests/examples/gtk/gtkxoverlay/main.cpp:
	  Convert gtk examples to use helper library
	  Helper lib implements gst-gtk glue on all platforms

2009-04-10 20:42:59 +0200  Julien <julien@Julien-Kubuntu.(none)>

	* gst-libs/gst/gl/gstgldisplay.c:
	  fix init FBO's texture attachment on ES 2.0

2009-04-10 20:30:46 +0200  Julien <julien@Julien-Kubuntu.(none)>

	* gst-libs/gst/gl/gstgldisplay.h:
	* gst-libs/gst/gl/gstgles2.h:
	* gst-libs/gst/gl/gstglwindow_winCE.c:
	* gst-libs/gst/gl/gstglwindow_x11ES2.c:
	* unix/codeblocks/gstopengl/gstopengl.cbp:
	* unixES/codeblocks/gstopengl.cbp:
	* winCE/vs9/libgstopengl.vcproj:
	  add X backend for OpenGL ES 2.0

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

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

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

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

2009-03-29 15:40:16 +0000  Filippo Argiolas <filippo.argiolas@gmail.com>

	* tests/examples/clutter/clutteractortee.c:
	  Restore glimagesink instead of ximagesink
	  Partially revert previous commit. It's not an issue with glimagesink
	  Xoverlay interface. It's always the same intel bug with direct
	  rendering redirection (the one that affects each opengl application
	  with compositing managers). It works fine with DRI2 and UXA
	  acceleration. Still leaving effects disabled because I'm testing intel
	  hardware that doesn't support FBOs.

2009-03-29 09:01:55 +0000  Filippo Argiolas <filippo.argiolas@gmail.com>

	* tests/examples/clutter/clutteractortee.c:
	  Temporary disable glimagesink in clutteractortee
	  GLimagesink XOverlay interface doesn't seem to work with composite
	  redirection on intel (and I believe ati too). Windows aren't
	  redirected offscreen at all.  This commit just shows that the example
	  correcty works with ximagesink. The most evident difference I see is
	  that glimagesink reparents the xoverlay window into its own while both
	  x and xvimagesink destroy their window and render directly to the
	  xoverlay one.

2009-03-29 08:51:16 +0000  Filippo Argiolas <filippo.argiolas@gmail.com>

	* tests/examples/clutter/clutteractortee.c:
	  Remove redundant XMoveWindow call
	  Revert the "move windows" thing from commit
	  175f7a707bc922f3facc63e7d9b6d01f9bb6b1b0
	  Windows are offscreen who cares about their position? If you see the
	  windows something is going wrong with composite redirection.

2009-03-18 22:46:56 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	  [download YUY2/UYVY] fix a regression
	  The call to glLoadIdentity was removed by mistake during
	  OpenGL ES 2.0 integration.

2009-03-15 14:48:19 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	* gst-libs/gst/gl/gstgles2.h:
	* gst-libs/gst/gl/gstglshader.c:
	* gst-libs/gst/gl/gstglshader.h:
	* gst-libs/gst/gl/gstglwindow.h:
	* gst-libs/gst/gl/gstglwindow_winCE.c:
	* gst/gl/gstgldownload.c:
	* gst/gl/gstglfiltercube.c:
	* gst/gl/gstglfiltercube.h:
	* gst/gl/gstglimagesink.c:
	* gst/gl/gstglupload.c:
	* gst/gl/gstopengl.c:
	* winCE/common/config.h:
	* winCE/common/config.h.in:
	* winCE/vs9/libgstopengl.sln:
	* winCE/vs9/libgstopengl.vcproj:
	  add OpenGL ES 2.x support.
	  In OpenGL 2.x for Embedded System, a lot of basic scene/draw functions
	  have been removed. It means that everything is made using vertex and
	  fragment shaders.
	  I have also added a gstglwindow backend for winCE that uses EGL
	  (Native Platform Graphics Intercace) (which is a full part of
	  OpenGL ES specification). It remove the use of wgl/glx functions.

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

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

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

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

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

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

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

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

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

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

2009-03-07 03:17:04 +0100  Julien Isorce <julien.isorce@gmail.com>

	* tests/examples/README:
	* tests/examples/cocoa/README:
	* tests/examples/cocoa/videoxoverlay/GNUmakefile.gnustep:
	* tests/examples/cocoa/videoxoverlay/main.m:
	  add Cocoa xoverlay interface example

2009-03-07 03:13:38 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstglwindow_cocoa.m:
	  fix position and content rect

2009-03-06 22:43:41 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstglwindow_win32.c:
	* tests/examples/qt/mousexoverlay/mousexoverlay.sln:
	* tests/examples/qt/mousexoverlay/mousexoverlay.vcproj:
	  [win32 backend] fix transmition message to the parent.
	  The Qt mouvexoverlay example shows how to rotate the cube
	  by moving (+click) the mouve over a qwidget using xoverlay
	  interface.

2009-03-04 01:09:00 +0100  Julien Isorce <julien.isorce@gmail.com>

	  Merge branch 'master' of ssh://cap@git.freedesktop.org/git/gstreamer/gst-plugins-gl

2009-03-04 01:08:30 +0100  Julien Isorce <julien.isorce@gmail.com>

	* tests/examples/qt/mousexoverlay/mousexoverlay.pro:
	* tests/examples/qt/qglwidgetxoverlay/qglwidgetxoverlay.pro:
	* tests/examples/qt/videoxoverlay/videoxoverlay.pro:
	  fix Qt (4.5.0 LGPL) examples .pro build on win32

2009-03-02 15:20:15 +0100  Edward Hervey <bilboed@bilboed.com>

	* .gitignore:
	* po/.gitignore:
	* tests/check/.gitignore:
	* tests/examples/.gitignore:
	  Add more files to ignore

2009-02-28 01:50:20 +0100  Julien Isorce <julien.isorce@gmail.com>

	* GNUmakefile.gnustep:
	* INSTALL:
	  fix GNUstep build

2009-02-26 17:45:21 -0500  Julien Isorce <julien.isorce@gmail.com>

	* GNUmakefile:
	* GNUmakefile.gnustep:
	* gst-libs/gst/gl/GNUmakefile:
	* gst-libs/gst/gl/GNUmakefile.gnustep:
	* gst/gl/GNUmakefile:
	* gst/gl/GNUmakefile.gnustep:
	* gst/gl/effects/GNUmakefile:
	* gst/gl/effects/GNUmakefile.gnustep:
	  rename GNUmakefile(s) to GNUmakefile(s).gnustep

2009-02-26 01:06:58 +0100  Julien Isorce <julien.isorce@gmail.com>

	* GNUmakefile:
	* gst-libs/gst/gl/GNUmakefile:
	* gst-libs/gst/gl/gstglwindow.h:
	* gst-libs/gst/gl/gstglwindow_cocoa.m:
	* gst/gl/GNUmakefile:
	  implement gstglwindow for Cocoa (MacOS and GNUstep)

2009-02-25 11:33:36 +0000  Jan Schmidt <thaytan@noraisin.net>

	* common:
	  Automatic update of common submodule
	  From 9cf8c9b to a6ce5c6

2009-02-25 00:39:48 +0100  Julien Isorce <julien.isorce@gmail.com>

	* CMakeLists.txt:
	* gst/gl/CMakeLists.txt:
	* unix/codeblocks/gstopengl/gstopengl.cbp:
	* win32/codeblock/gstopengl.cbp:
	* win32/vs8/libgstopengl.vcproj:
	* win32/vs9/libgstopengl.vcproj:
	  remove some unused HAVE_LIBPNG: libpng is a required package

2009-02-25 00:12:12 +0100  Julien Isorce <julien.isorce@gmail.com>

	* GNUmakefile:
	* INSTALL:
	* gst-libs/gst/gl/GNUmakefile:
	* gst/gl/CMakeLists.txt:
	* gst/gl/GNUmakefile:
	* gst/gl/effects/GNUmakefile:
	  add GNUstep build

2009-02-23 11:07:22 -0800  David Schleef <ds@schleef.org>

	* pkgconfig/gstreamer-gl-uninstalled.pc.in:
	  Add srcdir to includes for out-of-source builds
	  When you use gstreamer uninstalled and build outside
	  the source tree, the includes need to be specified for
	  both the source tree and the build tree.

2009-02-23 13:39:29 +0200  Stefan Kost <ensonic@users.sf.net>

	* docs/plugins/gst-plugins-gl-plugins.args:
	* docs/plugins/gst-plugins-gl-plugins.hierarchy:
	* docs/plugins/inspect/plugin-opengl.xml:
	* gst/gl/gstglfiltercube.c:
	  indent: don't use tabs inside property descriptions

2009-02-23 13:35:48 +0200  Stefan Kost <ensonic@users.sf.net>

	* gst/gl/gstglbumper.c:
	* gst/gl/gstgldifferencematte.c:
	* gst/gl/gstgloverlay.c:
	  build: include stdlib.h when using free().

2009-02-22 19:36:40 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* gst/gl/gstglcolorscale.c:
	* gst/gl/gstglimagesink.c:
	* gst/gl/gstgltestsrc.c:
	  Cast GstBuffer subclasses to GstBuffer * before passing to gst_buffer_unref()

2009-02-22 16:05:01 +0000  Jan Schmidt <thaytan@noraisin.net>

	* common:
	  Automatic update of common submodule
	  From 5d7c9cc to 9cf8c9b

2009-02-21 11:14:45 -0800  David Schleef <ds@schleef.org>

	* common:
	  Automatic update of common submodule
	  From 80c627d to 5d7c9cc

2009-02-10 22:39:14 -0800  David Schleef <ds@schleef.org>

	* gst-libs/gst/gl/gstglbuffer.c:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstglfilter.c:
	* gst-libs/gst/gl/gstglshader.c:
	* gst-libs/gst/gl/gstglwindow_win32.c:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	* gst/gl/effects/gstgleffectbulge.c:
	* gst/gl/effects/gstgleffectfisheye.c:
	* gst/gl/effects/gstgleffectglow.c:
	* gst/gl/effects/gstgleffectidentity.c:
	* gst/gl/effects/gstgleffectlumatocurve.c:
	* gst/gl/effects/gstgleffectmirror.c:
	* gst/gl/effects/gstgleffectrgbtocurve.c:
	* gst/gl/effects/gstgleffectsin.c:
	* gst/gl/effects/gstgleffectsquare.c:
	* gst/gl/effects/gstgleffectsqueeze.c:
	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/effects/gstgleffectstretch.c:
	* gst/gl/effects/gstgleffecttunnel.c:
	* gst/gl/effects/gstgleffecttwirl.c:
	* gst/gl/effects/gstgleffectxray.c:
	* gst/gl/gltestsrc.c:
	* gst/gl/gstglbumper.c:
	* gst/gl/gstglcolorscale.c:
	* gst/gl/gstgldifferencematte.c:
	* gst/gl/gstgldownload.c:
	* gst/gl/gstgleffects.c:
	* gst/gl/gstglfilterapp.c:
	* gst/gl/gstglfilterblur.c:
	* gst/gl/gstglfiltercube.c:
	* gst/gl/gstglfilterglass.c:
	* gst/gl/gstglfilterlaplacian.c:
	* gst/gl/gstglfiltersobel.c:
	* gst/gl/gstglimagesink.c:
	* gst/gl/gstgloverlay.c:
	* gst/gl/gstgltestsrc.c:
	* gst/gl/gstglupload.c:
	* gst/gl/gstopengl.c:
	* tests/examples/clutter/clutteractor.c:
	* tests/examples/clutter/clutteractortee.c:
	* tests/examples/gtk/fxtest/fxtest.c:
	* tests/examples/gtk/fxtest/pixbufdrop.c:
	  Global reindent
	  Indent parameters:
	  INDENT_PARAMETERS="--braces-on-if-line \
	  --case-brace-indentation0 \
	  --case-indentation2 \
	  --braces-after-struct-decl-line \
	  --line-length80 \
	  --no-tabs \
	  --cuddle-else \
	  --dont-line-up-parentheses \
	  --honour-newlines \
	  --continuation-indentation4 \
	  --tab-size8 \
	  --indent-level2"

2009-02-03 18:58:00 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* configure.ac:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	  Replay: Fix callbacks passed over XEvents on 64 bit architectures
	  Althought the XEvent's xclient.data.l array is an array of
	  longs they will be constrained to 32 bit by the X11 protocol.
	  On 64 bit architectures use two elements of the array to store
	  one pointer.
	  This fixes segfaults that happen at least for every example
	  on startup.

2009-02-05 13:13:51 -0800  David Schleef <ds@schleef.org>

	* configure.ac:
	* docs/plugins/inspect/plugin-opengl.xml:
	* gst/gl/CMakeLists.txt:
	* gst/gl/Makefile.am:
	* gst/gl/gstgloverlay.c:
	* gst/gl/gstglpixbufoverlay.c:
	* gst/gl/gstopengl.c:
	* tests/examples/gtk/fxtest/pixbufdrop.c:
	* unix/codeblocks/gstopengl/gstopengl.cbp:
	* win32/codeblock/gstopengl.cbp:
	* win32/vs8/libgstopengl.vcproj:
	* win32/vs9/libgstopengl.vcproj:
	  Rename glpixbufoverlay to gloverlay

2009-02-04 16:57:14 -0800  David Schleef <ds@schleef.org>

	* gst/gl/Makefile.am:
	* gst/gl/gstglpixbufoverlay.c:
	* gst/gl/gstopengl.c:
	* tests/examples/gtk/fxtest/Makefile.am:
	  Remove conditionals on gdkpixbuf

2009-02-08 01:50:10 +0100  Julien Isorce <julien.isorce@gmail.com>

	* CMakeLists.txt:
	* cmake/modules/FindGlib2.cmake:
	* cmake/modules/FindGstreamer.cmake:
	* cmake/modules/FindLibpng.cmake:
	* cmake/modules/FindZlib.cmake:
	* gst-libs/gst/gl/CMakeLists.txt:
	* gst/gl/CMakeLists.txt:
	* win32/codeblock/gstopengl.cbp:
	  fix CMake build and frozen CodeBlocks build

2009-02-07 21:19:24 +0100  Julien Isorce <julien.isorce@gmail.com>

	* CMakeLists.txt:
	* cmake/modules/FindLibpng.cmake:
	* gst/gl/CMakeLists.txt:
	  CMake build now checks for libpng

2009-02-07 17:16:51 +0100  Julien <julien@Julien-Kubuntu.(none)>

	* tests/examples/Makefile.am:
	  compile examples in gtk dir if HAVE_GTK

2009-02-05 19:59:27 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstglshader.c:
	* gst/gl/gstgldifferencematte.c:
	* gst/gl/gstglpixbufoverlay.c:
	* gst/gl/gstopengl.c:
	* win32/vs9/libgstopengl.vcproj:
	  only load RGBA files.png

2009-02-04 16:18:15 -0800  David Schleef <ds@schleef.org>

	* configure.ac:
	* gst/gl/Makefile.am:
	  Add libpng dependency

2009-01-26 16:30:22 -0800  David Schleef <ds@schleef.org>

	* gst/gl/gstgldifferencematte.c:
	* gst/gl/gstglpixbufoverlay.c:
	  Fix some warnings

2009-01-24 00:50:46 +0100  Julien Isorce <julien.isorce@gmail.com>

	* tests/examples/generic/cube/cube.vcproj:
	* tests/examples/generic/cubeyuv/cubeyuv.vcproj:
	* tests/examples/generic/doublecube/doublecube.vcproj:
	* tests/examples/generic/generic.sln:
	* tests/examples/generic/recordgraphic/recordgraphic.vcproj:
	* win32/vs9/libgstopengl.vcproj:
	  vs8 -> vs9 about gtk examples

2009-01-23 02:04:23 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst/gl/gstgldifferencematte.c:
	* gst/gl/gstglpixbufoverlay.c:
	* tests/examples/gtk/filternoxoverlay/filternoxoverlay.vcproj:
	* tests/examples/gtk/filterxoverlay/filterxoverlay.vcproj:
	* tests/examples/gtk/fxtest/fxtest.vcproj:
	* tests/examples/gtk/fxtest/pixbufdrop.c:
	* tests/examples/gtk/gtk.sln:
	* tests/examples/gtk/gtkxoverlay/gtkxoverlay.vcproj:
	* tests/examples/gtk/pixbufdrop/pixbufdrop.vcproj:
	* win32/vs9/libgstopengl.vcproj:
	  depends on libpng instead of gdk_pixbuf

2009-01-22 02:19:31 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst/gl/gstglbumper.c:
	* gst/gl/gstglpixbufoverlay.c:
	* gst/gl/gstopengl.c:
	  use libpng in glpixbufoverlay filter.

2009-01-22 01:16:38 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst/gl/gstglbumper.c:
	* gst/gl/gstglbumper.h:
	* win32/vs9/libgstopengl.vcproj:
	  use libpng to load the normal map instead of using gdkpixbuf

2009-02-10 21:57:31 -0800  David Schleef <ds@schleef.org>

	* gst-libs/gst/gl/gstglbuffer.c:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstglfilter.c:
	* gst-libs/gst/gl/gstglshader.c:
	* gst-libs/gst/gl/gstglwindow_win32.c:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	* gst/gl/effects/gstgleffectbulge.c:
	* gst/gl/effects/gstgleffectfisheye.c:
	* gst/gl/effects/gstgleffectglow.c:
	* gst/gl/effects/gstgleffectidentity.c:
	* gst/gl/effects/gstgleffectlumatocurve.c:
	* gst/gl/effects/gstgleffectmirror.c:
	* gst/gl/effects/gstgleffectrgbtocurve.c:
	* gst/gl/effects/gstgleffectsin.c:
	* gst/gl/effects/gstgleffectsquare.c:
	* gst/gl/effects/gstgleffectsqueeze.c:
	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/effects/gstgleffectstretch.c:
	* gst/gl/effects/gstgleffecttunnel.c:
	* gst/gl/effects/gstgleffecttwirl.c:
	* gst/gl/effects/gstgleffectxray.c:
	* gst/gl/gltestsrc.c:
	* gst/gl/gstglbumper.c:
	* gst/gl/gstglcolorscale.c:
	* gst/gl/gstgldifferencematte.c:
	* gst/gl/gstgldownload.c:
	* gst/gl/gstgleffects.c:
	* gst/gl/gstglfilterapp.c:
	* gst/gl/gstglfilterblur.c:
	* gst/gl/gstglfiltercube.c:
	* gst/gl/gstglfilterglass.c:
	* gst/gl/gstglfilterlaplacian.c:
	* gst/gl/gstglfiltersobel.c:
	* gst/gl/gstglimagesink.c:
	* gst/gl/gstglpixbufoverlay.c:
	* gst/gl/gstgltestsrc.c:
	* gst/gl/gstglupload.c:
	* gst/gl/gstopengl.c:
	* tests/examples/clutter/clutteractor.c:
	* tests/examples/clutter/clutteractortee.c:
	* tests/examples/generic/cube/main.cpp:
	* tests/examples/generic/cubeyuv/main.cpp:
	* tests/examples/generic/doublecube/main.cpp:
	* tests/examples/generic/recordgraphic/main.cpp:
	* tests/examples/gtk/filternoxoverlay/main.cpp:
	* tests/examples/gtk/filterxoverlay/main.cpp:
	* tests/examples/gtk/fxtest/fxtest.c:
	* tests/examples/gtk/fxtest/pixbufdrop.c:
	* tests/examples/gtk/gtkxoverlay/main.cpp:
	* tests/examples/qt/mousexoverlay/gstthread.cpp:
	* tests/examples/qt/mousexoverlay/main.cpp:
	* tests/examples/qt/mousexoverlay/pipeline.cpp:
	* tests/examples/qt/mousexoverlay/qrenderer.cpp:
	* tests/examples/qt/qglwidgetxoverlay/gstthread.cpp:
	* tests/examples/qt/qglwidgetxoverlay/main.cpp:
	* tests/examples/qt/qglwidgetxoverlay/pipeline.cpp:
	* tests/examples/qt/qglwidgetxoverlay/qglrenderer.cpp:
	* tests/examples/qt/videoxoverlay/gstthread.cpp:
	* tests/examples/qt/videoxoverlay/main.cpp:
	* tests/examples/qt/videoxoverlay/pipeline.cpp:
	* tests/examples/qt/videoxoverlay/qrenderer.cpp:
	  Revert "Fix indention"
	  This reverts commit 96e4ab18c2cf9876f6c031b9aba6282d0bd45a93.
	  You should have asked first.  And you would have been told "no",
	  because it causes people on development branches to do a huge
	  amount of extra work.

2009-02-10 21:57:08 -0800  David Schleef <ds@schleef.org>

	* configure.ac:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	  Revert "Fix callbacks passed over XEvents on 64 bit architectures"
	  This reverts commit 280771d09b58617b27201027de0e1194da376e72.

2009-02-09 12:07:11 +0100  Edward Hervey <bilboed@bilboed.com>

	* common:
	  Bump revision to use for common submodule.

2009-02-03 18:58:00 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* configure.ac:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	  Fix callbacks passed over XEvents on 64 bit architectures
	  Althought the XEvent's xclient.data.l array is an array of
	  longs they will be constrained to 32 bit by the X11 protocol.
	  On 64 bit architectures use two elements of the array to store
	  one pointer.
	  This fixes segfaults that happen at least for every example
	  on startup.

2009-02-03 18:33:36 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>

	* gst-libs/gst/gl/gstglbuffer.c:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstglfilter.c:
	* gst-libs/gst/gl/gstglshader.c:
	* gst-libs/gst/gl/gstglwindow_win32.c:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	* gst/gl/effects/gstgleffectbulge.c:
	* gst/gl/effects/gstgleffectfisheye.c:
	* gst/gl/effects/gstgleffectglow.c:
	* gst/gl/effects/gstgleffectidentity.c:
	* gst/gl/effects/gstgleffectlumatocurve.c:
	* gst/gl/effects/gstgleffectmirror.c:
	* gst/gl/effects/gstgleffectrgbtocurve.c:
	* gst/gl/effects/gstgleffectsin.c:
	* gst/gl/effects/gstgleffectsquare.c:
	* gst/gl/effects/gstgleffectsqueeze.c:
	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/effects/gstgleffectstretch.c:
	* gst/gl/effects/gstgleffecttunnel.c:
	* gst/gl/effects/gstgleffecttwirl.c:
	* gst/gl/effects/gstgleffectxray.c:
	* gst/gl/gltestsrc.c:
	* gst/gl/gstglbumper.c:
	* gst/gl/gstglcolorscale.c:
	* gst/gl/gstgldifferencematte.c:
	* gst/gl/gstgldownload.c:
	* gst/gl/gstgleffects.c:
	* gst/gl/gstglfilterapp.c:
	* gst/gl/gstglfilterblur.c:
	* gst/gl/gstglfiltercube.c:
	* gst/gl/gstglfilterglass.c:
	* gst/gl/gstglfilterlaplacian.c:
	* gst/gl/gstglfiltersobel.c:
	* gst/gl/gstglimagesink.c:
	* gst/gl/gstglpixbufoverlay.c:
	* gst/gl/gstgltestsrc.c:
	* gst/gl/gstglupload.c:
	* gst/gl/gstopengl.c:
	* tests/examples/clutter/clutteractor.c:
	* tests/examples/clutter/clutteractortee.c:
	* tests/examples/generic/cube/main.cpp:
	* tests/examples/generic/cubeyuv/main.cpp:
	* tests/examples/generic/doublecube/main.cpp:
	* tests/examples/generic/recordgraphic/main.cpp:
	* tests/examples/gtk/filternoxoverlay/main.cpp:
	* tests/examples/gtk/filterxoverlay/main.cpp:
	* tests/examples/gtk/fxtest/fxtest.c:
	* tests/examples/gtk/fxtest/pixbufdrop.c:
	* tests/examples/gtk/gtkxoverlay/main.cpp:
	* tests/examples/qt/mousexoverlay/gstthread.cpp:
	* tests/examples/qt/mousexoverlay/main.cpp:
	* tests/examples/qt/mousexoverlay/pipeline.cpp:
	* tests/examples/qt/mousexoverlay/qrenderer.cpp:
	* tests/examples/qt/qglwidgetxoverlay/gstthread.cpp:
	* tests/examples/qt/qglwidgetxoverlay/main.cpp:
	* tests/examples/qt/qglwidgetxoverlay/pipeline.cpp:
	* tests/examples/qt/qglwidgetxoverlay/qglrenderer.cpp:
	* tests/examples/qt/videoxoverlay/gstthread.cpp:
	* tests/examples/qt/videoxoverlay/main.cpp:
	* tests/examples/qt/videoxoverlay/pipeline.cpp:
	* tests/examples/qt/videoxoverlay/qrenderer.cpp:
	  Fix indention

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

	* Makefile.am:
	* configure.ac:
	* ext/Makefile.am:
	* sys/Makefile.am:
	* tools/Makefile.am:
	  Remove empty directories

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

	* configure.ac:
	* tests/examples/clutter/Makefile.am:
	* tests/examples/generic/cube/Makefile.am:
	* tests/examples/generic/cubeyuv/Makefile.am:
	* tests/examples/generic/doublecube/Makefile.am:
	* tests/examples/gtk/filternoxoverlay/Makefile.am:
	* tests/examples/gtk/filterxoverlay/Makefile.am:
	* tests/examples/gtk/fxtest/Makefile.am:
	* tests/examples/gtk/gtkxoverlay/Makefile.am:
	  Fix CFLAGS, add CXXFLAGS and correctly link to the required libraries

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

	* gst-libs/gst/gl/gstglwindow_x11.c:
	  Fix format string compiler warnings by using G_GUINT64_FORMAT

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

	* configure.ac:
	  Add proper checks for OpenGL, GLU and GLEW

2009-01-31 18:28:34 +0200  Stefan Kost <ensonic@users.sf.net>

	* docs/plugins/gst-plugins-gl-plugins.args:
	* docs/plugins/gst-plugins-gl-plugins.prerequisites:
	  Update docs.

2009-01-31 18:26:52 +0200  Stefan Kost <ensonic@users.sf.net>

	* docs/libs/gst-plugins-gl-libs-docs.sgml:
	* docs/plugins/gst-plugins-gl-plugins-docs.sgml:
	  Add releaseinfo with online url.

2009-01-30 08:44:50 +0100  Edward Hervey <bilboed@bilboed.com>

	* .gitmodules:
	* autogen.sh:
	* common:
	  Add common submodule and use pre-commit client-side hook

2009-01-17 19:39:36 +0100  Julien Isorce <julien.isorce@gmail.com>

	* INSTALL:
	* win32/vs9/libgstopengl.sln:
	* win32/vs9/libgstopengl.vcproj:
	  add vs9 build project (Visual Studio 2008 and vc9)

2009-01-15 18:39:48 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* TODO:
	* gst/gl/gstglbumper.c:
	* gst/gl/gstgldifferencematte.c:
	* gst/gl/gstgldownload.c:
	* gst/gl/gstgleffects.c:
	* gst/gl/gstglfilterblur.c:
	* gst/gl/gstglfilterlaplacian.c:
	* gst/gl/gstglfiltersobel.c:
	* gst/gl/gstglpixbufoverlay.c:
	  minimal gtk doc

2009-01-09 17:47:46 -0800  David Schleef <ds@hutch-2.local>

	* configure.ac:
	  Add OpenGL hard-code for OS/X

2009-01-09 17:46:01 -0800  David Schleef <ds@hutch-2.local>

	* gst/gl/effects/gstgleffectssources.h:
	  Add 'extern' for data symbols in headers

2009-01-09 17:20:25 -0800  David Schleef <ds@schleef.org>

	* gst-libs/gst/gl/gstgldisplay.c:
	  Add check for GLEW_EXT_framebuffer_object

2009-01-08 19:18:47 -0800  David Schleef <ds@schleef.org>

	* configure.ac:
	* gst-libs/gst/gl/Makefile.am:
	  Set GL_LIBS correctly in configure.ac
	  This doesn't detect the existence of libraries, which needs to
	  be fixed.

2009-01-07 19:11:01 -0800  David Schleef <ds@schleef.org>

	* configure.ac:
	* gst-libs/gst/gl/Makefile.am:
	* gst/gl/Makefile.am:
	* tests/examples/clutter/Makefile.am:
	* tests/examples/generic/cube/Makefile.am:
	* tests/examples/generic/cubeyuv/Makefile.am:
	* tests/examples/generic/doublecube/Makefile.am:
	* tests/examples/gtk/filternoxoverlay/Makefile.am:
	* tests/examples/gtk/filterxoverlay/Makefile.am:
	* tests/examples/gtk/fxtest/Makefile.am:
	* tests/examples/gtk/gtkxoverlay/Makefile.am:
	  build fixes for Windows libraries

2008-12-14 12:06:06 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	  add more debug ouputs about GLSL and mesa

2008-12-13 19:36:32 -0500  julien <julien@julien-desktop.(none)>

	* ChangeLog:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	  fix a regression about glXChooseVisual which failed when using mesa, so attributes must be less restrictives.

2008-12-13 00:50:16 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstglwindow_win32.c:
	  [win32] Register window class in gst_gl_window_class_init

2008-12-08 00:52:19 +0100  Julien Isorce <julien.isorce@gmail.com>

	* docs/libgstopengl.pdf:
	* docs/libgstopengl.vsd:
	  update pdf about the new internal functionning of gst-gl

2008-12-07 03:25:59 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	* gst/gl/gstglupload.c:
	* tests/examples/clutter/clutteractortee.c:
	  fix gl framerate in gst caps. Consider position in xoverlay. Fix inversion bettween COLS and ROWS, and move windows.

2008-12-06 01:36:22 +0100  Julien Isorce <julien.isorce@gmail.com>

	* docs/libs/Makefile.am:
	  remove old references to freeglut in doc Makefile

2008-11-29 22:16:44 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	  workaround about the ATI shader compiler on linux (setlocale)

2008-11-25 01:01:01 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstglwindow_x11.c:
	* tests/examples/generic/cube/main.cpp:
	  better result in cube and doublecube example. And some clean up debug and comments

2008-11-23 16:14:26 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/CMakeLists.txt:
	  update CMake build

2008-11-23 16:04:27 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* TODO:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstglwindow.h:
	* gst-libs/gst/gl/gstglwindow_win32.c:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	  Make cube example work on x11. Finish TODO task 9.

2008-11-22 16:43:24 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	* gst-libs/gst/gl/gstglwindow.h:
	* gst-libs/gst/gl/gstglwindow_win32.c:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	* gst/gl/gstglimagesink.c:
	  Remove set_visible, because it's now automatically done when the first post redisplay comes.

2008-11-22 00:51:30 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstglwindow_x11.c:
	  finish set_xwindow_id (gst_gl_window_set_external_win_id): child is resized at the same time as the parent is.

2008-11-21 20:51:48 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	  Implement set_xwindow_id (gst_gl_window_set_external_window_id).

2008-11-21 19:37:21 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	  open x client connection for sender only at start up

2008-11-21 19:11:11 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstglwindow.h:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	  better deal with last pending custom cb and destroy_context_cb

2008-11-21 01:31:19 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	  Make sure the gl ressoures are destroyed before to destroy gl window

2008-11-20 01:24:10 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	  add some other debug outputs and checks

2008-11-19 00:07:22 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstglwindow_x11.c:
	* gst/gl/gstglimagesink.c:
	  add some debug outputs about Visual and XVisualInfo

2008-11-17 01:04:32 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	* unix/codeblocks/gstopengl/gstopengl.cbp:
	  add a visible member to deal better with the first expose events

2008-11-16 16:57:00 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	* unix/codeblocks/gstopengl/gstopengl.cbp:
	  revert last commit because the crash comes from libselinux

2008-11-16 04:04:52 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* unix/codeblocks/gstopengl/gstopengl.cbp:
	  remove gdkpixbuf, from codeblocks unix frozen build, which causes a segfault

2008-11-15 23:32:04 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstglwindow_x11.c:
	  fix use of different Display structures which point on the same display name

2008-11-15 18:51:44 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	  Better deal with XNextEvent and XSendEvent

2008-11-15 02:24:07 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	  Better deal with Atoms

2008-11-14 01:00:33 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	  Get ride of calling sleep in gl thread X loop

2008-11-13 02:05:33 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	  secure close when clicking on the cross

2008-11-13 01:29:10 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstglwindow_x11.c:
	  CRLF -> LF

2008-11-13 01:23:51 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	* gst/gl/gstglimagesink.c:
	  Rewrite gstglwindow_x11.c because X API is not thread safe.

2008-11-11 03:19:51 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstglwindow_x11.c:
	  discard x custom messages which are of date

2008-11-09 23:23:30 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/Makefile.am:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	* gst/gl/Makefile.am:
	  Works on linux but still some bugs. Fix autotools  build.

2008-11-09 22:14:29 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	  implement quit x message loop

2008-11-09 02:44:25 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	  try to make XSendEvent blocker (as win32 SendMessage is)

2008-11-06 23:41:11 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	* unix/codeblocks/gstopengl/gstopengl.cbp:
	  continue x implementation (but still not tested)

2008-11-06 01:28:26 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstglwindow_x11.c:
	  setup x message loop

2008-11-05 02:06:33 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* configure.ac:
	* docs/plugins/Makefile.am:
	* gst-libs/gst/gl/Makefile.am:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	* gst-libs/gst/gl/gstglshader.c:
	* gst-libs/gst/gl/gstglwindow.h:
	* gst-libs/gst/gl/gstglwindow_x11.c:
	* gst/gl/gstglupload.c:
	* unix/codeblocks/gstopengl/gstopengl.cbp:
	  begin gstglwindow_x11.c implementation

2008-10-29 23:53:22 +0100  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/CMakeLists.txt:
	* win32/codeblock/gstopengl.cbp:
	  fix CMake an CodeBlocks builds

2008-10-28 22:39:16 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* tests/examples/generic/doublecube/main.cpp:
	  Add a cube to have 2 cubes as title said (doublecube)

2008-10-28 21:44:09 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstglwindow_win32.c:
	  fix window closure when using gst xoverlay interface

2008-10-28 01:38:45 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstglwindow.h:
	* gst-libs/gst/gl/gstglwindow_win32.c:
	  Better handle when the parent window is resizing, and cleanup some code

2008-10-28 00:22:27 +0100  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	* gst-libs/gst/gl/gstglwindow.h:
	* gst-libs/gst/gl/gstglwindow_win32.c:
	* gst/gl/gstglcolorscale.c:
	* gst/gl/gstglimagesink.c:
	* gst/gl/gstgltestsrc.c:
	* gst/gl/gstglupload.c:
	  win32: re-implement supports for gst xoverlay interface, on this branch

2008-10-25 16:18:23 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstglshader.c:
	* gst-libs/gst/gl/gstglwindow.h:
	* gst-libs/gst/gl/gstglwindow_win32.c:
	  avoid a dead lock on window closure

2008-10-25 02:03:16 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	* gst-libs/gst/gl/gstglwindow_win32.c:
	* gst/gl/gstglcolorscale.c:
	* gst/gl/gstglimagesink.c:
	* gst/gl/gstgltestsrc.c:
	* gst/gl/gstglupload.c:
	  Properly clean OpenGL contexts

2008-10-24 01:39:00 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstglwindow_win32.c:
	  win32: basic stuffs are working now on this branch with this new deep design (gstglwindow)

2008-10-23 01:40:52 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* TODO:
	* gst-libs/gst/CMakeLists.txt:
	* gst-libs/gst/Makefile.am:
	* gst-libs/gst/freeglut/CMakeLists.txt:
	* gst-libs/gst/freeglut/Makefile.am:
	* gst-libs/gst/freeglut/freeglut_callbacks.c:
	* gst-libs/gst/freeglut/freeglut_display.c:
	* gst-libs/gst/freeglut/freeglut_ext.h:
	* gst-libs/gst/freeglut/freeglut_init.c:
	* gst-libs/gst/freeglut/freeglut_internal.h:
	* gst-libs/gst/freeglut/freeglut_main.c:
	* gst-libs/gst/freeglut/freeglut_state.c:
	* gst-libs/gst/freeglut/freeglut_std.h:
	* gst-libs/gst/freeglut/freeglut_structure.c:
	* gst-libs/gst/freeglut/freeglut_window.c:
	* gst-libs/gst/freeglut/gstfreeglut.h:
	* gst-libs/gst/gl/CMakeLists.txt:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	* gst-libs/gst/gl/gstglwindow.h:
	* gst-libs/gst/gl/gstglwindow_win32.c:
	* win32/vs8/libgstopengl.vcproj:
	  begin GstGLWindow in order to totally remove gstfreeglut

2008-10-16 23:47:01 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst/gl/CMakeLists.txt:
	* gst/gl/effects/gstgleffectxray.c:
	* win32/codeblock/gstopengl.cbp:
	* win32/vs8/libgstopengl.vcproj:
	  fix msvc warnings and update CMake build, win32 CodeBlocks build and vs8 build

2008-10-15 17:42:07 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	  ChangeLog for previous merge (forgot it, sorry)

2008-10-15 16:18:22 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst/gl/Makefile.am:
	* gst/gl/effects/gstgleffectscurves.h:
	* gst/gl/effects/gstgleffectxray.c:
	* gst/gl/gstgleffects.c:
	* gst/gl/gstgleffects.h:
	* tests/examples/gtk/fxtest/fxtest.c:
	  Import xray effect
	  Add xray effect. Maps luma to a negative, slightly cyan tinted, curve,
	  applies some light gaussian blur and multiplies it with its sobel edges. Not
	  sure about the name, likely to change. Probably still needs some tuning.

2008-10-15 16:14:52 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/effects/gstgleffectssources.h:
	  Add multiply fragment shader
	  Add a fragment shader to blend two textures with multiply blend mode

2008-10-15 15:49:12 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/gstglfiltersobel.c:
	  Add invert property to sobel filter
	  Add an invert property to sobel_fragment_source and Sobel filter. Useful
	  to have dark edges with white background.

2008-10-15 12:50:07 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst/gl/effects/gstgleffectlumatocurve.c:
	* gst/gl/effects/gstgleffectlumatocurve.h:
	  Make luma_to_curve non-static
	  Make luma_to_curve public so that it can be used as a step for more
	  complex effects.

2008-10-15 12:42:29 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	  Support for missing videoformats in glupload
	  Add support for missing alpha channeled videoformats (RGBA, BGRA,
	  ARGB, ABGR) in gst_gl_display_do_upload_fill.

2008-10-15 00:07:52 +0200  Julien Isorce <julien.isorce@gmail.com>

	* tests/examples/qt/videoxoverlay/main.cpp:
	* tests/examples/qt/videoxoverlay/pipeline.cpp:
	* tests/examples/qt/videoxoverlay/pipeline.h:
	  up qt videoxoverlay example: can seek

2008-10-13 23:14:27 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstglfilter.c:
	  Fix crash in filters when going to NULL with no display

2008-10-11 11:45:54 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst/gl/CMakeLists.txt:
	  fix CMake build

2008-10-04 22:34:07 +0300  Stefan Kost <ensonic@users.sf.net>

	* docs/plugins/Makefile.am:
	* docs/plugins/gst-plugins-gl-plugins-docs.sgml:
	* docs/plugins/gst-plugins-gl-plugins-overrides.txt:
	* docs/plugins/gst-plugins-gl-plugins-sections.txt:
	* docs/plugins/gst-plugins-gl-plugins.args:
	* docs/plugins/gst-plugins-gl-plugins.hierarchy:
	* docs/plugins/gst-plugins-gl-plugins.prerequisites:
	* docs/plugins/gst-plugins-gl-plugins.signals:
	* docs/plugins/gst-plugins-gl-plugins.types:
	* gst/gl/gstglcolorscale.c:
	* gst/gl/gstgldownload.c:
	  Build gtk-docs for plugins.
	  Add include to otherwise empty .types file to fix the scanner build.
	  Edit Makefile.am, .sections, -docs.sgml to scan all plugins and include
	  them in the master file. Fix xml errors in two sources (missing closing
	  tag).

2008-10-04 21:56:23 +0300  Stefan Kost <ensonic@users.sf.net>

	* docs/libs/Makefile.am:
	* docs/libs/gst-plugins-gl-libs-docs.sgml:
	* docs/libs/gst-plugins-gl-libs-sections.txt:
	* docs/libs/gst-plugins-gl-libs.types:
	  Build gtk-docs for libs.
	  Configure CFLAGS and LDFLAGS in Makefile.am. Add gobject and their include to
	  the .types file. Edit -docs.sgml and replace defaults.

2008-09-30 00:26:55 +0200  Julien <julien@bowob.(none)>

	* unix/codeblocks/gstopengl/gstopengl.cbp:
	  update frozen unix CodeBlocks build

2008-09-29 23:45:10 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* TODO:
	* docs/DEBUGGING:
	* gst/gl/gltestsrc.c:
	* gst/gl/gstglbumper.c:
	* gst/gl/gstglcolorscale.c:
	* gst/gl/gstgldownload.c:
	* gst/gl/gstglfilterapp.c:
	* gst/gl/gstglfiltercube.c:
	* gst/gl/gstglfilterglass.c:
	* gst/gl/gstglimagesink.c:
	* gst/gl/gstgltestsrc.c:
	* gst/gl/gstglupload.c:
	* gst/gl/gstopengl.c:
	  start to write the gtk doc

2008-09-26 13:41:13 -0700  David Schleef <ds@schleef.org>

	* docs/libs/Makefile.am:
	* docs/plugins/Makefile.am:
	* docs/plugins/inspect/plugin-opengl.xml:
	  Fix up gtk-doc documentation generation

2008-09-25 22:25:29 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst/gl/gstglfiltercube.c:
	* gst/gl/gstglfilterglass.c:
	  fix glfilterglass (reason: videotestsrc rgb is by default bpp=32, depth=24, so alpha channel is 0)

2008-09-24 19:32:48 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst/gl/CMakeLists.txt:
	* win32/codeblock/gstopengl.cbp:
	* win32/vs8/libgstopengl.vcproj:
	  update cmake build and the 2 frozen win32 builds (CodeBlocks, vs8)

2008-09-24 15:53:32 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* docs/DEBUGGING:
	  added some bit to debugging file

2008-09-23 10:37:58 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst/gl/CMakeLists.txt:
	* gst/gl/Makefile.am:
	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/effects/gstgleffectssources.h:
	* gst/gl/gstglfiltersobel.c:
	* gst/gl/gstopengl.c:
	  import sobel edge detector from cvs branch

2008-09-24 02:07:41 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* INSTALL:
	* TODO:
	* docs/DEBUGGING:
	* gst/gl/gstglfilterglass.c:
	* tests/pipelines:
	  can use several G_LOG_DOMAINs and GST_CATegories, with msvc8

2008-09-22 09:47:16 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/gstglpixbufoverlay.c:
	  use right blending function with pixbuf overlay

2008-09-21 10:58:13 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	  no need to explicit set the debug category if default one is used

2008-09-21 10:04:49 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/effects/gstgleffectlumatocurve.c:
	* gst/gl/effects/gstgleffectrgbtocurve.c:
	  use texture1 for curve textures

2008-09-21 19:50:34 +0200  Julien <julien@bowob.(none)>

	* unix/codeblocks/gstopengl/gstopengl.cbp:
	  Update unix codeblocks build

2008-09-21 19:36:42 +0200  Julien Isorce <julien.isorce@gmail.com>

	  trying to resolve conflicts ...

2008-09-21 19:26:37 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* TODO:
	* gst/gl/CMakeLists.txt:
	* gst/gl/Makefile.am:
	* gst/gl/gstglfilterglass.c:
	* gst/gl/gstglfilterglass.h:
	* gst/gl/gstopengl.c:
	* win32/codeblock/gstopengl.cbp:
	* win32/vs8/libgstopengl.vcproj:
	  Add a glfilterglass inspired from http://www.mdk.org.pl/2007/11/17/gl-colorspace-conversions

2008-09-21 16:40:38 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstglshader.c:
	  explicit check g_getenv return value to be not NULL

2008-09-20 15:44:24 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* TODO:
	* gst-libs/gst/gl/gstglbuffer.c:
	* gst-libs/gst/gl/gstglbuffer.h:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	* gst-libs/gst/gl/gstglfilter.c:
	* gst-libs/gst/gl/gstglfilter.h:
	* gst/gl/gstgldownload.c:
	* gst/gl/gstglimagesink.c:
	* gst/gl/gstglimagesink.h:
	* gst/gl/gstgltestsrc.h:
	* gst/gl/gstglupload.c:
	* gst/gl/gstopengl.c:
	  update authors from the CVS repository

2008-09-20 14:12:49 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstglshader.c:
	  output shaders info log only if GST_GL_SHADER_DEBUG env variable is set. Should fix TODO task 18

2008-09-20 13:32:33 +0200  Julien <julien@bowob.(none)>

	* configure.ac:
	  revert a change: opengl->gl in configure.ac, because it was looking for an opengl directory which does not exist

2008-09-20 01:50:28 +0200  Julien <julien@bowob.(none)>

	* TODO:
	* configure.ac:
	* win32/common/config.h.in:
	  few changes about configure outputs, close TODO task 20 and 21

2008-09-19 12:47:06 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/effects/gstgleffectlumatocurve.c:
	* gst/gl/effects/gstgleffectrgbtocurve.c:
	  explicitly bind the main texture and the curve one to separate units in rgb and luma to curve effects. This should solve the issue pointed in TODO item 21.

2008-09-18 22:50:05 +0200  Julien Isorce <julien.isorce@gmail.com>

	* .gitignore:
	* docs/libgstopengl.pdf:
	* gst-libs/gst/gl/gstgldisplay.c:
	* tests/examples/gtk/filternoxoverlay/filternoxoverlay.vcproj:
	* tests/examples/gtk/filternoxoverlay/main.cpp:
	* tests/examples/gtk/gtk.sln:
	* tests/pipelines:
	  check on win32 that every tests/pipelines and tests/examples (generic, gtk, qt) still work

2008-09-18 21:13:37 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	  fix a regression that made the gltestsrc element not working

2008-09-17 23:48:29 +0200  Julien Isorce <julien.isorce@gmail.com>

	* TODO:
	* docs/libgstopengl.vsd:
	* tests/pipelines:
	  up doc

2008-09-16 02:10:31 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* TODO:
	* gst-libs/gst/gl/gstgldisplay.c:
	  fix a regression about MESA YCbCr colorspace conversion

2008-09-14 23:22:58 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	* tests/examples/generic/cubeyuv/main.cpp:
	* tests/pipelines:
	  fix a regression (sometimes a FBO is needed even if the video source is rgb)

2008-09-14 19:56:50 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* TODO:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst/gl/gstgleffects.c:
	  Finish TODO task 17

2008-09-13 19:47:44 +0200  Julien <julien@bowob.(none)>

	* gst-libs/gst/gl/gstgldisplay.c:
	  fix g_int_hash -> g_direct_hash

2008-09-13 18:17:42 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* TODO:
	* gst-libs/gst/gl/gstgldisplay.c:
	* tests/pipelines:
	  Use a better key for the pool of textures

2008-09-13 03:32:04 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* TODO:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst/gl/gstglimagesink.c:
	* gst/gl/gstgltestsrc.c:
	* gst/gl/gstgltestsrc.h:
	* gst/gl/gstglupload.c:
	* win32/common/config.h:
	  Use a gst debug category for GstGLDisplay instead of g_print, gst-launch-0.10 --gst-debug=gldisplay:3 videotestsrc ! glimagesink

2008-09-12 01:27:37 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/freeglut/CMakeLists.txt:
	  small condition for the cmake build on win32

2008-09-12 01:13:50 +0200  Julien <julien@bowob.(none)>

	* CMakeLists.txt:
	* ChangeLog:
	* cmake/modules/FindATK.cmake:
	* cmake/modules/FindCairo.cmake:
	* cmake/modules/FindGTK2.cmake:
	* cmake/modules/FindGlew.cmake:
	* cmake/modules/FindGlib2.cmake:
	* cmake/modules/FindGstreamer.cmake:
	* cmake/modules/FindLibXml2.cmake:
	* cmake/modules/FindOpenGL.cmake.off:
	* gst-libs/gst/freeglut/CMakeLists.txt:
	* gst-libs/gst/gl/CMakeLists.txt:
	* gst/gl/Makefile.am:
	* win32/common/config.h:
	  The CMake build now works on my Kubuntu-KDE4.1.1

2008-09-11 02:07:12 +0200  Julien Isorce <julien.isorce@gmail.com>

	* .gitignore:
	* AUTHORS:
	* CMakeLists.txt:
	* ChangeLog:
	* INSTALL:
	* TODO:
	* cmake/modules/FindATK.cmake:
	* cmake/modules/FindCairo.cmake:
	* cmake/modules/FindGTK2.cmake:
	* cmake/modules/FindGlew.cmake:
	* cmake/modules/FindGlib2.cmake:
	* cmake/modules/FindGstreamer.cmake:
	* cmake/modules/FindLibIconv.cmake:
	* cmake/modules/FindLibXml2.cmake:
	* gst-libs/CMakeLists.txt:
	* gst-libs/gst/CMakeLists.txt:
	* gst-libs/gst/freeglut/CMakeLists.txt:
	* gst-libs/gst/gl/CMakeLists.txt:
	* gst/CMakeLists.txt:
	* gst/gl/CMakeLists.txt:
	* win32/common/config.h:
	  Add cmake build http://www.cmake.org. See CMake install instructions in the INSTALL file. (I have not correctly configured yet the CMake build for unix, BE patient)

2008-09-07 17:44:42 +0200  Julien <julien@bowob.(none)>

	* gst/gl/gstopengl.c:
	  fix glbumper related gtk dependencies

2008-09-07 14:17:57 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst/gl/Makefile.am:
	* gst/gl/gstopengl.c:
	* win32/codeblock/gstopengl.cbp:
	  glbumper is compiled only when having GdkPixBuf. And update win32 codeblocks build

2008-09-07 01:38:10 +0200  julien User <julien@ubuntu.ubuntu-domain>

	* gst/gl/gstglbumper.c:
	* unix/codeblocks/gstopengl/gstopengl.cbp:
	  update codeblocks build on linux and fix a warning

2008-09-07 01:23:19 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst/gl/gstglbumper.c:
	* gst/gl/gstglbumper.h:
	  forgot to add the bumper files

2008-09-07 00:45:34 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* TODO:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	* gst-libs/gst/gl/gstglshader.c:
	* gst-libs/gst/gl/gstglshader.h:
	* gst/gl/Makefile.am:
	* gst/gl/gstglfilterblur.c:
	* gst/gl/gstglfilterlaplacian.c:
	* gst/gl/gstglpixbufoverlay.c:
	* gst/gl/gstopengl.c:
	* tests/pipelines:
	* win32/vs8/libgstopengl.vcproj:
	  add a glbumper (bump mapping filter through GLSL) that exposes how to use both vertex and fragment shaders

2008-08-25 10:34:54 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	  Fix upload AYUV and YV12 (a regression in last commits)

2008-08-24 16:33:26 +0200  julien User <julien@ubuntu.ubuntu-domain>

	* gst-libs/gst/gl/gstgldisplay.c:
	  get ride of a wrong color on nvidia/linux when converting yv12 to rgb through GLSL

2008-08-24 15:39:14 +0200  julien User <julien@ubuntu.ubuntu-domain>

	* gst-libs/gst/gl/gstgldisplay.c:
	  fix warnings

2008-08-24 04:24:29 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	  fix upload AYUV, regression during the 2 last commits

2008-08-24 03:38:40 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	  oups, fix my mistake on last commit

2008-08-24 03:12:12 +0200  unknown <Luc@.(none)>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	* gst/gl/BUGS:
	* gst/gl/gstgldownload.c:
	* gst/gl/gstglimagesink.c:
	* gst/gl/gstglupload.c:
	  Do not use frame buffer object when "input video is RGB" or when "GLSL is not available and YCbCr is available". So frame buffer object is not a plugin requirement anymore. So I decreased the OpengGL version from 1.4 to 1.2 (maybe less?)

2008-08-21 16:04:28 +0200  Julien Isorce <julien.isorce@gmail.com>

	* BUGS:
	* ChangeLog:
	* gst-libs/gst/freeglut/freeglut_init.c:
	* gst-libs/gst/freeglut/freeglut_main.c:
	* gst-libs/gst/freeglut/freeglut_window.c:
	  fix a bug about switching from NULL to  PLAYING gst states multiple times

2008-08-21 11:12:42 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	  use a GHash  table instead of a GData for the texture pool

2008-08-20 17:55:46 +0200  Julien Isorce <julien.isorce@gmail.com>

	* BUGS:
	* ChangeLog:
	* tests/examples/gtk/filternoxoverlay/main.cpp:
	* tests/examples/gtk/filterxoverlay/main.cpp:
	* tests/examples/gtk/gtkxoverlay/main.cpp:
	  fix last isssue in filter_NO_xoverlay example

2008-08-20 15:47:51 +0200  Julien Isorce <julien.isorce@gmail.com>

	* BUGS:
	* ChangeLog:
	* configure.ac:
	* gst-libs/gst/gl/gstgldisplay.c:
	* tests/examples/gtk/Makefile.am:
	* tests/examples/gtk/README:
	* tests/examples/gtk/filternoxoverlay/Makefile.am:
	* tests/examples/gtk/filternoxoverlay/main.cpp:
	* unix/codeblocks/gstopengl/gstopengl.cbp:
	  get ride of a bug on ATI related to YV12 to rgb conversion through GLSL and add an example

2008-08-20 10:02:02 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/gstglpixbufoverlay.c:
	  use opengl for pixbuf resizing in glpixbufoverlay, start to work on properties

2008-08-20 09:26:46 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/gstglpixbufoverlay.c:
	  use fixed opengl pipeline for glpixbufoverlay (any drawback?)

2008-08-20 09:24:53 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	  fix a signedness warning

2008-08-20 00:11:39 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	  get ride of a ATI bug related to GLSL colorspace conversion for I420 and YV12 to rgb

2008-08-19 22:15:17 +0200  Julien Isorce <julien.isorce@gmail.com>

	* BUGS:
	* tests/examples/gtk/fxtest/pixbufdrop.c:
	* tests/examples/gtk/gtk.sln:
	* tests/examples/gtk/pixbufdrop/pixbufdrop.vcproj:
	* win32/vs8/libgstopengl.vcproj:
	  add pixbufdrop vs8 project

2008-08-19 21:04:29 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst/gl/gstgldifferencematte.c:
	* tests/examples/gtk/fxtest/fxtest.c:
	* tests/examples/gtk/fxtest/fxtest.vcproj:
	* tests/examples/gtk/fxtest/pixbufdrop.c:
	* tests/examples/gtk/gtk.sln:
	* win32/vs8/libgstopengl.vcproj:
	  add fxtest vs8 project

2008-08-19 11:07:18 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* TODO:
	* gst/gl/gstgleffects.c:
	* unix/codeblocks/gstopengl/gstopengl.cbp:
	  Shaders which are in the shaderstable are now released

2008-08-19 09:48:14 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/gstgldifferencematte.c:
	  fix a differencematte memory issue

2008-08-19 08:50:14 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/gstgldifferencematte.c:
	* tests/examples/gtk/fxtest/Makefile.am:
	* tests/examples/gtk/fxtest/pixbufdrop.c:
	  fix gstgldifferencematte and add an example app to test it dragging an image over the video (works with pixbufoverlay too, see pixbufdrop --help)

2008-08-18 21:50:09 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/gstgldifferencematte.c:
	  another typo, restore old twirl fragment source

2008-08-18 21:43:02 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/gstgldifferencematte.c:
	  fix typos

2008-08-18 21:40:26 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/effects/gstgleffectssources.h:
	* gst/gl/gstgldifferencematte.c:
	  complete differencematte filter.. I did it quickly, probably still needs some work

2008-08-18 20:25:25 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/Makefile.am:
	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/effects/gstgleffectssources.h:
	* gst/gl/gstgldifferencematte.c:
	* gst/gl/gstglpixbufoverlay.c:
	* gst/gl/gstopengl.c:
	  little cleanup. add first draft of gstgldifferencematte. still doesn't work

2008-08-18 18:53:13 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst/gl/gstglimagesink.c:
	  force calling glimagesink->stop() when going from PAUSED to READY

2008-08-18 17:19:06 +0200  unknown <Administrateur@.(none)>

	* ChangeLog:
	* gst/gl/effects/gstgleffectbulge.c:
	* gst/gl/effects/gstgleffectfisheye.c:
	* gst/gl/effects/gstgleffectglow.c:
	* gst/gl/effects/gstgleffectmirror.c:
	* gst/gl/effects/gstgleffectsquare.c:
	* gst/gl/effects/gstgleffectsqueeze.c:
	* gst/gl/effects/gstgleffectstretch.c:
	* gst/gl/effects/gstgleffecttunnel.c:
	* gst/gl/effects/gstgleffecttwirl.c:
	* gst/gl/gstgleffects.c:
	* gst/gl/gstglfilterblur.c:
	* gst/gl/gstglpixbufoverlay.c:
	* win32/vs8/libgstopengl.vcproj:
	  update vs8 build and fix some warnings that comes from vc8

2008-08-18 16:29:04 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* win32/common/config.h:
	  restore win32/common/config.h

2008-08-18 16:16:58 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* configure.ac:
	* gst/gl/Makefile.am:
	* gst/gl/gstglpixbufoverlay.c:
	* gst/gl/gstopengl.c:
	  add first draft of a pixbuf overlay element. add macros to optionally build the latter if gdk-pixbuf is found

2008-08-18 13:08:41 +0200  Julien Isorce <julien.isorce@gmail.com>

	* unix/codeblocks/gstopengl/gstopengl.cbp:
	  update codeblocks build

2008-08-18 11:48:47 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* tests/examples/clutter/clutteractortee.c:
	  remove expose event handling, it's map-unmap that is not behaving correctly, any idea?

2008-08-18 11:08:09 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* tests/examples/clutter/clutteractortee.c:
	  add expose event handling to clutteractortee

2008-08-18 10:50:37 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* tests/examples/clutter/Makefile.am:
	* tests/examples/clutter/clutteractor.c:
	* tests/examples/clutter/clutteractortee.c:
	  add clutteractortee example, a nice example about how clutter could be used to create a live preview widget for gleffects. It uses texture from pixmap, still needs some work regarding clean exit and expose event management.

2008-08-18 09:06:09 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* configure.ac:
	* gst/gl/effects/gstgleffectssources.c:
	  add a couple of macros to autotools to compile with uintrepid automake. remove array constructor so we don't have to depend on glsl #version 120.

2008-08-17 17:45:52 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* tests/examples/clutter/Makefile.am:
	* tests/examples/clutter/clutteractor.c:
	  add an example to use texture from pixmap to do some kind of x_overlay on a clutteractor. A better way would be to directly share gl handles between clutter and gstgl but still I cannot find a way to do it.

2008-08-17 15:32:16 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* configure.ac:
	* tests/examples/Makefile.am:
	  add clutter macros on configure.ac

2008-08-17 12:21:49 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/effects/gstgleffectscurves.h:
	  add a better sepia toning curve

2008-08-17 09:39:16 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* AUTHORS:
	* ChangeLog:
	  add me to AUTHORS file

2008-08-17 09:24:24 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/gstgltestsrc.c:
	* po/en.po:
	  add a translatable string to testsrc to get rid of po dir errors after distclean and git clean

2008-08-16 17:36:10 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* tests/examples/gtk/fxtest/fxtest.c:
	  minor cleanup in fxtest

2008-08-16 12:37:36 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/effects/gstgleffectbulge.c:
	* gst/gl/effects/gstgleffectfisheye.c:
	* gst/gl/effects/gstgleffectmirror.c:
	* gst/gl/effects/gstgleffectsdistortion.c:
	* gst/gl/effects/gstgleffectsquare.c:
	* gst/gl/effects/gstgleffectsqueeze.c:
	* gst/gl/effects/gstgleffectstretch.c:
	* gst/gl/effects/gstgleffecttunnel.c:
	* gst/gl/effects/gstgleffecttwirl.c:
	  distortion effect cleanup

2008-08-16 10:15:31 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* BUGS:
	* ChangeLog:
	* tests/examples/gtk/fxtest/fxtest.c:
	  improve fxtest command line option handling, default to videotestsrc if no source bin description is given

2008-08-16 09:40:54 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/gstgleffects.c:
	  fix gleffects memory issue (init resources on start and reset them on stop)

2008-08-16 09:17:14 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst/gl/effects/gstgleffectssources.c:
	  fix a typo

2008-08-16 09:13:39 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/Makefile.am:
	* gst/gl/effects/gstgleffectsin.c:
	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/effects/gstgleffectssources.h:
	* gst/gl/gstgleffects.c:
	* gst/gl/gstgleffects.h:
	* tests/examples/gtk/fxtest/fxtest.c:
	  add sin effect (desaturate everything but red shades). still needs some tuning.

2008-08-14 22:28:19 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/gstgleffects.c:
	* gst/gl/gstgleffects.h:
	  add a property to gleffects to switch video left to right, useful with webcams to resemble a mirror

2008-08-14 21:29:02 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/effects/gstgleffectlumatocurve.c:
	* gst/gl/effects/gstgleffectscurves.h:
	* gst/gl/gstgleffects.c:
	* gst/gl/gstgleffects.h:
	* tests/examples/gtk/fxtest/fxtest.c:
	  add lumaxpro (desaturate + cross process) effect. nothing too impressive but I like it.

2008-08-14 20:54:54 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* BUGS:
	* ChangeLog:
	* tests/examples/gtk/fxtest/fxtest.c:
	  add support for command line parsing to fxtest (try fxtest videotestsrc ! desired caps ! identity). report a new issue on BUGS.

2008-08-14 20:02:04 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* configure.ac:
	* gst-libs/gst/gl/gstglfilter.c:
	* gst-libs/gst/gl/gstglfilter.h:
	* gst/gl/effects/gstgleffectrgbtocurve.c:
	* gst/gl/gstgleffects.c:
	* tests/examples/gtk/Makefile.am:
	* tests/examples/gtk/fxtest/Makefile.am:
	* tests/examples/gtk/fxtest/fxtest.c:
	  import fxtest (little gtk app to easily test effects) from cvs branch, fixed rgbtocurve.

2008-08-14 17:03:21 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst/gl/gstopengl.c:
	* unix/codeblocks/gstopengl/gstopengl.cbp:
	  update codeblocks build

2008-08-14 14:08:23 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/Makefile.am:
	* gst/gl/effects/gstgleffectbulge.c:
	* gst/gl/effects/gstgleffectfisheye.c:
	* gst/gl/effects/gstgleffectsdistortion.c:
	* gst/gl/effects/gstgleffectsquare.c:
	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/effects/gstgleffectssources.h:
	* gst/gl/effects/gstgleffecttunnel.c:
	* gst/gl/effects/gstgleffecttwirl.c:
	* gst/gl/gstgleffects.c:
	* gst/gl/gstgleffects.h:
	  import remaining distortion effects from cvs branch (fisheye, twirl, bulge, tunnel, square)

2008-08-14 12:39:01 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/effects/gstgleffectscurves.h:
	  cleanup curves header

2008-08-14 12:26:25 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/effects/gstgleffectscurves.h:
	  better cross processing curve

2008-08-14 12:09:39 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/Makefile.am:
	* gst/gl/effects/gstgleffectrgbtocurve.c:
	* gst/gl/effects/gstgleffectscurves.h:
	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/effects/gstgleffectssources.h:
	* gst/gl/gstgleffects.c:
	* gst/gl/gstgleffects.h:
	  add rgb_to_luma_fragment source and correspondent effect. use the latter for a cross processing effect.

2008-08-14 11:31:09 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/Makefile.am:
	* gst/gl/effects/gstgleffectlumatocurve.c:
	* gst/gl/effects/gstgleffectscurves.h:
	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/effects/gstgleffectssources.h:
	* gst/gl/gstgleffects.c:
	* gst/gl/gstgleffects.h:
	  import luma_to_curve effects (Sepia, Heat) from cvs branch with better texture memory handling (teximage curves only once). Sepia curve still needs some love.

2008-08-14 10:37:32 +0200  Julien Isorce <julien.isorce@gmail.com>

	* autogen.sh:
	* configure.ac:
	* tests/pipelines:
	* unix/codeblocks/gstopengl/gstopengl.cbp:
	  add GLEW check in configure.ac

2008-08-14 09:39:55 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/effects/gstgleffectglow.c:
	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/effects/gstgleffectssources.h:
	  rename blend_fragment_source to sum_fragment_source and add uniform blending parameters

2008-08-14 09:26:23 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/Makefile.am:
	* gst/gl/effects/gstgleffectglow.c:
	* gst/gl/effects/gstgleffects.h:
	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/effects/gstgleffectssources.h:
	* gst/gl/gstgleffects.c:
	* gst/gl/gstgleffects.h:
	  import glow effect (maybe the most tricky) from cvs branch

2008-08-14 08:03:49 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/Makefile.am:
	* gst/gl/effects/gstgleffects.h:
	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/effects/gstgleffectssources.h:
	* gst/gl/effects/gstgleffectstretch.c:
	* gst/gl/gstgleffects.c:
	  import stretch effect from cvs

2008-08-14 00:07:20 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/Makefile.am:
	* gst/gl/effects/gstgleffects.h:
	* gst/gl/effects/gstgleffectsqueeze.c:
	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/effects/gstgleffectssources.h:
	* gst/gl/gstgleffects.c:
	  import squeeze effect from cvs

2008-08-13 22:42:48 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst/gl/effects/gstgleffectssources.c:
	  forgot to add a file

2008-08-13 22:36:13 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/Makefile.am:
	* gst/gl/effects/gstgleffectidentity.c:
	* gst/gl/effects/gstgleffectmirror.c:
	* gst/gl/effects/gstgleffects.h:
	* gst/gl/effects/gstgleffectssources.h:
	* gst/gl/gstgleffects.c:
	  still some source tree reorganize, fixed some issue with headers and ifdefs, moved identity into effects dir

2008-08-13 20:58:49 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst/gl/Makefile.am:
	* gst/gl/effects/gstgleffectmirror.c:
	* gst/gl/effects/gstgleffects.h:
	* gst/gl/effects/gstgleffectssources.h:
	* gst/gl/gstgleffects.c:
	  still working on mergin gstgleffects, add mirror effect. reorganize source tree.

2008-08-13 17:59:09 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	* gst/gl/gstglcolorscale.c:
	* gst/gl/gstglimagesink.c:
	* gst/gl/gstglupload.c:
	* tests/pipelines:
	  move thread_do_upload_make from thread_do_upload to thread_init_upload

2008-08-13 17:16:17 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/freeglut/freeglut_main.c:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst/gl/BUGS:
	  fix a crash that could happens when using at least 2 gl context and when closing a window on linux

2008-08-13 16:01:21 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst/gl/BUGS:
	* gst/gl/gstglcolorscale.c:
	* gst/gl/gstgldownload.c:
	* gst/gl/gstgleffects.c:
	* tests/pipelines:
	* unix/codeblocks/gstopengl/gstopengl.cbp:
	  fix some errors and check all the pipelines listed in tests/pipelines

2008-08-12 11:09:37 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/Makefile.am:
	* gst/gl/gstgleffects.c:
	* gst/gl/gstopengl.c:
	  added first skeleton of gstgleffects, imported basic stuff from cvs branch.

2008-08-11 20:26:30 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* BUGS:
	* ChangeLog:
	  remove fixed bugs: rgb is fixed, flickering seems to belong to my webcams or v4l*src since it happens with ximagesink too

2008-08-11 20:12:02 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst/gl/gstglfilterblur.c:
	  Try to genereate textures within gstglfilterblur to see if the new thread_use_fbo works both with textures from the pool and custom ones

2008-08-11 20:01:41 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	  remove an unneeded (really?) glTexImage

2008-08-11 19:08:22 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	* gst/gl/Makefile.am:
	  ISO C90

2008-08-11 19:01:33 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstglbuffer.c:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	* gst/gl/gstglfilterblur.c:
	  glTexImage2D(w, h, NULL) is now called only one time (mem alloc)

2008-08-11 17:21:30 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	  same as previous commit

2008-08-11 17:17:22 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	  Fix rgb issue. Current program should always be set to 0 when a new texture is attached to a fbo.

2008-08-11 15:53:12 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst/gl/gstopengl.c:
	* unix/codeblocks/gstopengl/gstopengl.cbp:
	  oups forgot to add 2 files to the previous commit

2008-08-11 15:40:39 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstglfilter.c:
	* gst/gl/gstglfilteredge.c:
	* gst/gl/gstglfilteredge.h:
	* gst/gl/gstglupload.c:
	  remove filteredge

2008-08-11 15:30:38 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst/gl/gstglfilterblur.c:
	* unix/codeblocks/gstopengl/gstopengl.cbp:
	  gen/del the middle texture only one time in the gstglfilterblur

2008-08-11 11:26:32 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst/gl/gstglfilterblur.c:
	* gst/gl/gstglfilterblur.h:
	* gst/gl/gstopengl.c:
	  remove gstglfilterblur.h, it's easier to have everything in the same file

2008-08-11 10:19:37 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* BUGS:
	  add a BUGS file to take note of known bugs

2008-08-11 10:08:37 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* win32/common/config.h:
	  remove win32/common/config.h since it's autogenerated by autotools.

2008-08-11 09:52:16 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	* gst-libs/gst/gl/gstglfilter.c:
	* gst-libs/gst/gl/gstglfilter.h:
	* gst/gl/gstglfilterblur.c:
	  Add init and reset callbacks in GstGLFilter to run arbitrary gl code at start and stop. Useful to init and cleanup custom gl resources.

2008-08-11 09:00:40 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	* gst/gl/gstglfilterblur.c:
	  Add a generic action to be able to execute arbitrary gl code within the gl thread with less pain

2008-08-10 12:30:51 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	  changelog update

2008-08-10 11:22:34 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstglfilter.c:
	* gst-libs/gst/gl/gstglfilter.h:
	* gst/gl/gstglfilterblur.c:
	  some steps towards simplification. added a convenience function to gstglfilter and some comment here and there

2008-08-05 10:15:07 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	  Fix GL_STACK_OVERFLOW

2008-08-04 12:13:29 +0200  Julien Isorce <julien.isorce@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	* gst/gl/gstglfilterblur.c:
	  fix warnings when compiling upload/download shaders

2008-08-04 11:40:24 +0200  Julien Isorce <julien.isorce@gmail.com>

	* tests/examples/generic/cubeyuv/main.cpp:
	* tests/examples/generic/doublecube/main.cpp:
	  use gst_element_get_static_pad instead of gst_element_get_pad which is deprecated

2008-08-04 09:56:59 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	  is that videoformat pointer really needed?

2008-08-04 09:46:14 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	  Don't reallocate texture memory every time in upload_* functions.

2008-08-01 11:30:26 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* configure.ac:
	* tests/examples/gtk/filterxoverlay/Makefile.am:
	  fix autotools stuff

2008-08-01 11:00:49 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	  reindent gstgldisplay with gstreamer-c-mode

2008-07-31 17:48:04 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* TODO:
	* gst/gl/Makefile.am:
	* gst/gl/gstglfilterblur.c:
	* gst/gl/gstglfilterblur.h:
	* gst/gl/gstglfilterlaplacian.c:
	* gst/gl/gstopengl.c:
	* unix/codeblocks/gstopengl/gstopengl.cbp:
	  add and make the Filippo's gstglfilterblur works on the master branch (example of multiple step rendering)

2008-07-31 13:59:44 +0200  julien <julien@KJIS.(none)>

	* unix/codeblocks/gstopengl/gstopengl.cbp:
	  add GstGLShader stuffs into codeblocks project

2008-07-31 13:17:49 +0200  julien <julien@KJIS.(none)>

	* ChangeLog:
	  fix qt warnings under linux

2008-07-31 13:17:17 +0200  julien <julien@KJIS.(none)>

	* tests/examples/qt/README:
	* tests/examples/qt/mousexoverlay/main.cpp:
	* tests/examples/qt/mousexoverlay/mousexoverlay.pro:
	* tests/examples/qt/qglwidgetxoverlay/main.cpp:
	* tests/examples/qt/qglwidgetxoverlay/qglwidgetxoverlay.pro:
	* tests/examples/qt/videoxoverlay/main.cpp:
	* tests/examples/qt/videoxoverlay/videoxoverlay.pro:
	  fix qt warnings under linux

2008-07-25 01:43:28 +0200  julien User <julien@ubuntu.ubuntu-domain>

	* configure.ac:
	* gst/gl/gstglimagesink.c:
	  fix makefiles list from configure.ac (tests have changes) and fix a warning

2008-07-22 00:30:32 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* tests/examples/generic/cube/cube.sln:
	* tests/examples/generic/cubeyuv/cubeyuv.sln:
	* tests/examples/generic/doublecube/doublecube.sln:
	* tests/examples/generic/generic.sln:
	* tests/examples/generic/recordgraphic/recordgraphic.sln:
	* tests/examples/gtk/gtk.sln:
	* tests/examples/gtk/gtkxoverlay/gtkoverlay.sln:
	* tests/examples/gtk/gtkxoverlay/gtkxoverlay.vcproj:
	  Finish to arrange the examples

2008-07-22 00:18:00 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* tests/examples/Makefile.am:
	* tests/examples/cube/Makefile.am:
	* tests/examples/cube/cube.sln:
	* tests/examples/cube/cube.vcproj:
	* tests/examples/cube/main.cpp:
	* tests/examples/cubeyuv/Makefile.am:
	* tests/examples/cubeyuv/cubeyuv.sln:
	* tests/examples/cubeyuv/cubeyuv.vcproj:
	* tests/examples/cubeyuv/main.cpp:
	* tests/examples/doublecube/Makefile.am:
	* tests/examples/doublecube/doublecube.sln:
	* tests/examples/doublecube/doublecube.vcproj:
	* tests/examples/doublecube/main.cpp:
	* tests/examples/generic/Makefile.am:
	* tests/examples/generic/README:
	* tests/examples/generic/cube/Makefile.am:
	* tests/examples/generic/cube/cube.sln:
	* tests/examples/generic/cube/cube.vcproj:
	* tests/examples/generic/cube/main.cpp:
	* tests/examples/generic/cubeyuv/Makefile.am:
	* tests/examples/generic/cubeyuv/cubeyuv.sln:
	* tests/examples/generic/cubeyuv/cubeyuv.vcproj:
	* tests/examples/generic/cubeyuv/main.cpp:
	* tests/examples/generic/doublecube/Makefile.am:
	* tests/examples/generic/doublecube/doublecube.sln:
	* tests/examples/generic/doublecube/doublecube.vcproj:
	* tests/examples/generic/doublecube/main.cpp:
	* tests/examples/generic/recordgraphic/Makefile:
	* tests/examples/generic/recordgraphic/main.cpp:
	* tests/examples/generic/recordgraphic/recordgraphic.sln:
	* tests/examples/generic/recordgraphic/recordgraphic.vcproj:
	* tests/examples/gtk/Makefile.am:
	* tests/examples/gtk/gtkxoverlay/Makefile.am:
	* tests/examples/gtk/gtkxoverlay/gtkoverlay.sln:
	* tests/examples/gtk/gtkxoverlay/gtkxoverlay.vcproj:
	* tests/examples/gtk/gtkxoverlay/main.cpp:
	* tests/examples/gtkxoverlay/Makefile.am:
	* tests/examples/gtkxoverlay/gtkoverlay.sln:
	* tests/examples/gtkxoverlay/gtkxoverlay.vcproj:
	* tests/examples/gtkxoverlay/main.cpp:
	* tests/examples/mousexoverlay/gstthread.cpp:
	* tests/examples/mousexoverlay/gstthread.h:
	* tests/examples/mousexoverlay/main.cpp:
	* tests/examples/mousexoverlay/mousexoverlay.pri:
	* tests/examples/mousexoverlay/mousexoverlay.pro:
	* tests/examples/mousexoverlay/mousexoverlay.sln:
	* tests/examples/mousexoverlay/mousexoverlay.vcproj:
	* tests/examples/mousexoverlay/pipeline.cpp:
	* tests/examples/mousexoverlay/pipeline.h:
	* tests/examples/mousexoverlay/qrenderer.cpp:
	* tests/examples/mousexoverlay/qrenderer.h:
	* tests/examples/qglwidgetxoverlay/gstthread.cpp:
	* tests/examples/qglwidgetxoverlay/gstthread.h:
	* tests/examples/qglwidgetxoverlay/main.cpp:
	* tests/examples/qglwidgetxoverlay/pipeline.cpp:
	* tests/examples/qglwidgetxoverlay/pipeline.h:
	* tests/examples/qglwidgetxoverlay/qglrenderer.cpp:
	* tests/examples/qglwidgetxoverlay/qglrenderer.h:
	* tests/examples/qglwidgetxoverlay/qglwidgetxoverlay.pri:
	* tests/examples/qglwidgetxoverlay/qglwidgetxoverlay.pro:
	* tests/examples/qglwidgetxoverlay/qglwidgetxoverlay.sln:
	* tests/examples/qglwidgetxoverlay/qglwidgetxoverlay.vcproj:
	* tests/examples/qt/README:
	* tests/examples/qt/mousexoverlay/gstthread.cpp:
	* tests/examples/qt/mousexoverlay/gstthread.h:
	* tests/examples/qt/mousexoverlay/main.cpp:
	* tests/examples/qt/mousexoverlay/mousexoverlay.pri:
	* tests/examples/qt/mousexoverlay/mousexoverlay.pro:
	* tests/examples/qt/mousexoverlay/mousexoverlay.sln:
	* tests/examples/qt/mousexoverlay/mousexoverlay.vcproj:
	* tests/examples/qt/mousexoverlay/pipeline.cpp:
	* tests/examples/qt/mousexoverlay/pipeline.h:
	* tests/examples/qt/mousexoverlay/qrenderer.cpp:
	* tests/examples/qt/mousexoverlay/qrenderer.h:
	* tests/examples/qt/qglwidgetxoverlay/gstthread.cpp:
	* tests/examples/qt/qglwidgetxoverlay/gstthread.h:
	* tests/examples/qt/qglwidgetxoverlay/main.cpp:
	* tests/examples/qt/qglwidgetxoverlay/pipeline.cpp:
	* tests/examples/qt/qglwidgetxoverlay/pipeline.h:
	* tests/examples/qt/qglwidgetxoverlay/qglrenderer.cpp:
	* tests/examples/qt/qglwidgetxoverlay/qglrenderer.h:
	* tests/examples/qt/qglwidgetxoverlay/qglwidgetxoverlay.pri:
	* tests/examples/qt/qglwidgetxoverlay/qglwidgetxoverlay.pro:
	* tests/examples/qt/qglwidgetxoverlay/qglwidgetxoverlay.sln:
	* tests/examples/qt/qglwidgetxoverlay/qglwidgetxoverlay.vcproj:
	* tests/examples/qt/videoxoverlay/gstthread.cpp:
	* tests/examples/qt/videoxoverlay/gstthread.h:
	* tests/examples/qt/videoxoverlay/main.cpp:
	* tests/examples/qt/videoxoverlay/pipeline.cpp:
	* tests/examples/qt/videoxoverlay/pipeline.h:
	* tests/examples/qt/videoxoverlay/qrenderer.cpp:
	* tests/examples/qt/videoxoverlay/qrenderer.h:
	* tests/examples/qt/videoxoverlay/videoxoverlay.pri:
	* tests/examples/qt/videoxoverlay/videoxoverlay.pro:
	* tests/examples/qt/videoxoverlay/videoxoverlay.sln:
	* tests/examples/qt/videoxoverlay/videoxoverlay.vcproj:
	* tests/examples/recordgraphic/Makefile:
	* tests/examples/recordgraphic/main.cpp:
	* tests/examples/recordgraphic/recordgraphic.sln:
	* tests/examples/recordgraphic/recordgraphic.vcproj:
	* tests/examples/videoxoverlay/gstthread.cpp:
	* tests/examples/videoxoverlay/gstthread.h:
	* tests/examples/videoxoverlay/main.cpp:
	* tests/examples/videoxoverlay/pipeline.cpp:
	* tests/examples/videoxoverlay/pipeline.h:
	* tests/examples/videoxoverlay/qrenderer.cpp:
	* tests/examples/videoxoverlay/qrenderer.h:
	* tests/examples/videoxoverlay/videoxoverlay.pri:
	* tests/examples/videoxoverlay/videoxoverlay.pro:
	* tests/examples/videoxoverlay/videoxoverlay.sln:
	* tests/examples/videoxoverlay/videoxoverlay.vcproj:
	  Arranged examples, but some of them are temporarly off

2008-07-21 23:46:13 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* tests/examples/Makefile.am:
	* tests/examples/README:
	* tests/examples/cubeyuv/main.cpp:
	* tests/examples/doublecube/main.cpp:
	* tests/examples/generic/Makefile.am:
	* tests/examples/generic/README:
	* tests/examples/gtk/Makefile.am:
	* tests/examples/gtk/README:
	* tests/examples/gtk/filterxoverlay/Makefile.am:
	* tests/examples/gtk/filterxoverlay/filterxoverlay.vcproj:
	* tests/examples/gtk/filterxoverlay/main.cpp:
	* tests/examples/gtk/gtk.sln:
	* tests/examples/qt/Makefile.am:
	* tests/examples/qt/README:
	* tests/examples/readme.txt:
	* tests/examples/wx/Makefile.am:
	  Prepare to arrange the examples

2008-07-21 00:24:48 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* TODO:
	* gst-libs/gst/gl/gstgldisplay.c:
	  finish todo task 4

2008-07-20 16:38:48 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* TODO:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	* gst-libs/gst/gl/gstglfilter.c:
	* gst/gl/gstglcolorscale.c:
	* gst/gl/gstgldownload.c:
	* gst/gl/gstglimagesink.c:
	* gst/gl/gstgltestsrc.c:
	* gst/gl/gstglupload.c:
	  make the plugin properly shutdown when one of the check requirements failed

2008-07-20 12:26:42 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* configure.ac:
	* tests/examples/Makefile.am:
	* tests/examples/gtkxoverlay/Makefile:
	* tests/examples/gtkxoverlay/Makefile.am:
	  convert tests/examples/gtkxoverlay to automake

2008-07-19 17:15:41 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* REQUIREMENTS:
	* TODO:
	* tests/examples/cubeyuv/main.cpp:
	* tests/examples/doublecube/main.cpp:
	* tests/examples/mousexoverlay/pipeline.cpp:
	* tests/examples/qglwidgetxoverlay/pipeline.cpp:
	* tests/examples/readme.txt:
	* tests/examples/videoxoverlay/pipeline.cpp:
	  The video location is given in argument for the cubeyuv and doulecube example. Use decodebin.

2008-07-19 08:32:38 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	* gst/gl/gstglfilteredge.c:
	  fix warnings (unused vars)

2008-07-19 03:00:26 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* TODO:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	* gst/gl/gstglfilteredge.c:
	* gst/gl/gstglfilteredge.h:
	* gst/gl/gstglfilterlaplacian.c:
	* gst/gl/gstglfilterlaplacian.h:
	  use GstGLShader in the GLSL colorspace conversion

2008-07-18 22:58:33 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* TODO:
	  Add coding style suggestion in TODO file

2008-07-18 22:33:44 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst/gl/gstglfilterlaplacian.c:
	  fixed warning for unused variable (fatal with -Werror)

2008-07-18 22:15:40 +0200  Julien Isorce <julien.isorce@gmail.com>

	* TODO:
	  I was wrong about the : instead of using g_assert

2008-07-18 21:55:00 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* TODO:
	* gst-libs/gst/gl/gstgldisplay.c:
	* gst/gl/gstglfilterlaplacian.c:
	* tests/examples/qglwidgetxoverlay/qglrenderer.cpp:
	* tests/examples/qglwidgetxoverlay/qglrenderer.h:
	* tests/pipelines:
	* win32/vs8/libgstopengl.vcproj:
	  add GstGLShader stuffs in the vs8 project, fix laplacian fragment code to make it compile on ATI, and fix check function about Opengl and Glew version

2008-07-18 10:49:34 +0200  Filippo Argiolas <filippo.argiolas@gmail.com>

	* ChangeLog:
	* gst-libs/gst/gl/Makefile.am:
	* gst-libs/gst/gl/gstglshader.c:
	* gst-libs/gst/gl/gstglshader.h:
	* gst/gl/Makefile.am:
	* gst/gl/gstglfilterlaplacian.c:
	* gst/gl/gstglfilterlaplacian.h:
	* gst/gl/gstopengl.c:
	  Imported GstGLShader from cvs branch. Added a demo laplacian convolution filter to demonstrate how this can be integrated with minimum effort.

2008-07-18 01:39:56 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* tests/examples/mousexoverlay/gstthread.cpp:
	* tests/examples/mousexoverlay/main.cpp:
	* tests/examples/qglwidgetxoverlay/gstthread.cpp:
	* tests/examples/qglwidgetxoverlay/gstthread.h:
	* tests/examples/qglwidgetxoverlay/main.cpp:
	* tests/examples/qglwidgetxoverlay/pipeline.cpp:
	* tests/examples/qglwidgetxoverlay/pipeline.h:
	  Make the qglwidgetxoverlay example work on linux, and browse files to load a local video

2008-07-17 23:54:28 +0200  Julien Isorce <julien.isorce@gmail.com>

	  Merge branch 'master' of cap@diracvideo.org:/git/gst-plugins-gl

2008-07-17 23:53:51 +0200  Julien Isorce <julien.isorce@gmail.com>

	* ChangeLog:
	* tests/examples/doublecube/data/Thumbs.db:
	* tests/examples/mousexoverlay/gstthread.cpp:
	* tests/examples/mousexoverlay/gstthread.h:
	* tests/examples/mousexoverlay/main.cpp:
	* tests/examples/mousexoverlay/pipeline.cpp:
	* tests/examples/mousexoverlay/pipeline.h:
	* tests/examples/mousexoverlay/qrenderer.cpp:
	* tests/examples/mousexoverlay/qrenderer.h:
	* tests/examples/videoxoverlay/pipeline.cpp:
	  Make the mousexoverlay work on linux, and browse files to load a local video