summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 654a70a8408114c2dcb765e26b3c371884db597e (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
2008-09-22  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-09-22  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	  no need to explicit set the debug category if default one is used
	* gst/gl/effects/gstgleffectlumatocurve.c:
	* gst/gl/effects/gstgleffectrgbtocurve.c:
	  use texture1 for curve textures

2008-09-21  Julien Isorce  <julien.isorce@gmail.com>

	* 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"
	(The reflection still does not work, any idea ?)

2008-09-21  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-09-20  Julien Isorce  <julien.isorce@gmail.com>

	* 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 (TODO task 19)
	  up TODO task 7.

2008-09-20  Filippo Argiolas <filippo.argiolas@gmail.com>

	* 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-19  Filippo Argiolas <filippo.argiolas@gmail.com>

	* 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-14  Julien Isorce  <julien.isorce@gmail.com>
	
	* TODO
	Add TODO task 21.
	* gst-libs/gst/gl/gstgldisplay.c
	Fix a regression: MESA YCbCr colorspace conversion
	(was not working since I removed the need of FBO
	in some cases)

2008-09-14  Julien Isorce  <julien.isorce@gmail.com>

    * gst-libs/gst/gl/gstgldisplay.c
    * tests/pipelines
    * tests/examples/generic/cubeyuv/main.cpp
    Fix a regression:
    For example this pipeline does not need a FBO:
    gst-launch-0.10 videotestsrc ! "video/x-raw-rgb, width=w, height=h" ! \
	  glupload ! "video/x-raw-gl, width=w, height=h" ! glimagesink
    because the w and h are the same.
    But this pipeline needs a FBO:
    gst-launch-0.10 videotestsrc ! "video/x-raw-rgb, width=320, height=240" ! \
      glupload ! "video/x-raw-gl, width=800, height=600" ! glimagesink
    because we need to redraw the texture through a FBO in order to create
    a new one with the correct size.
    (The regression was to always not use a FBO when the video source
    is rgb whereas we can need it)

2008-09-14  Julien Isorce  <julien.isorce@gmail.com>

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

2008-09-13  Julien Isorce  <julien.isorce@gmail.com>

    * TODO
    * gst-libs/gst/gl/gstgldisplay.c
    * tests/pipelines
    Use a better key for the pool of textures.
    Up TODO task 18.
    
2008-09-13  Julien Isorce  <julien.isorce@gmail.com>

    * TODO
    Up TODO tasks 0 and 9.
    Add TODO task 17, 18, 19 and 20.
    
    * gst-libs/gst/gl/gstgldisplay.c
    * gst/gl/gstglimagesink.c
    Use debug category instead of g_print.
    I put GST_CAT_XXX because it does not work without CAT,
    Indeed, it seems that the GST_CAT_DEFAULT is not set correctly when
    using GST_INFO (...) for example. Someone knows why ?
    
    * gst/gl/gstgltestsrc.c
    * gst/gl/gstgltestsrc.h
    Re-up authors.
    
    * gst/gl/gstglupload.c
    * win32/common/config.h
    Replace CVS by GIT

2008-09-12  Julien Isorce  <julien.isorce@gmail.com>

    * CMakeLists.txt
    * 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
    The CMake build now works on my kubuntu-kde4.1.1

2008-09-11  Julien Isorce  <julien.isorce@gmail.com>

    * .gitignore
    * AUTHORS
    * CMakeLists.txt
    * 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)

    * AUTHORS
    * BUGS
    * ChangeLog
    * TODO
    * configure.ac
    CRLF to LF

2008-09-07  Julien Isorce  <julien.isorce@gmail.com>

    * 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/gstglbumper.c
    * gst/gl/gstglbumper.h
    * gst/gl/gstglfilterblur.c
    * gst/gl/gstglfilterlaplacian.c
    * gst/gl/gstglpixbufoverlay.c
    * gst/gl/gstopengl.c
    * tests/pipelines
    * win32/vs8/libgstopengl.vcproj
    Add glbumper: this gl filter is an example of bump mapping.
    You can pass a normal map through the glbumper location property.
    The glbumper expoxes how to use both vertex and fragment shader.
    Add support for attributes in gstglshader.

2008-08-25  Julien Isorce  <julien.isorce@gmail.com>

    * gst-libs/gst/gl/gstgldisplay.c
    Fix upload AYUV and YV12 (a regression in last commits).
    Fix download YV12 (same convidtion as upload YV12).

2008-08-24  Julien Isorce  <julien.isorce@gmail.com>

    * gst/gl/BUGS
    * gst-libs/gst/gl/gstgldisplay.c
	* gst-libs/gst/gl/gstgldisplay.h
	* 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  Julien Isorce  <julien.isorce@gmail.com>

    * BUGS
    * 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 going NULL<->PLAYING state multiple times.
    The solution is not clean. I think the best way is to start
    the TODO task 9.

2008-08-21  Julien Isorce  <julien.isorce@gmail.com>

    * 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  Julien Isorce  <julien.isorce@gmail.com>

    * BUGS
    * tests/examples/gtk/filternoxoverlay/main.cpp
    * tests/examples/gtk/filterxoverlay/main.cpp
    * tests/examples/gtk/gtkxoverlay/main.cpp
    Correctly uses signal watches on gst bus,
    which resolved the bug about clicking on the cross
    in the filter_NO_xoverlay example.

2008-08-20  Julien Isorce  <julien.isorce@gmail.com>

    * gst-libs/gst/gl/gstgldisplay.c
    * unix/codeblocks/gstopengl/gstopengl.cbp
    Get ride of a bug on ATI related to YV12 to rgb
    colorspace conversion through GLSL

    * BUGS
    * configure.ac
    * tests/examples/gtk/Makefile.am
    * tests/examples/gtk/README
    * tests/examples/gtk/filternoxoverlay/main.cpp
    * tests/examples/gtk/filternoxoverlay/Makefile.am
    Add an examples that no uses the xoverlayinterfaces
    but we can switch bettween the gst states.

2008-08-20  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-20  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-20  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-19  Julien Isorce  <julien.isorce@gmail.com>

    * gst-libs/gst/gl/gstgldisplay.c
    get ride of a bug on ATI related to I420_YV12 to rgb
    colorspace conversion through GLSL

2008-08-19  Julien Isorce  <julien.isorce@gmail.com>

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

    * TODO
    End task 1, Filippo makes his gleffects work on master branch.
    End task 6.

2008-08-19  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-19  Filippo Argiolas <filippo.argiolas@gmail.com>

	* tests/examples/gtk/fxtest/pixbufdrop.c:
	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/gstgldifferencematte.c:
	* tests/examples/gtk/fxtest/Makefile.am:
	  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  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-18  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-18  Filippo Argiolas <filippo.argiolas@gmail.com>

	* 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  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-18  Julien Isorce  <julien.isorce@gmail.com>

    * gst/gl/gstglimagesink.c
    Force to call GstBaseSink[glimagesink]->stop() when going
    from GST_STATE_PAUSED to GST_STATE_READY.

2008-08-18  Julien Isorce  <julien.isorce@gmail.com>

    * 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 warnings that comes from vc8.

2008-08-18  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-18  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst/gl/gstglpixbufoverlay.c:
	* configure.ac:
	* gst/gl/Makefile.am:
	* 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  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-18  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-18  Filippo Argiolas <filippo.argiolas@gmail.com>

	* 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  Filippo Argiolas <filippo.argiolas@gmail.com>

	* 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  Filippo Argiolas <filippo.argiolas@gmail.com>

	* 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  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-17  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-17  Filippo Argiolas <filippo.argiolas@gmail.com>

	* AUTHORS:
	  add me to AUTHORS file

2008-08-17  Filippo Argiolas <filippo.argiolas@gmail.com>

	* 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  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-16  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst/gl/effects/gstgleffectbulge.c:
	* gst/gl/effects/gstgleffectfisheye.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:
	  distortion effect cleanup

2008-08-16  Filippo Argiolas <filippo.argiolas@gmail.com>

	* BUGS:
	* 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  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-16  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst/gl/effects/gstgleffectsin.c:
	* gst/gl/Makefile.am:
	* 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  Filippo Argiolas <filippo.argiolas@gmail.com>

	* 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 (maybe move it to GstGLFilter?)

2008-08-14  Filippo Argiolas <filippo.argiolas@gmail.com>

	* 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  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-14  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-14  Filippo Argiolas <filippo.argiolas@gmail.com>

	* tests/examples/gtk/fxtest/Makefile.am:
	* tests/examples/gtk/fxtest/fxtest.c:
	* 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/fxtest.c:
	  import fxtest (little gtk app to easily test effects) from cvs
	  branch, fixed rgbtocurve.

2008-08-14  Filippo Argiolas <filippo.argiolas@gmail.com>

	* 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/Makefile.am:
	* gst/gl/gstgleffects.c:
	* gst/gl/gstgleffects.h:
	  import remaining distortion effects from cvs branch (fisheye,
	  twirl, bulge, tunnel, square)

2008-08-14  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-14  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-14  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst/gl/effects/gstgleffectrgbtocurve.c:
	* gst/gl/effects/gstgleffectscurves.h:
	* gst/gl/effects/gstgleffectssources.c:
	* gst/gl/effects/gstgleffectssources.h:
	* gst/gl/Makefile.am:
	* gst/gl/effects/gstgleffectssources.c:
	* 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  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst/gl/effects/gstgleffectlumatocurve.c:
	* gst/gl/effects/gstgleffectscurves.h:
	* gst/gl/Makefile.am:
	* 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  Filippo Argiolas <filippo.argiolas@gmail.com>

	* 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  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-14  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-14  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-13  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst/gl/effects/gstgleffectidentity.c:
	* ChangeLog:
	* gst/gl/Makefile.am:
	* gst/gl/effects/gstgleffectmirror.c:
	* gst/gl/effects/gstgleffectidentity.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  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst/gl/Makefile.am:
	* gst/gl/gstgleffects.c:
	* gst/gl/effects/gstgleffects.h:
	* gst/gl/effects/gstgleffectssources.h:
	* gst/gl/effects/gstgleffectmirror.c:
	  Still working on merging gstgleffects from cvs branch, added mirror
	  effect and reorganized the source tree.

2008-08-13  Julien Isorce  <julien.isorce@gmail.com>

    * 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 gst_gl_display_thread_do_upload_make from
    gst_gl_display_thread_do_upload to gst_gl_display_thread_init_upload

2008-08-13  Julien Isorce  <julien.isorce@gmail.com>

    * gst-libs/gst/gl/gstgldisplay.c
    * gst-libs/gst/freeglut/freeglut_main.c
    * gst/gl/BUGS
    Fix a crash that could happen when closing a window on linux
    when using at least two gl context.

2008-08-12  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst/gl/gstgleffects.c:
	* gst/gl/Makefile.am:
	* gst/gl/gstopengl.c:
	  added gstgleffects element, doesn't work yet, just a skeleton.

2008-08-11  Filippo Argiolas <filippo.argiolas@gmail.com>

	* BUGS:
	  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  Filippo Argiolas <filippo.argiolas@gmail.com>

	* 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  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-11  Julien Isorce  <julien.isorce@gmail.com>

    * gst-libs/gst/gl/gstglbuffer.c
    * gst-libs/gst/gl/gstgldisplay.c
    * gst-libs/gst/gl/gstgldisplay.h
    * gst/gl/gstglfilterblur.c
      The GData texture pool is now splitted in several GQueue (one per framesize).
      So glTexImage2D(w,h,NULL) is called only one time (memory allocation).
      So I could remove the glTexImage2D(w,h,NULL) call in
      the gst_gl_display_thread_use_fbo func.

2008-08-11  Filippo Argiolas <filippo.argiolas@gmail.com>

	* 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  Filippo Argiolas <filippo.argiolas@gmail.com>

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

2008-08-11  Filippo Argiolas <filippo.argiolas@gmail.com>

	* 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  Filippo Argiolas <filippo.argiolas@gmail.com>

	* 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  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-04  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	Fix GL_STACK_OVERFLOW caused by PopMatrix called right before the
	correspondent glMatrixMode.

2008-08-04  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst-libs/gst/gl/gstgldisplay.c:
	* gst-libs/gst/gl/gstgldisplay.h:
	Don't call glTexImage so much times for each frame in the upload
	functions. Texture memory has to be allocated only once. First step to
	fix the framerate issue with gstglfilterblur.

2008-07-31  Julien Isorce  <julien.isorce@gmail.com>

    * gst/gl/gstglfilterblur.h
    * gst/gl/gstglfilterblur.c
    * gst/gl/gstopengl.c
    Make the glfilterblur works on the master branch.

    * gst/gl/gstglfilterlaplacian.c
    Up a comment

    * gst/gl/Makefile.am
    * unix/codeblocks/gstopengl/gstopengl.cbp
    Add filterblur to build

    * TODO
    Task 1 almost done (see the comment)

2008-07-31  Julien Isorce  <julien.isorce@gmail.com>
    * tests/examples/qt/*
    Fix  warnings under linux
    and add some build instructions

2008-07-22  Julien Isorce  <julien.isorce@gmail.com>
    Finish to arrange the examples

2008-07-22  Julien Isorce  <julien.isorce@gmail.com>
    Arranged examples, but some of them are temporarly off

2008-07-21  Julien Isorce  <julien.isorce@gmail.com>

    * 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/classify the examples

2008-07-21  Julien Isorce  <julien.isorce@gmail.com>

    * TODO
    * gst-libs/gst/gl/gstgldisplay.c
    Finish todo task 4

2008-07-20  Julien Isorce  <julien.isorce@gmail.com>

    * 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
    Finish todo task 5

2008-07-19  Julien Isorce  <julien.isorce@gmail.com>

	* REQUIREMENTS
	Glew 1.4

    * TODO
    Add a note to the task 9

    * tests/examples/Makefile.am
    * tests/examples/readme.txt
    Update

    * tests/examples/cubeyuv/main.cpp
    * tests/examples/doublecube/main.cpp
    The video location is given in the command line arguments.
    Use decodebin instead of a fixed decoder and demuxer.

    * tests/examples/mousexoverlay/pipeline.cpp
    * tests/examples/videoxoverlay/pipeline.cpp
    * tests/examples/qglwidgetxoverlay/pipeline.cpp
    A check was wrong in the cb_new_back function.

2008-07-19  Julien Isorce  <julien.isorce@gmail.com>

	* TODO:
	Fisnish task 2, add task 16

	* 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  Julien Isorce  <julien.isorce@gmail.com>

	* TODO:
	add task 4 and 5

	* gst-libs/gst/gl/gstgldisplay.c
	* gst-libs/gst/gl/gstgldisplay.h
	Fix check function about OpenGL >= 1.4
	and Glew >= 1.4
	(version in [1.0, 1.4[ was not detected

	* gst-libs/gst/gl/gstglfilter.h
	* gst-libs/gst/gl/gstglshader.c:
	* gst-libs/gst/gl/gstglshader.h:
	* gst/gl/gstgltestsrc.h
	* gst/gl/gstopengl.c
	* gst/gl/gstglfilterlaplacian.h
	I just make sure to save them to LF but
	git is still writting its wrong message.
	Let me know if I have commited in CRLF
	by mistake.

	* gst/gl/gstglfilterlaplacian.c
	Fix convolution_fragment_source to make
	it compile on ATI. (size array must be explicit in
	the declaration)

	* tests/examples/qglwidgetxoverlay/qglrenderer.cpp
	* tests/examples/qglwidgetxoverlay/qglrenderer.h
	Forgot to push them in my previous push

	* tests/pipelines
	Add two funny example pipelines that use
	the gstglfilterlaplacian

	* win32/vs8/libgstopengl.vcproj
	Add gstglshader.h, .c, and gstglfilterlaplacian.h, .c
	to the project.

2008-07-18  Filippo Argiolas <filippo.argiolas@gmail.com>

	* gst-libs/gst/gl/Makefile.am:
	* gst-libs/gst/gl/gstglshader.c:
	* gst-libs/gst/gl/gstglshader.h:
	* gst/gl/gstglfilterlaplacian.c:
	* gst/gl/gstglfilterlaplacian.h:
	* gst/gl/Makefile.am:
	* gst/gl/gstopengl.c:

	Import gstglshader stuff from cvs branch.
	Add a demo laplacian filter to demonstrate how gstglshader can be
	easily integrated with minimum effort. Note that at the moment it does
	everything in the filter callback, I didn't use the onInitFBO callback
	to keep it simple.

2008-07-18  Julien Isorce  <julien.isorce@gmail.com>

	* tests/examples/qglwidgetxoverlay: Browse files to load
	  a local video.

2008-07-17  Julien Isorce  <julien.isorce@gmail.com>

	* tests/examples/mousexoverlay: Browse files to load
	  a local video.

2008-07-17  Julien Isorce  <julien.isorce@gmail.com>

	* tests/examples/videoxoverlay: Browse files to load
	  a local video.

2008-07-11  David Schleef  <ds@schleef.org>

	* configure.ac: Add AG_GST_ARG_WITH_PLUGINS

2008-04-06  Sebastian Dröge  <slomo@circular-chaos.org>

        Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>

        * configure.ac:
        Actually build dlls when cross-compiling with mingw32.
        Fixes bug #526247.

2008-03-24  David Schleef  <ds@schleef.org>

	* Makefile.am:
	* configure.ac: Fix build system for recent changes in m4
	  files.  Fixed problem building gst/gl/

2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>

	* gst-libs/gst/gl/gstglbuffer.c:
	  (gst_gl_buffer_format_from_video_format):
	  Fix compiler warning if there are video format
	  enums gstglbuffer doesn't know about yet.

	* gst-libs/gst/gl/gstgldisplay.c:
	  (gst_gl_display_upload_texture_rectangle),
	  (gst_gl_display_draw_texture):
	  Fix printf format for 64-bit integers.

2008-01-31  David Schleef  <ds@schleef.org>

	* configure.ac:
	* pkgconfig/Makefile.am:
	* pkgconfig/gstreamer-gl-uninstalled.pc.in:
	* pkgconfig/gstreamer-gl.pc.in:
	* pkgconfig/gstreamer-plugins-gl-uninstalled.pc.in:
	* pkgconfig/gstreamer-plugins-gl.pc.in:
	  Rename pkgconfig files.  And install them.
	* tests/check/Makefile.am:
	* tests/check/generic/states.c:
	* tests/check/pipelines/simple-launch-lines.c:
	  Add some tests copied from -good.

2008-01-31  Tim-Philipp Müller  <tim at centricular dot net>

	* gst-libs/gst/gl/Makefile.am:
	  The library needs to link against libgstvideo-0.10.

	* gst/gl/Makefile.am:
	  The plugin does not (I think) need to link against GL or libgstvideo,
	  since our new gstreamer GL library already does that, but it does
	  need to link against our brand-new libgstgl-0.10.

2008-01-31  Tim-Philipp Müller  <tim at centricular dot net>

	* configure.ac:
	  When using the non-pkg-config check, set and export GL_LIBS
	  correctly.

2008-01-31  David Schleef  <ds@schleef.org>

	* gst/gl/.cvsignore: ingore some files
	* gst-libs/gst/Makefile.am: distcheck fixes
	* gst/gl/Makefile.am: distcheck fixes
	* win32/common/config.h: -good has this in CVS, so we will too.

2008-01-31  David Schleef  <ds@schleef.org>

	* configure.ac:
	  Readd pre-pkgconfig OpenGL detection, since pkgconfig requires
	  Mesa from git master.
	* gst/gl/glimagesink.c:
	* gst/gl/gstopengl.c:
	  Move debug category initialization to element.
	* gst-libs/gst/gl/Makefile.am:
	* gst-libs/gst/gl/gstglfilter.c:
	* gst-libs/gst/gl/gstglfilter.h:
	* gst/gl/gstglfilter.c:
	* gst/gl/gstglfilter.h:
	  Move glfilter to library.
	* pkgconfig/gstreamer-plugins-gl.pc.in:
	  Add gstreamer-base-0.10 as a requirement.
	* po/en.po:
	  Update.

2008-01-18  Tim-Philipp Müller  <tim at centricular dot net>

	* configure.ac:
	* docs/Makefile.am:
	* gst-libs/Makefile.am:
	* gst-libs/gst/gl/Makefile.am:
	* gst/gl/Makefile.am:
	* tests/Makefile.am:
	  Fix compilation in uninstalled setup and some
	  distcheck-y bits (not all though).

2008-01-17  David Schleef  <ds@schleef.org>

	Add some files to make project compile.
	* gst-libs/gst/gettext.h:
	* gst-libs/gst/gst-i18n-plugin.h:
	* po/.cvsignore:
	* po/Makevars:
	* po/POTFILES.in:
	* po/en.po:

2008-01-17  David Schleef  <ds@schleef.org>

	Fixes to make project compile.  Probably still doesn't work.
	* configure.ac:
	* gst-libs/gst/Makefile.am:
	* gst-libs/gst/gl/Makefile.am:
	* gst/Makefile.am:
	* gst/gl/Makefile.am:
	* gst/gl/gstgltestsrc.c:
	* po/LINGUAS:
	* win32/MANIFEST:

2008-01-17  David Schleef  <ds@schleef.org>

	Add project infrastructure.  Not complete, doesn't work.
	* .cvsignore:
	* AUTHORS:
	* COPYING:
	* COPYING.LIB:
	* INSTALL:
	* Makefile.am:
	* NEWS:
	* README:
	* RELEASE:
	* REQUIREMENTS:
	* autogen.sh:
	* configure.ac:
	* docs/.cvsignore:
	* docs/Makefile.am:
	* docs/libs/Makefile.am:
	* docs/plugins/Makefile.am:
	* docs/version.entities.in:
	* ext/Makefile.am:
	* gst-libs/Makefile.am:
	* gst-libs/gst/Makefile.am:
	* gst-libs/gst/gl/Makefile.am:
	* gst-plugins-gl.doap:
	* gst-plugins-gl.spec.in:
	* gst/Makefile.am:
	* m4/.cvsignore:
	* m4/Makefile.am:
	* pkgconfig/.cvsignore:
	* pkgconfig/Makefile.am:
	* pkgconfig/gstreamer-plugins-gl-uninstalled.pc.in:
	* pkgconfig/gstreamer-plugins-gl.pc.in:
	* sys/Makefile.am:
	* tests/Makefile.am:
	* tests/check/Makefile.am:
	* tests/examples/Makefile.am:
	* tests/icles/Makefile.am:
	* tools/Makefile.am:
	* win32/common/config.h.in: