summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 9892c22f30e963cc36bb3be5d942e85956630fca (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
2005-12-22  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/extend/Makefile.am:
	  install in pyexecdir, so the package does not need splitting
	  for multilib

2005-12-22  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/gst.override:
	  allow for logging both on objects and in general
	* testsuite/test_element.py:
	  add a subclass test

2005-10-11  Richard Hult  <richard@imendio.com>

	Reviewed by Edward Hervey  <edward@fluendo.com>

	* gst/gst.defs:
	* gst/gst.override: (_wrap_gst_tag_list_get):
	couple of memleak fixes
	Closes #171287

2005-10-11  Michael Scherer <misc@mandriva.org>

	Reviewed by Edward Hervey  <edward@fluendo.com>

	* gst/extend/Makefile.am: (pygst_PYTHON): 
	jukebox.py and utils.py are now properly packaged

2005-09-08  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/gst.defs:
	* gst/gst.override:
	* testsuite/test_element.py:
	  add debug methods to GstObject

2005-09-08  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/__init__.py:
	  make sure play works uninstalled as well; helps running a single
	  testsuite app

2005-09-02  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/__init__.py:
	  fix make distcheck
	* gst/extend/jukebox.py:
	* gst/extend/utils.py:
	  add some more stuff for GC debugging

2005-08-28  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/extend/leveller.py:
	  catch ZeroDivisionError

2005-08-28  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/extend/jukebox.py:
	* gst/extend/leveller.py:
	* gst/extend/sources.py:
	  add an explicit .clean() method to source and leveller, to make
	  sure all our elements are cleaned up correctly.  Should help
	  for long-living processes.
	* gst/extend/utils.py:
	  add a gc_collect method that will explicitly garbage-collect
	  if env var GST_GC is set.  Useful for debugging refcounting.

2005-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/extend/jukebox.py:
	  clean up leveller and remove sources from jukebox

2005-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/extend/leveller.py:
	  add a .stop method to free resources by setting pipe to NULL

2005-08-26  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/__init__.py:
	  if using ltihooks, import interfaces and then uninstall our
	  module importer so we don't crap all over someone else's

2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/extend/jukebox.py:
	  use the source's set_volume method
	  now we are releasing the correct request pad, good stuff.
	* gst/extend/sources.py:
	  add a set_volume and add a volume element internally

2005-08-22  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/extend/jukebox.py:
	  set the done sources to NULL, so we don't keep the files open

2005-08-11  Jan Schmidt  <thaytan@mad.scientist.com>

	* gst/extend/jukebox.py:
	* gst/extend/leveller.py:
	* gst/extend/sources.py:
	  Chain up to self.__gobject_init__() in constructors for derived
	  objects, as this makes signals work in pygtk 2.4, 2.6 and 2.7

2005-08-11  Edward Hervey  <edward@fluendo.com>

	* gst/gst.override: (pygst_debug_log):
	Print the filename and not the full path

2005-08-10  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/extend/jukebox.py:
	  implement volume scaling to make tracks match the target RMS

2005-08-10  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/extend/jukebox.py:
	* gst/extend/leveller.py:
	* gst/extend/sources.py:
	  use python debugging

2005-08-10  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/gst.defs:
	* gst/gst.override:
	* gst/gstmodule.c: (init_gst):
	  backport debug wrapping from 0.9

2005-08-10  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/extend/leveller.py:
	  take into account the total peak RMS when finding mixin/mixout 
	  add length, just because
	* gst/extend/sources.py:
	  add a prerolled signal
	* gst/gstbuffer.override:
	  wrap timestamp and duration as longs, not ints
	* gst/gstmodule.c: (init_gst):
	  register gst.CLOCK_TIME_NONE

2005-08-04  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst-python.spec.in:
	  add extend
	* gst/extend/sources.py:
	  move a comment
	* gst/gstmodule.c: (sink_gstobject):
	  prefer gst_object_ref so we get a log message for it

2005-08-04  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/extend/Makefile.am:
	* gst/extend/leveller.py:
	* gst/extend/pygobject.py:
	* gst/extend/sources.py:
	  adding pygobject helper code
	  adding a leveller object to calculate RMS and mix points

2005-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>

	* configure.ac:
	  back to cvs
	  add check for recent enough pygtk
	* examples/gst/audioconcat.py:
	  move out AudioSource
	* gst/Makefile.am:
	* gst/extend/Makefile.am:
	* gst/extend/__init__.py:
	* gst/extend/sources.py:
	  create an extend module with AudioSource
	* gst/gst.defs:
	* gst/gst-pygtk-2.6.2.defs:
	  move out the pygtk 2.6.2-needing pieces
	* testsuite/common.py:
	* testsuite/runtests.py:
	* testsuite/test_buffer.py:
	* testsuite/test_caps.py:
	* testsuite/test_element.py:
	* testsuite/test_error.py:
	* testsuite/test_event.py:
	* testsuite/test_interface.py:
	* testsuite/test_pad.py:
	* testsuite/test_pipeline.py:
	* testsuite/test_probe.py:
	* testsuite/test_registry.py:
	* testsuite/test_struct.py:
	* testsuite/test_xml.py:
	  clean up whitespace and headers

2005-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>

	* configure.ac:
	  back to cvs, damnit
	* examples/gst/audioconcat.py:
	* gst/Makefile.am:
	* gst/gst.defs:
	* testsuite/common.py:
	* testsuite/runtests.py:
	* testsuite/test_buffer.py:
	* testsuite/test_caps.py:
	* testsuite/test_element.py:
	* testsuite/test_error.py:
	* testsuite/test_event.py:
	* testsuite/test_interface.py:
	* testsuite/test_pad.py:
	* testsuite/test_pipeline.py:
	* testsuite/test_probe.py:
	* testsuite/test_registry.py:
	* testsuite/test_struct.py:
	* testsuite/test_xml.py:

=== gst-python 0.8.2 ===

2005-06-21  Edward Hervey  <edward@fluendo.com>

	* configure.ac: 
	* NEWS: 
	* RELEASE:
	Updated info for 0.8.2 release

2005-06-17  Andy Wingo  <wingo@pobox.com>

	* gst/gstcaps.override (_wrap_gst_caps_tp_richcompare): Increment
	the refcount of the return value in all cases, even for Py_True
	and Py_False. Lines of code per day hovering around 1.3.

2005-06-14  Edward Hervey  <bilboed@bilboed.com>

	* gst/gstcaps.override: (_wrap_gst_caps_tp_str): 
	reverting previous fix, was incorrect

	* configure.ac:
	0.8.1.2 pre-release

	* gst/gst.override: (probe_handler_marshal):
	bye bye probe memleak
	
2005-06-14  Edward Hervey  <bilboed@bilboed.com>

	* gst/Makefile.am: (defs_DATA) (GST_OVERRIDES): 
	* gst/gst.defs:
	* gst/gst.override:
	* gst/gst-extrafuncs.defs:
	* gst/gstbuffer.override:
	* gst/gstevent.override:
	* gst/gst-types.defs: (Buffer) (Event): 
	Added support for element flags (list, set, unset)
	Added gst.Buffer duration field
	Added gst.Event fields

2005-06-14  Andy Wingo  <wingo@pobox.com>

	* gst/gstcaps.override (_wrap_gst_caps_tp_richcompare): Fixes for
	== and != when the second arg is not a caps.

	* testsuite/test_caps.py (CapsTest.testComparisons): Fix name.

2005-06-14  Edward Hervey  <bilboed@bilboed.com>

	* gst/gstcaps.override: (_wrap_gst_caps_tp_str): 
	proper repr of GstCaps : <GstCaps at <adress> : '<caps.to_string>'>

2005-06-09  Edward Hervey  <bilboed@bilboed.com>

	* examples/gst/gstfile.py: (Discoverer.discover): 
	whoops, pipeline was being run twice :)

2005-06-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>

	* examples/gst/gstfile.py: fix typo

2005-06-08  Edward Hervey  <bilboed@bilboed.com>

	* examples/gst/Makefile.am:
	* examples/gst/gstfile.py:
	renamed gst-file.py to gstfile.py and made the Discoverer class useable
	in other applications/scripts

	* examples/gst/audioconcat.py:
	Example application that uses the Discoverer and the gnonlin elements to
	concatenate several audio files to one single one

2005-06-07  Edward Hervey  <bilboed@bilboed.com>

	* examples/gst/Makefile.am:
	* examples/gst/gst-file.py: 
	New example that shows how to use gst-python in an object-oriented way,
	and how to override existing methods

2005-06-02  Edward Hervey  <edward@fluendo.com>

	* gst/gstbuffer.override (_wrap_gst_buffer_set_data): 
	gcc 4.x bugfixes

2005-05-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>

	* gst/gst.defs:
	  factory.create doesn't need a name
	* gst/gst.override:
	  implement tp_str and tp_repr gst.Object and gst.PluginFeature
	* gst/gstelement.override:
	  implement factory.get_pad_templates and make element.link_pads
	  take NULL, pads or strings as the pad argument
	* gst/gstpad.override:
	  implement tp_getattr for GstPadTemplate

2005-05-03  Zaheer Abbas Merali  <zaheerabbas at merali dot org>

	* gst/pygstvalue.c: (pygst_value_from_pyobject):
	stupid, stupid, stupid

2005-05-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>

	* gst/gstcaps.override:
	  fix uninitialized warning and refator function

2005-05-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>

	* gst/pygstvalue.c:
	* gst/gst-argtypes.c:
	* gst/gst.override:
	  define NO_IMPORT_PYGOBJECT to have a correct extern declaration
	  reenable _pygst_element_init and ifdef it correctly
	* gst/arg-types.py:
	  check errors
	* gst/gstcaps.override:
	  - remove list append functionality. Sets don't support the +
	    operator
	  - implement richcompare and coerce, nonzero, or, xor and subtract
	    number functions
	* testsuite/test_caps.py:
	  add tests for the new stuff

2005-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>

	* testsuite/Makefile.am:
	* testsuite/common.py:
	  rework common so that it behaves a bit more sanely
	  make the inner workings more clear

2005-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>

	* configure.ac:
	  add Wall and Werror just like other modules
	* gst/gst.override:
	* gst/gstelement.override:
	  fix compile problems for Wall Werror
	* testsuite/common.py:
	* Makefile.am:
	* gst/Makefile.am:
	* gst/ltihooks.py:
	* ltihooks.py:
	  move ltihooks to root; having it in gst was a bad hack and
	  breaks distcheck

2005-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>

	* testsuite/common.py: ltihooks only needed for uninstalled (?)

2005-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>

	* testsuite/runtests.py: a much nicer way of getting all the tests

2005-05-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>

	* testsuite/Makefile.am:
	  run tests with GST_DEBUG=*:0 so they don't produce any debugging
	  output
	* testsuite/test_element.py:
	  don't disable stderr
	* gst/gstbuffer.override:
	  initialize size correctly

2005-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>

	* testsuite/runtests.py: also return exit code 1 in case of errors

2005-05-02  Edward Hervey  <bilboed@bilboed.com>

	* testsuite/common.py: Added case for 64bit-system that don't have
	the dl module

2005-05-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>

	* gst/Makefile.am:
	  running the code generator depends on the files it uses
	* gst/arg-types.py:
	  add GstCaps parsing
	* gst/gstelement.override:
	  make element.link take an optional caps parameter, deprecate
	  element.link_filtered
	* testsuite/test_caps.py:
	  replace caps.get_strcuture(i) calls with caps[i], the deprecation
	  warnings are annoying

2005-05-01  Thomas Vander Stichele  <thomas at apestaart dot org>

	* testsuite/test_interface.py:
	  do not do stuff in a testsuite that isn't guaranteed to be there.
	  could do with some way of detecting and skipping.

2005-05-01  Benjamin Otte  <in7y118@public.uni-hamburg.de>

	* gst/gst-types.c:
	  remove, it's called gst-argtypes.c these days
	* gst/common.h:
	* gst/gst-argtypes.c: (pygst_caps_from_pyobject):
	  add function to transform a PyObject to a GstCaps*
	* gst/gstcaps.override:
	  implement more sequence functions, deprecate caps.get_structure() in
	  favour of caps[i] and make the structure-by-reference stuff work
	* gst/gststructure.override:
	  make structures from caps work by reference but don't die a horrible
	  death if the caps get removed before the structure is
	* testsuite/Makefile.am:
	  run with G_DEBUG=fatal_warnings so we crash on g_warnings in C code
	* testsuite/test_caps.py:
	  add some checks

2005-04-30  Benjamin Otte  <otte@gnome.org>

	* gst/gst.override:
	  pyg_register_class_init is new API, so only use it when available.
	  If not available gst.element_register won't work either, but I just
	  won't care about that right now.

2005-04-30  Benjamin Otte  <otte@gnome.org>

	* gst/arg-types.py:
	  ref the GstData we get in conversions as pygst_data_from_pyobject
	  doesn't do that
	* gst/gst-types.c: (pygst_data_from_pyobject),
	(pygst_data_to_pyobject), (PyGstData_from_value),
	(PyGstData_to_value):
	  make GstData <=> GValue conversions use the correct G_VALUE_TYPE and
	  don't copy the values, but just ref them. Avoids mad buffer copying
	* gst/common.h:
	  include GstData <=> PyObject conversion funcs
	* gst/gst.override:
	  - wrap gst.element_register
	  - add _pygst_get_plugin to query the plugin used by Python.
	    Necessary preparation for a Python plugin loader. Returns NULL if
	    no plugin, in that case gst.element_register registers the element
	    as part of the running app.
	  - add a class initializer for gst.Element subtypes, that checks the
	    variables __gsttemplates__ and __gstdetails__ and makes the correct
	    gst_element_class_set_element_details and
	    gst_element_class_add_pad_templates calls from them. Note: This
	    has issues when virtual methods are enabled.
	  - add _pygst_element_check_error. This functions checks if Python
	    code raised an exception and if so calls gst_element_error on the
	    element and clears the error. Very useful in
	    loop/chain/get-functions
	* gst/gstbuffer.override:
	  - implement buffer.copy_on_write()
	  - implement sq_(ass_)[item|slice] functions for GstBuffer
	  - fix PyBufferProcs to allow writing when buffer is writable
	* gst/gstpad.override:
	  - wrap gst.Pad to call gst_pad_new or gst_pad_new_from_template
	    automatically based on arguments
	  - don't attach private pad data to the element private, use
	    g_object_set_data instead
	  - make attaching functions to pads use closures. Allows garbage
	    collecting pads where handlers have been set
	  - fix _repr function to only print parent element's name if parent
	    exists
	* gst/gstmodule.c: (init_gst):
	  register GstData <=> GValue conversion

2005-04-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>

	* gst/gstbuffer.override:
	  Let's unref the buffer we created - prevents gst.Buffer from leaking

2005-04-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>

	* gst/gstbuffer.override:
	  throw TypeError if bufsize < data size. Fixes testsuite

2005-04-26  Johan Dahlin  <jdahlin@async.com.br>

	* testsuite/runtests.py: Return exit code 1 if we have any failures

2005-04-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>

	* gst/gstbuffer.override:
	  make Buffer() not use memory it doesn't own
	* testsuite/test_buffer.py:
	  check that it doesn't

2005-04-19  Edward Hervey  <bilboed@bilboed.com>

	* gst/gststructure.override: (_wrap_gst_structure_get_double):
	Forgot to convert the returned value to a PyFloat...

2005-04-19  Edward Hervey  <bilboed@bilboed.com>

	* gst/gststructure.override: (_wrap_gst_structure_get_double):
	Added overriding function for getting double values from a gst.Structure

2005-04-16  Thomas Vander Stichele  <thomas at apestaart dot org>

	* configure.ac: bumped back required version of pygtk; we can backport
	  or copy over the code generator for what we need

2005-04-16  Jan Schmidt  <thaytan@mad.scientist.com>

	* configure.ac:
	  Bump GStreamer core requirement to 0.8.9 for
	  gst_pad_set_active_recursive.

	* gst/gst.defs:
	  Wrap gst_pad_set_active_recursive

2005-04-14  Edward Hervey  <bilboed@bilboed.com>

	* gst/gst.defs: 
	Added definitions for methods of GstObject, GstElement, GstBin and Clock
	so you can create derived classes with more functionnalities.

	* configure.ac: (ACLOCAL):
	bumped required version of PYGTK to 2.6.0

2005-04-14  Andy Wingo  <wingo@pobox.com>

	* gst/__init__.py (Value, Fourcc, IntRange, DoubleRange)
	(Fraction): New classes.

	* gst/gst.override (_wrap_gst_tag_list_get)
	(_wrap_gst_tag_list_get_value_index)
	(tag_foreach_func_dict)
	(_wrap_gst_tag_list_subscript): Use gstvalue procs.
	(init): Initialize the pygstvalue stuff (which involves accessing
	definitions from gst/__init__.py).

	* gst/gststructure.override (_wrap_gst_structure_ass_subscript):
	Just use the pygstvalue functions to do conversion. As it is right
	now, it's an incompatible change with the previous behavior,
	because it doesn't try to parse field values like "(fourcc)XVID".
	We can restore that previous behaviour if there is a need for it.
	(_wrap_gst_structure_subscript): Use gstvalue functions to do the
	conversion.

	* gst/Makefile.am: Add in pygstvalue.[ch].

	* gst/pygstvalue.h:
	* gst/pygstvalue.c: New files.
	(pygst_value_as_pyobject): Wraps pyg_value_as_pyobject, handling
	gstvalues as well.
	(pygst_value_init_for_pyobject): Sniffs a pyobject for a type and
	initializes a GValue appropriately.
	(pygst_value_from_pyobject): Wraps pyg_value_from_pyobject,
	handling gvalues as well.

	* testsuite/test_struct.py (StructureTest.testStructureChange) 
	(StructureTest.testGstValue): Add some tests for GstValue wrapping.

2005-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/gst.defs:
	* gst/gst.override:
	  wrap gst_plugin_get_version so it returns a tuple

2005-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>

	* testsuite/test_probe.py:
	  add test for probes

2005-03-15  Richard Hult <richard@imendio.com>

	* gst/gst.defs (element_factory_make): Caller owns return, fixes leak
	(get_caps): Ditto

	* gst/gst.override (_wrap_gst_tag_list_get): Leak fix
	(_wrap_gst_tag_list_subscript): Ditto

        Reviewed by: Johan Dahlin <johan@gnome.org>

2005-01-10  Thomas Vander Stichele  <thomas at apestaart dot org>

	* configure.ac:
	* gst/arg-types.py:
	* gst/gst-types.defs:
	* gst/gst.override:
	* testsuite/test_probe.py:
	  first pass at wrapping GstProbe

2005-01-01  Johan Dahlin  <johan@gnome.org>

	* gst/Makefile.am:
	* gst/gst.override:
	* gst/gstcaps.override:
	* gst/gstelement.override:
	* gst/gstpad-handlers.override:
	* gst/gstpad.override:
	* gst/gststructure.override:

	Split out gst.override to a few more files.
	Rename gstpad-handlers.override to gstpad.override
	Include more information for some LinkError exceptions
	
2004-12-14  Johan Dahlin  <johan@gnome.org>

	* gst/gst-types.defs:
	* gst/gstbuffer.override:
	* testsuite/test_buffer.py:

	Improve support GstBuffer attributes, r/w support for timestamp.

2004-11-29  Johan Dahlin  <johan@gnome.org>

	* configure.ac: Post release version bump

=== gst-python 0.8.1 ===

2004-11-29  Johan Dahlin  <johan@gnome.org>

	* configure.ac: Bump version

	* gst/interfaces.defs: 
	* gst/interfaces.override (_wrap_gst_color_balance_list_channels): 
	Apply patch from Zaheer Abbas Merali to implement this method. Not
	that it's not .list_channels() due to conflict with a method of
	the same name in the GstTuner interface

	* gst/gstmodule.c: 
	* gst/gst.override: Apply patch from Brian Warner to throw a link
	error when element and pad linking fails.

2004-11-27  Martin Soto  <martinsoto@users.sourceforge.net>

	* gst/gst.override (_wrap_gst_event_new_any)
	(_wrap_gst_event_new_discontinuous) 
	(_wrap_gst_event_any_get_structure)
	(_wrap_gst_registry_pool_plugin_list):
	* gst/gst.defs (get_data, event_new_any, any_get_structure):
	Added basic support for "ANY" (navigation) events.
	Added basic support for discont events (only one value for now,
	we are limited by the GStreamer API).
	Now it is possible to access data in a GstBuffer as a string
	Added a definition for method get_data of GstBuffer.

	* gst/gst.override (_wrap_gst_structure_set_value): Add an
	optional parameter to allow selection of the right G_TYPE. If no
	type is specified, make an educated guess.

2004-11-25  Johan Dahlin  <johan@gnome.org>

	* gst/interfaces.override:
	* gst/xoverlay.override:

	redefine broken implement casting macros to something saner
	
2004-11-23  Johan Dahlin  <johan@gnome.org>

	* testsuite/*: Put test_ prefix on all test filenames

2004-11-23  Johan Dahlin  <johan@gnome.org>

	* gst/gstmodule.c: sink GstObject, much like GtkObject

2004-11-23  Johan Dahlin  <johan@gnome.org>

	* examples/gst/play.py:
	* gst/gst-types.defs:
	* gst/gst.override:
	* testsuite/Makefile.am:
	* testsuite/common.py:
	* testsuite/event.py:
	* testsuite/test_event.py:

	Use gst.element_factory_make in play example

	Use boxed instead of pointer for gst.Event, it was such an ugly
	hack.

	Ref the event when sending using gst.element_send_event.

	Add a bunch of testcases (and a C module), renamed event to
	test_event.py 
	
=== release 0.8.0 ===
2004-11-15  Johan Dahlin  <johan@gnome.org>

	* configure.ac: bump

	* gst/gst.override (_wrap_gst_tag_setter_get_list): Override, to
	avoid compiler warning.

	* gst/gstmodule.c (init_gst): Reset LC_NUMERIC, since it might
	change in gst_init_check. Fixes 100% CPU usage in flumotion
	when using a non C locale.

2004-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>

	* pkgconfig/gst-python-uninstalled.pc.in:
	  set pyexecdir for uninstalled as well

=== release 0.7.94 ===

2004-11-05  Thomas Vander Stichele  <thomas at apestaart dot org>

	* .cvsignore:
	* examples/Makefile.am:
	  remove gstplay

2004-11-04  Johan Dahlin  <johan@gnome.org>

	* gst/gst.override (tag_foreach_func_list): Disable lists instead
	of raising an exception.

	* gst/gst-types.defs (ImplementsInterface, TagSetter): Define
	these here.

	* gst/interfaces.override (_wrap_gst_mixer_list_tracks): Impl.
	(_wrap_gst_tuner_list_norms, _wrap_gst_tuner_list_channels): Plug 
	leaks.

=== release 0.7.93 ===

2004-10-11  Johan Dahlin  <johan@gnome.org>

	* configure.ac: Bump version number

2004-10-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>

	* gst/gst.defs:
	* gst/gst.override:
	Fixes element_unlink_many and adds a set_buffer_data method to GstBuffer
	Fixes bug #154451 and #154692

2004-10-11  Johan Dahlin  <johan@gnome.org>

	* gst/arg-types.py:
	* gst/gst.defs:
	* gst/gst.override:
	
	GstXML support, based on patch by poelzi.

2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>

	* gst/gstmodule.c: (init_gst):
	Make gst-python not hang on import when embedded.
	Fixes bug #155041

2004-10-04  Johan Dahlin  <johan@gnome.org>

	* gst/interfaces.defs: Add proper fiels to GstTunerNorm. Also
	remove parent property from all interfaces.
	Revert, since we have code which depends on this "feature"

2004-09-29  Johan Dahlin  <johan@gnome.org>

	* gst/gstmodule.c (python_do_pending_calls): Use
	PyOS_InterruptOccurred and only hold the GIL during
	PyErr_SetNone. Use _pygst_main_quit to avoid errors/aborts. Also
	use the pygtk provided gil macros instead of the python ones.

2004-09-22  Johan Dahlin  <johan@gnome.org>

	* gst/gst.override: use new threading API

2004-09-13  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/__init__.py:
	* gst/gstreamer.py:
	* gst/arg-types.py:
	  fix headers
	* gst/gst.override:
	  change GstPad repr
	* gst/ltihooks.py:
	  fix distcheck for uninstalled by only adding .libs when needed

2004-08-30  Johan Dahlin  <johan@gnome.org>

	* gst/gst.override (_wrap_gst_structure_ass_subscript): Some more
	fixes, doesn't quite work as it should yet though.x
	(_wrap_gst_caps_tp_str): Plug leak

	* gst/interfaces.defs (Mixer, MixerTrack): Add mixer fields here.

	* testsuite/element.py (QueueTest.testConstruct): Some basic test,
	one disabled for the moment

2004-08-12  Johan Dahlin  <johan@gnome.org>

	* gst/interfaces.defs (TunerNorm, TunerChannel): Add fields.

	* gst/interfaces.override (_wrap_gst_tuner_list_norms) 
	(_wrap_gst_tuner_list_channels): Impl.

2004-08-06  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/gst.override:
	* testsuite/caps.py:
	  one item list with structure is valid too

2004-08-06  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/gst.defs:
	* gst/gst.override:
	* testsuite/caps.py:
	  add a constructor for caps that wraps _new_empty, _from_string
	  and an alternative to _new_full.
	  add tests for them.

2004-08-06  Johan Dahlin  <johan@gnome.org>

	* gst/gst.override (_wrap_gst_structure_from_string): Impl.
	(_wrap_gst_tag_list_has_key): Impl.
	(_wrap_gst_caps_get_structure): Don't copy or free me

	* testsuite/struct.py (StructureTest.testStructureChange): Enable
	some tests.
	Improve tests

	* gst/gst.override (_wrap_gst_structure_ass_subscript): Impl

2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>

	* testsuite/struct.py:
	  add a testsuite for structs, not yet active

2004-08-03  Johan Dahlin  <johan@gnome.org>

	* configure.ac: Require python 2.3

	* gst/gstmodule.c (python_do_pending_calls): Use PyGILState and
	friends here.

	* gst/gst.override (_pygst_main_quit, _pygst_main): Use these two
	instead of gst_main/gst_main_quit so we can check if we're in a
	mainloop or not.

2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/gst.defs:
	  allow no name for thread and pipeline as well

2004-07-16  Johan Dahlin  <johan@gnome.org>

	* pkgconfig/gst-python.pc.in (pyexecdir): Add and remove comments
	for all other variables.

2004-07-15  Johan Dahlin  <johan@gnome.org>

	* testsuite/registry.py: Add some basic tests 

	* gst/gst.override: Don't ignore all gst_registry_* symbols
	(_wrap_gst_registry_pool_plugin_list): Impl.
	(_wrap_gst_registry_pool_feature_list): Impl.

	* gst/gst-types.defs (Plugin): Add as a boxed

	* gst/__init__.py: Use DLFCN instead of dl to help python
	installations without the dl module (gentoo for instance)

2004-07-13  Johan Dahlin  <johan@gnome.org>

	* gst/gst.override (_wrap_gst_pad_query, _wrap_gst_element_query) 
	(_wrap_gst_pad_convert): Remove exceptions, return Long values
	(and convert from LongLongs) and clean up a little)

	* testsuite/element.py (QueryTest.testQuery): Another small test

	* gst/gst.override (_wrap_gst_element_query): Ditto
	(_wrap_gst_pad_convert): Ditto

	* testsuite/event.py (EventFileSrcTest.setUp): Start the pipeline,
	so we don't get warnings when sending events
	(EventTest.setUp): Ditto.

	* testsuite/pad.py: New test, only testing simple pad queries so far.

	* testsuite/Makefile.am (tests): Add missing tests

	* gst/gst.override (_wrap_gst_pad_query): Raise RuntimeError if 
	the return value is False and only return the queried value.

2004-07-02  David Schleef  <ds@schleef.org>

	* configure.ac:  Correctly check for XML tools.  Correctly set
	BUILD_DOCS variable depending on tools.
	* docs/Makefile.am:  Use XML variables.

2004-06-21  Thomas Vander Stichele  <thomas at apestaart dot org>

	* configure.ac: back to cvs

=== release 0.7.92 ===

2004-06-21  Thomas Vander Stichele  <thomas at apestaart dot org>

	* testsuite/Makefile.am:
	* testsuite/common.py:
	  passed make distcheck, ready to go

2004-06-21  Johan Dahlin  <johan@gnome.org>

	* gst/Makefile.am (EXTRA_DIST): Add ltihooks.py

2004-06-18  Johan Dahlin  <johan@gnome.org>

	* testsuite/runtests.py (dir): Change to srcdir before running the
	test, should make it pass distcheck

2004-06-10  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/__init__.py:
	* testsuite/Makefile.am:
	* testsuite/caps.py:
	  adding a caps test

2004-06-09  Johan Dahlin  <johan@gnome.org>

	* gst/gstbuffer.override (_wrap_gst_buffer_flag_is_set) 
	(_wrap_gst_buffer_flag_set, _wrap_gst_buffer_flag_unset): Impl.

	* testsuite/buffer.py (BufferTest.testBufferFlagIsSet): New test

2004-05-24  Johan Dahlin  <johan@gnome.org>

	* testsuite/interface.py (Availability.testXOverlay): Extend to
	test method calling on interfaces

	* testsuite/common.py: call pygtk.require first

	* gst/gstbin.override (_wrap_gst_bin_get_by_name): Add a 
	keyword argument recurse and remove
	_wrap_gst_bin_get_by_name_recurse_up. 

	* gst/gst.override (_wrap_gst_element_get_pad_list): Split out bin
	functions to ...

	* gst/gstbin.override: .. this file

	* gst/gst.defs (bin_new): allow NULL for first argument.
	(child_state_change): Remove, it's private.

2004-05-04  Johan Dahlin  <johan@gnome.org>

	* gst/gst-types.defs (Buffer): Add some fields

	* gst/gstbuffer.override: Move out from gst.override, add
	tp_as_sequence support and reorganize the code

	* testsuite/buffer.py (BufferTest): Add new tests

2004-05-03  Johan Dahlin  <johan@gnome.org>

	* gst/__init__.py: Remove pygtk import and import gobject
	directly. It's up the app to call pygtk.require and no the
	library. 

	* testsuite/event.py, testsuite/buffer.py: New tests.

	* testsuite/common.py (run_silent): New function to enable stderr
	even if an exception is raised.

	* testsuite/element.py (FakeSinkTest.checkError): Better
	state-error checking.

	* gst/common.h: Add some parenthesises

	* gst/play.override: Include common.h

	* configure.ac: Use different prefix for the new check of PyGtk so
	we're not overwriting the good PYGTK_CFLAGS

	* gst/Makefile.am (INCLUDES): Move PYGTK_CFLAGS to common_cflags
	instead of INCLUDES

	* configure.ac: define HAVE_OLD_PYGTK if we're on pygtk 2.3.91 or
	earlier and disable editor checks

	* gst/common.h: Add backwards compatible typedef for python < 2.3
	and pygtk < 2.3.92

	* codegen/codegen.py: Resync (add support for tp_as_buffer)

	* gst/gst.override: Support buffer interface for GstBuffer. Move
	stuff into common.h, fix wrapping for
	gst_pad_template_get_caps_by_name

2004-05-01  Johan Dahlin  <johan@gnome.org>

	* testsuite/runtests.py (gettestnames): Cleanup

	* testsuite/element.py (FakeSinkTest): Enable again and disable
	stderr while changing state to ready
	(ElementName.testElementStateGetName): New function to test
	gst.element_state_get_name.

	* testsuite/common.py (path): Don't import ltihooks and proper
	check for gst module. Add --gst-debug-no-color as a global option
	(disable_stderr, enable_stderr): New functions to disable stdout
	called from non python

2004-04-30  Johan Dahlin  <johan@gnome.org>

	* gst/gst.defs (element_state_get_name): Add.

2004-04-21  Johan Dahlin  <johan@gnome.org>

	* testsuite/runtests.py (tests): Run all tests in one TestSuite
	instead of several.

	* testsuite/element.py (FakeSinkTest.setUp): Disable StateError
	tests until there is a way to disable element error output.

2004-04-16  Johan Dahlin  <johan@gnome.org>

	* configure.ac (PYGTK_CODEGEN): Use built in code generator again
	and don't require 2.3.91, 2.0.0 should do fine (FC1 ok, RH9 isn't)

	* TODO: Update

	* gst/interfaces.override, gst/play.override: Add typedef for
	python < 2.3

	* codegen/codegen.py: Readd :/

	* testsuite/pipeline.py (PipelineConstructor.testGoodConstructor)
	(PipelineConstructor.testBadConstruct)
	(ThreadConstructor.testCreate): New tests

	* testsuite/element.py (ElementTest.testGoodConstructor): Add
	isinstance(element, gst.Element) test

	* testsuite/common.py: Clean up, use ltihooks

	* gst/gst.override (_wrap_gst_element_tp_new): New, just pointing
	to _wrap_gst_element_factory_make
	(_wrap_gst_element_tp_new): Stub, return 1  so tp_new can be used.
	(init) Assign tp_new for pipeline and thread to PyType_GenericNew
	for now.
	
	* gst/gst.defs (element_factory_make): Remove is-constructor-of
	GstElement.

	* codegen/: Remove and use the codegen from pygtk instead

	* configure.ac (ACLOCAL): Require 2.3.91 of PyGTK

2004-04-06  Johan Dahlin  <johan@gnome.org>

	* examples/gstplay/videoplayer.py: New example, simple video
	player embedded in a gtk+ widget.

=== release 0.7.91 ===

2004-03-31  Johan Dahlin  <johan@gnome.org>

	* configure.ac (ACLOCAL): Bump version

	* gst/Makefile.am (EXTRA_DIST): And make sure we have all defs here.

	* gst/ltihooks.py: New file

	* gst/__init__.py: try to import ltihooks.py

	* gst/Makefile.am: Only install gst-types.defs

	* Makefile.am (EXTRA_DIST): Add codegen/* Can't believe distcheck passed

=== release 0.7.90 ===

2004-03-30  Johan Dahlin  <johan@gnome.org>

	* docs/NEWS.xml: Update

2004-03-29  Johan Dahlin  <johan@gnome.org>

	* examples/gst/wavenc.py: New example

	* Makefile.am (EXTRA_DIST): Add wavenc.py

2004-03-24  Johan Dahlin  <johan@gnome.org>

	* gst/gstmodule.c (init_gst): Add constants for GST_*SECOND.
	(python_do_pending_calls): New idler handler, similar to pygtk, so
	python events (eg KeyboardInterrupt) can be raised during mainloop
	
	* gst/gst.override (_wrap_gst_bin_get_list): 
	(_wrap_gst_pad_tp_repr, caps_length, caps_item) 
	(structure_length, structure_subscript) 
	(_wrap_gst_structure_tp_repr): Impl.
	(_wrap_gst_main): Override with threading blocking.

	* gst/gst-types.defs (Object): add flags field.
	(Structure): Add copy/release funcs

	* gst/__init__.py (devloc): Don't initialize threads

	* gst/Makefile.am: clean up

	* examples/gst/player.py: Prettify and simplify. Uses GstThread now.

	* examples/gstplay/player.py: Update to new api and make it work.

2004-03-18  Johan Dahlin  <johan@gnome.org>

	* configure.ac: s/GST_*_INCLUDES/GST_*_LIBS/

2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gst/Makefile.am: fix automake don'ts

2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>

	* examples/gst/player.py:
          update for new API.  Use Enter to pause pipeline.
	* examples/gst/vorbisplay.py:
          update for new API

2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>

	* configure.ac:
          subst GST_MAJORMINOR
	* docs/Makefile.am:
          disable docs checks until they satisfy make distcheck

2004-03-17  Johan Dahlin  <johan@gnome.org>

	* testsuite/Makefile.am (check-local): distcheck fixes

	* testsuite/common.py: Put in a couple of hacks to make distcheck
	pass make check

	* testsuite/interface.py: New test

	* gst/gst.defs: Remove unused functions.

	* gst/gst.override: Ditto

	* gst/__init__.py (devloc): delete dl

	* Makefile.am (DIST_SUBDIRS): Remove PLAYDIR

2004-03-16  Johan Dahlin  <johan@gnome.org>

	* configure.ac: Support build without gstplay and gstinterfaces

	* gst/Makefile.am: Move the gstplay bindings over here

	* Makefile.am, configure.ac: Remove examples/ and put them in
	EXTRA_DIST here

	* gst/gst.defs (element_make_from_uri): Remove const from enum
	here, should be fixed upstream too.

	* gst/gst.override (_wrap_gst_bin_remove_many) 
	(_wrap_gst_element_unlink_many): Impl.
	(_wrap_gst_element_get_pad_list): Impl.
	: Add a number of new ignores for functions/methods we won't wrap anyway

2004-03-15  Johan Dahlin  <johan@gnome.org>

	* gst/*: Move interfaces over here, make it build, remove gstreamer.py

2004-03-12  Johan Dahlin  <johan@gnome.org>

	* configure.ac: PyGtk 1.99.14 should be okay (Shipped with RH9),
	AC_SUBST GStreamer and PyGTK flags

	* Makefile.am (PLAYDIR): Disable for now

	* configure.ac: Build against 0.8

	* gstinterfaces/Makefile.am: clean up a little bit

	* gstinterfaces/__init__.py (devloc): s/gstreamer/gst/

	* codegen: Resync and appy my interface constructor patch

2004-03-09  Johan Dahlin  <johan@gnome.org>

	* gst/gst.override (_wrap_gst_g_error_tp_str) 
	(_wrap_gst_g_error_tp_str): Impl.

	* gst/gst-types.defs (GError): Add

	* gst/Makefile.am (defs_DATA): Install defs

	* codegen/*: Resync

2004-03-05  Johan Dahlin  <johan@gnome.org>

	* testsuite/element.py: Update to new api

	* codegen/*: Copy PyGTK code generator here, to avoid depending on
	latest version.

	* configure.ac: Add versioning, ala pygtk, and use the internal
	code generator instead of the installed one

2004-03-04  Thomas Vander Stichele  <thomas at apestaart dot org>

	* configure.ac:
	* examples/Makefile.am:
	* gst/Makefile.am:
	* gstinterfaces/Makefile.am:
	* gstplay/Makefile.am:
	* testsuite/Makefile.am:
          fix make distcheck
          move examples/gstreamer to examples/gst

2004-03-04  Thomas Vander Stichele  <thomas at apestaart dot org>

	* Makefile.am:
	* autogen.sh:
	* configure.ac:
	* gst/__init__.py:
	* gst/gstmodule.c: (init_gst):
          move gstreamer/ to gst/ by cvs surgery so we can work uninstalled
          more changes to be able to run uninstalled

2004-02-27  Johan Dahlin  <johan@gnome.org>

	* gstreamer/: All over the place, more rename work (gstreamer -> gst)

	* examples/gstreamer/filesrc.py,player.py: New examples
	
	* gstreamer/gstreamer.override: Add a dict like interface to GstTagList

	* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override

	* gstreamer/gst-types.defs: Don't use
	gst_buffer_free/gst_data_free, use gst_data_unref instead.

	* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.

	* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
	address to stuff, since we really want to avoid segfaults :)

	* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
	
	* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
	gstreamer.*
	
	* gstreamer/Makefile.am: Clean up, remove versioning support.

2004-02-25  Johan Dahlin  <johan@gnome.org>

	* gstreamer/gstreamer.override: 
	* gstreamer/gstreamermodule.c: Rename some more things to gst

	* gstreamer/arg-types.py: Clean up and add GstData handling

	* gstreamer/gstreamer.defs: 
	* gstreamer/gst-types.defs: Split out types to a separate defs

	* gstreamer/gst-types.c: New file to handle custom GstData conversions.

2004-02-24  David I. Lehn  <dlehn@users.sourceforge.net>

	* gstreamer/0.7.override:
	* gstreamer/common.h:
	GstStructure and GstTagList foreach() support.
	* examples/gstplay/player.py:
	Use TagList.foreach() to print tags.

2004-02-24  David I. Lehn  <dlehn@users.sourceforge.net>

	* gstreamer/common.override:
	Attempt to handle GstBuffer vs GstData better.

2004-02-24  Johan Dahlin  <johan@gnome.org>

	* gstreamer/gstreamer.defs: rename all functions, remove
	gst_ suffix.
	* gstreamer/examples/gstreamer/*.py: Update to new API.

2004-02-23  Johan Dahlin  <johan@gnome.org>

	* gstreamer/gstreamer.defs (element_link_many): This is function
	and not a method, despite popular belief
	(gst_element_factory_make): Make it the constructor of GstElement,
	so we can avoid dirty hacks.

	* gstreamer/gstreamer.override (_wrap_gst_element_link_many): Wrap
	(_wrap_gst_element_link_many): Wrap

	* gstreamer/common.defs: 
	* gstreamer/common.override: 	
	* gstreamer/Makefile.am: Beginning of reorganization, to include
	gstreamer.defs and override (eg, not auto generate them)

	* examples/gstreamer/cp.py: Prettify and pythonify. Will do the
	other examples later
	
	* gstreamer/gstreamer.py: Backwards compatibility module

	* gstreamer/gstreamermodule.c:
	* gstreamer/Makefile.am: Rename the module to gst

2004-02-18  David I. Lehn  <dlehn@users.sourceforge.net>

	* gstreamer/0.7.defs:
	Wrap GstTagList.

2004-02-18  David I. Lehn  <dlehn@users.sourceforge.net>

	* gstinterfaces/0.7.c:
	* gstinterfaces/0.7.h:
	* gstinterfaces/0.7.override:
	* gstinterfaces/__init__.py:
	* gstinterfaces/arg-types.py:
	* gstinterfaces/common.c:
	* gstinterfaces/common.h:
	* gstinterfaces/common.override:
	* gstinterfaces/gstinterfacesmodule.c:
	* gstplay/0.7.c:
	* gstplay/0.7.h:
	* gstplay/0.7.override:
	* gstplay/__init__.py:
	* gstplay/arg-types.py:
	* gstplay/common.c:
	* gstplay/common.h:
	* gstplay/common.override:
	Adjust date to 2004.

2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>

	* acinclude.m4:
          fix underquotedness

2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>

	* gstinterfaces/.cvsignore:
	* gstinterfaces/0.7.defs:
	* gstinterfaces/Makefile.am:
	* gstinterfaces/common.defs:
	* gstinterfaces/common.override:
	* gstinterfaces/gstinterfacesmodule.c: (init_gstinterfaces):
	* gstplay/.cvsignore:
	* gstplay/0.7.c:
	* gstplay/0.7.defs:
	* gstplay/0.7.h:
	* gstplay/0.7.override:
	* gstplay/Makefile.am:
	* gstplay/__init__.py:
	* gstplay/arg-types.py:
	* gstplay/common.c:
	* gstplay/common.h:
	* gstplay/common.override:
	* gstplay/gstplaymodule.c: (init_gstplay):
	* gstreamer/Makefile.am:
	* gstreamer/__init__.py:
	* gstreamer/common.override:
	Support GstPlay, bug fixes, updates.
	* examples/gstplay/player.py:
	GstPlay example.
	* Makefile.am:
	Support GstPlay build.
	* configure.ac:
	Support GstPlay build, remove AC_SUBST() calls that
	PKG_CHECK_MODULES does automagically.

2004-01-27  David I. Lehn  <dlehn@users.sourceforge.net>

	* Makefile.am: add gstinterfaces dir
	* configure.ac: get interfaces include dirs
	* gstreamer/.cvsignore: add .py[co]
	* gstreamer/0.6.defs:
	* gstreamer/0.6.override:
	* gstreamer/0.7.defs:
	* gstreamer/0.7.override:
	* gstreamer/common.defs:
	* gstreamer/common.override: rearrange code for both 0.6 and 0.7
	support
	* gstreamer/Makefile.am: add -fno-strict-aliasing due to python
	issues
	* gstinterfaces/.cvsignore:
	* gstinterfaces/0.7.c:
	* gstinterfaces/0.7.defs:
	* gstinterfaces/0.7.h:
	* gstinterfaces/0.7.override:
	* gstinterfaces/Makefile.am:
	* gstinterfaces/__init__.py:
	* gstinterfaces/arg-types.py:
	* gstinterfaces/common.c:
	* gstinterfaces/common.defs:
	* gstinterfaces/common.h:
	* gstinterfaces/common.override:
	* gstinterfaces/gstinterfacesmodule.c: messy start of interfaces
	handling

2003-12-07  Gustavo J. A. M. Carneiro  <gustavo@users.sourceforge.net>

	* gstreamer/common.override
	(_wrap_gst_element_factory_make_element): Make name argument
	optional.

2003-10-10  David I. Lehn <dlehn@users.sourceforge.net>

	* configure.ac, gstreamer/Makefile.am, gstreamer/*: Mass change to
	support compiling for both 0.6 and 0.7.  Common support is now in
	common.{defs,override,c,h}.  Specific version support is in
	{0.6,0.7}.{defs,override,c,h}.  The common and version specific files
	are merged and/or used as needed.

	* gstreamer/common.override: add gst_version

	* examples/gstreamer/ilat.py: add annoying version check for 0.6 API

2003-10-09  David I. Lehn <dlehn@users.sourceforge.net>

	* configure.ac: require autoconf 2.57 and pygtk 2.0.0.

	*  gstreamer/Makefile.am: fix libtool 1.5 build by fixing export
	symbol typo s/initgstreamer/init_gstreamer/

	* gstreamer/examples/ilat.py: 4 space indents

2003-10-05  Thomas Vander Stichele <thomas at apestaart dot org>

        * examples/gstreamer/*.py: use Element over gst_element_factory_make

2003-10-05  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gstreamer/gstreamermodule.c: (init_gstreamer):
          use gst_init_check () with argc and argv (see pygtk)

2003-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>

	* Makefile.am: add testsuite dir
	* configure.ac: bump to cvs version nano, add testsuite Makefile
	* testsuite/Makefile.am: testsuite
	* testsuite/element.py: test for Element class
	* gstreamer/gstreamer.overrides: add a wrapper for Element ()
	* gstreamer/gstreamer-extra.defs: add a constructor for Element

2003-09-27  Thomas Vander Stichele  <thomas at apestaart dot org>

	* gstreamer/gstrearem.override: fix Py_BuildValue for 64 bit ints

2003-07-10  David I. Lehn <dlehn@users.sourceforge.net>

	* AUTHORS, NEWS, README, TODO, README-docs, Makefile.am, configure.ac,
	docs/Makefile.am, docs/NEWS.xml, docs/README.xml, docs/RELNOTES.xml,
	docs/gst-python.ent.in, docs/notes/release: distcheck and final
	release prep fixes

2003-07-09  David I. Lehn <dlehn@users.sourceforge.net>

	* configure.ac: check for xmlcatalog for docs build (probably not
	strictly needed for general use but fixes non-srcdir builds)

	* Makefile.am: conditionally build docs

	* README.docs, Makefile.am: info on where doc sources are located

	* docs/gst-python.xml: removed (split into partial files)

	* README, AUTHORS, NEWS, TODO: removed (generated from docs/*)

	* .cvsignore, docs/.cvsignore: add generated files

	* docs/{AUTHORS.xml, NEWS.xml, README.xml, RELNOTES.xml, TODO.xml,
	gst-python.ent.in, common.xsl, full.xsl, part.xsl, Makefile.am}: redo
	autobuilt docs system with fancy XInclude features

	* README.docs, README-docs: rename

	* docs/notes/release: add release checklist

	* docs/gst-python.ent.in: update pubdate

2003-06-26  David I. Lehn <dlehn@users.sourceforge.net>

	* configure.ac, AUTHORS, NEWS, README, TODO, docs/Makefile.am,
	docs/HEAD.in docs/docutils.conf, docs/gst-python.css:
	kill docutils based docs (easy come, easy go)

	* AUTHORS, NEWS, README, TODO, docs/Makefile.am, docs/gst-python.xml,
	docs/common.xsl, docs/html.xsl, docs/pdf.xsl, docs/gst-python.css:
	docbook based docs

2003-06-25  David I. Lehn <dlehn@users.sourceforge.net>

	* gstreamer/Makefile.am: fix up line continuations

	* configure.ac, Makefile.am, pkgconfig/*: add pkgconfig support

	* configure.ac, Makefile.am, AUTHORS, NEWS, README, TODO,
	docs/HEAD.in, docs/Makefile.am, docs/docutils.conf,
	docs/gst-python.css: docutils based docs

2003-06-11  Thomas Vander Stichele <thomas at apestaart dot org>

	* gst-python.spec.in: fix

	* Makefile.am, autogen.sh, configure.ac: convert to same style as
	other GStreamer modules

2003-02-10  David I. Lehn <dlehn@users.sourceforge.net>

	* TODO: add TODO list

2003-02-08  David I. Lehn <dlehn@users.sourceforge.net>

	* gstreamer/Makefile.am: make distcheck fixification

2003-02-06  David I. Lehn <dlehn@users.sourceforge.net>

	* gstreamer/gstreamer-extra.defs, gstreamer/gstreamer.override: add
	wrapper for gst_props_entry_gst_list() and method gst_list() to
	GstProps to access properties list

	* gstreamer/gstreamer-extra.defs, gstreamer/gstreamer-fixes.[ch]: add
	alias for gst_props_entry_get_type as _get_props_type() since
	_get_type() is recognized as a GObject type function

	* examples/gstreamer/oggplay.py: rename to vorbisplay.py

	* examples/gstreamer/vorbisplay.py: print out meta/stream info

	* gstreamer/Makefile.am: add gstreamer.defs to CLEANFILES

2003-02-05  David I. Lehn <dlehn@users.sourceforge.net>

	* configure.ac: require GStreamer core 0.6.0

	* examples/gstreamer/bps.py: added buffers-per-second test

	* gstreamer/gstreamer-fixes.[ch]: add functions for optimized bin
	iteration (may move or rename):
	  - id add_iterate_bin(bin)
	  - remove_iterate_bin(id)
	  - iterate_bin_all(bin)

2003-01-22  David I. Lehn <dlehn@users.sourceforge.net>

	* configure.ac: require GStreamer core 0.5.2

2003-01-09  David I. Lehn <dlehn@users.sourceforge.net>

	* examples/gstreamer/*, gstreamer/gstreamer.override: update to new
	GstPad/GstElement link API and remove old hacks to call GObject
	connect method

	* gstreamer/Makefile.am: ignore gstcompat.h

	* configure.ac: require GStreamer core 0.5.1.1

2003-01-04  David I. Lehn <dlehn@users.sourceforge.net>

	* gstreamer/gstreamer.override, gstreamer/gstreamer-extra.defs: add
	GstPropsEntry and wrappers for most of get_* methods

	* gstreamer/gstreamer-arg-types.py: add GstClockID as a pointer arg
	type (not too useful, really need to make it a boxed type)

2003-01-02  David I. Lehn <dlehn@users.sourceforge.net>

	* gstreamer/__init__.py: add threads_init() function

	* gstreamer/gstreamer.override: add pad and element query and convert
	methods

2002-12-31  David I. Lehn <dlehn@users.sourceforge.net>

	* configure.ac: require PyGTK 1.99.14

	* pygtk.diff: integrated upstream, remove patch

	* gstreamer/Makefile.am: filter out gstatomic_impl.h from includes
	used to create defs

	* examples/gstreamer/oggplay.py: s/vorbisdec/vorbisfile/ (Thanks to
	Kenichi Sato <ksato@users.sourceforge.net>)

2002-12-22  David I. Lehn <dlehn@users.sourceforge.net>

	* configure.ac: fix include dir check and fail if not found

2002-12-21  David I. Lehn <dlehn@users.sourceforge.net>

	* gstreamer/gstreamer.override (call_connect_function,
	call_chain_function): block/unblock threads before entering Python
	interpreter

	* gstreamer/gstreamer.override: indent

2002-12-17  David I. Lehn <dlehn@users.sourceforge.net>

	* gstreamer/gstreamer.override: add wrapper for gst_element_set_state
	to release GIT lock

2002-12-14  David I. Lehn <dlehn@users.sourceforge.net>

	* configure.ac: bump gstreamer version to 0.5.0

	* *: update to use sourceforge email address

2002-11-07  David I. Lehn <dlehn@users.sourceforge.net>

	* configure.ac: bump gstreamer version to 0.4.2, bump pygtk version to
	1.99.13

	* gstreamer/__init__.py: add "import pygtk; pygtk.require('2.0')"

	* examples/gstreamer/dvdplay.py: updated to maybe work with threads

	* pygtk.diff: add work-in-progress PyGTK threading improvements diff 

2002-10-23  David I. Lehn <dlehn@users.sourceforge.net>

	* gstreamer/gstreamer.override: override gst_bin_iterate() to unblock
	threads since this call can cause exacution to re-enter the
	interpreter.

2002-10-04  David I. Lehn <dlehn@users.sourceforge.net>

	* gstreamer/gstreamer.override, gstreamer/gstreamer-fixes.h: add
	temporary hack to fix 0.4.1 s/gst/get/ typo in GST_TYPE_CAPS/PROPS()

2002-10-04  David I. Lehn <dlehn@users.sourceforge.net>

	* README: basic info.

	* COPYING: remove the literal "^L" strings.

	* configure.ac: require GStreamer core 0.4.1.

	* gstreamer/gstreamer-extra.defs: add boxed type defs, convert buffer
	get/set_data to methods vs functions.

	* gstreamer/gstreamer.overrides: remove boxed type generated code,
	adapt rest to boxed types.

	* examples/gstreamer/*: set interpreter to "python" vs "python2.2",
	adapt to newer generated code (Pipeline vs gst_pipeline_new()), adapt
	to newer api.

2002-05-09  David I. Lehn  <dlehn@users.sourceforge.net>

	* examples/gstreamer/dvdplay.py: adjust state changes,
	use sdlvideosink (videosink segfaulting for me right now)

	* gstreamer/gstreamer.defs: remove

	* gstreamer/gstreamer-base.defs,
	gstreamer/gstreamer-xtra.defs,
	Makefile.am:
	create gstreamer.defs from h2defs.py output and local hacks

2002-04-15  David I. Lehn  <dlehn@users.sourceforge.net>

	* examples/gstreamer/*.py: use new element connect api

	* gstreamer/__init__.py: use dl module flags
	in particular, RTLD_GLOBAL flags is required

2002-04-14  David I. Lehn  <dlehn@users.sourceforge.net>

	* configure.ac: depend on gstreamer 0.3.4

	* examples/gstreamer/*.py: s/elementfactory/element_factory/

	* gstreamer/gstreamer-fixes.h, gstreamer/gstreamer-fixes.c:
	remove defs no longer needed due to upstream changes

	* gstreamer/gstreamer.defs: regen for 0.3.4

2002-03-24  David I. Lehn  <dlehn@users.sourceforge.net>

	* examples/gstreamer/: add cp.py oggplay.py f2f.py dvdplay.py

	* gstreamer/gstreamermodule.c: strip GST_ prefix

	* gstreamer/__init__.py: find libtool lib hack

2002-03-23  David I. Lehn  <dlehn@users.sourceforge.net>

	* stole binding framework from gnome-python && gconf

	* adapted to gstreamer