forked from GStreamer/gst-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
6846 lines (5174 loc) · 215 KB
/
ChangeLog
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
=== release 1.12.0 ===
2017-05-04 Sebastian Dröge <[email protected]>
* configure.ac:
releasing 1.12.0
=== release 1.11.91 ===
2017-04-27 17:37:36 +0300 Sebastian Dröge <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-python.doap:
* meson.build:
Release 1.11.91
=== release 1.11.90 ===
2017-04-07 16:35:42 +0300 Sebastian Dröge <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-python.doap:
* meson.build:
Release 1.11.90
2017-03-27 14:59:24 -0400 Nicolas Dufresne <[email protected]>
* gi/overrides/gstmodule.c:
* testsuite/test_valuearray.py:
* testsuite/test_valuelist.py:
array/list: Make gvalue conversion symmetric
This is needed to support matrix. Otherwise, getting
a matrix would remove the rows envelopess, which would
make the "cast" fails, since it would not know if the
internal rows are ValueArray or ValueList. I think reading,
modifying and setting back the matrix is an important use
case.
2017-03-27 14:52:24 -0400 Nicolas Dufresne <[email protected]>
* gi/overrides/gstmodule.c:
gstmodule: Factor out gst type creation
This reduces a lot the boiler plate all over. At the same
time, use N instead of O when passing PyObject to fix
the objects leaks.
2017-03-24 13:28:35 -0400 Nicolas Dufresne <[email protected]>
* .gitignore:
Add /build and install to the gitignore
2017-03-23 12:21:32 -0400 Nicolas Dufresne <[email protected]>
* gi/overrides/Gst.py:
* gi/overrides/gstmodule.c:
* testsuite/Makefile.am:
* testsuite/common.py:
* testsuite/meson.build:
* testsuite/test_doublerange.py:
* testsuite/test_fraction.py:
* testsuite/test_fractionrange.py:
* testsuite/test_int64range.py:
* testsuite/test_intrange.py:
* testsuite/test_valuearray.py:
* testsuite/test_valuelist.py:
overrides: Add more GstValue overrides
This patch adds overrides to support IntRange, Int64Range, DoubleRange,
FractionRange, Array and List. For integer ranges, it maps this
to python 'range'. Gst.IntRange() and Gst.Int64Range() are simple cast
to let the underlying code know which GType to use. To set such range in
python you will do:
structure["range"] = Gst.IntRange(range(0,10,2)))
Same for the 64 bit variant. And when you do:
r = structure.get_value("range")
A range will be returned directly, without the wrapper. For DoubleRange
and FractionRange, there is no native support in python. So the usage
will be:
structure["range"] = Gst.DoubleRange(0,10.0)
structure["range"] =
Gst.FractionRange(Gst.Fraction(1/30), Gst.Fraction(1/5)
When getting this value, Gst.DoubleRange and Gst.FractionRange class are
returned. They both have start/stop members. The naming was taken from
range type.
For Array and List, both uses the native list type, though they can be
constructed from any python sequence. So again, the class is just like
a cast, to let it pick the right GType and python list are being
returned.
structure["list"] = Gst.ValueList([1,2,3,4])
structure["array"] = Gst.ValueArray([1,2,3,4)
Using string and tuple could also work. Since Gst.ValueList/Array are
sequence, you can convert one to the other with:
list = Gst.ValueList([1,2,3,4])
array = Gst.ValueArray (list)
https://bugzilla.gnome.org/show_bug.cgi?id=753754
2017-03-23 12:09:05 -0300 Thibault Saunier <[email protected]>
* meson.build:
* scripts/pythondetector:
meson: Install in gi._overidesdir only if we are installing in right prefix
And make sure python detector did not fail
https://bugzilla.gnome.org/show_bug.cgi?id=780369
2017-02-24 16:01:39 +0200 Sebastian Dröge <[email protected]>
* meson.build:
meson: Update version
2017-02-24 15:38:09 +0200 Sebastian Dröge <[email protected]>
* configure.ac:
Back to development
=== release 1.11.2 ===
2017-02-24 15:09:54 +0200 Sebastian Dröge <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-python.doap:
Release 1.11.2
2017-02-24 12:08:48 +0200 Sebastian Dröge <[email protected]>
* configure.ac:
Back to development
2017-02-21 22:02:14 +1100 Jan Schmidt <[email protected]>
* examples/helloworld.py:
Port old helloworld.py example to GI
2017-02-15 10:48:58 -0300 Thibault Saunier <[email protected]>
* meson.build:
* meson_options.txt:
python: Add an option to set where to install pygi overrides
2017-01-13 12:51:11 +0000 Tim-Philipp Müller <[email protected]>
* meson.build:
meson: bump version and bump meson requirement
Adjust meson requirement to same as used in other modules.
=== release 1.11.1 ===
2017-01-12 16:15:50 +0200 Sebastian Dröge <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-python.doap:
Release 1.11.1
2016-12-16 17:43:11 +0000 Tim-Philipp Müller <[email protected]>
* .gitignore:
* gst-python.spec.in:
Remove bitrotten and unused gst-python.spec.in file
2016-11-26 11:28:30 +0000 Tim-Philipp Müller <[email protected]>
* .gitmodules:
common: use https protocol for common submodule
https://bugzilla.gnome.org/show_bug.cgi?id=775110
2016-11-03 11:49:15 -0300 Thibault Saunier <[email protected]>
* testsuite/overrides_hack.py:
Play nicely with gst-build uninstalled
As overrides_hack is being used as user sitecustomize script
2016-11-03 08:36:23 -0300 Thibault Saunier <[email protected]>
* meson.build:
* testsuite/meson.build:
* testsuite/runtests.py:
meson: Add testsuite
2016-11-01 18:12:33 +0000 Tim-Philipp Müller <[email protected]>
* meson.build:
meson: update version
=== release 1.11.0 ===
2016-11-01 18:53:15 +0200 Sebastian Dröge <[email protected]>
* configure.ac:
Back to development
=== release 1.10.0 ===
2016-11-01 18:06:58 +0200 Sebastian Dröge <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-python.doap:
Release 1.10.0
2016-10-19 14:47:01 -0300 Thibault Saunier <[email protected]>
* meson.build:
meson: use the version keyword argument for dependencies version
2016-10-17 09:37:30 +0200 Marianna Smidth Buschle <[email protected]>
* examples/plugins/python/identity.py:
examples: Added identity example
Created a simple BaseTransform element (identity)
https://bugzilla.gnome.org/show_bug.cgi?id=772853
2016-09-30 11:35:42 -0300 Thibault Saunier <[email protected]>
* hooks/pre-commit.hook:
* meson.build:
meson: Setup pre-commit hooks when configuring
=== release 1.9.90 ===
2016-09-30 13:04:26 +0300 Sebastian Dröge <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-python.doap:
Release 1.9.90
2016-09-14 15:18:17 +0200 Sebastian Dröge <[email protected]>
* pythondetector:
meson: Add a workaround for finding the Python library on Fedora
2016-09-14 11:42:54 +0200 Sebastian Dröge <[email protected]>
* pythondetector:
meson: Fix pythondetector on Debian and use sysconfig for getting the ABIFLAGS too
Paths like /usr/lib/python3.5/config-3.5m-x86_64-linux-gnu would not be
detected by the old code, but it's all nicely stored in sysconfig so
let's just use that.
2016-09-14 11:31:32 +0200 Sebastian Dröge <[email protected]>
* configure.ac:
configure: Depend on gstreamer 1.9.2.1
2016-09-13 15:17:41 -0300 Thibault Saunier <[email protected]>
* pythondetector:
meson: Search python shared lib in lib64/ if it is a directory
2016-09-05 12:52:46 -0300 Thibault Saunier <[email protected]>
* plugin/gstpythonplugin.c:
build: Remove unused variables
2016-09-05 11:30:43 -0300 Thibault Saunier <[email protected]>
* config.h.meson:
* gi/meson.build:
* gi/overrides/meson.build:
* meson.build:
* plugin/meson.build:
* pythondetector:
Add support for Meson as alternative/parallel build system
https://github.com/mesonbuild/meson
2016-09-01 12:31:53 +0300 Sebastian Dröge <[email protected]>
* configure.ac:
Back to development
=== release 1.9.2 ===
2016-09-01 12:31:42 +0300 Sebastian Dröge <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-python.doap:
Release 1.9.2
2016-07-06 13:54:19 +0300 Sebastian Dröge <[email protected]>
* configure.ac:
Back to development
=== release 1.9.1 ===
2016-07-06 13:38:12 +0300 Sebastian Dröge <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-python.doap:
Release 1.9.1
2016-03-24 13:34:28 +0200 Sebastian Dröge <[email protected]>
* configure.ac:
Back to development
=== release 1.8.0 ===
2016-03-24 13:03:02 +0200 Sebastian Dröge <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-python.doap:
Release 1.8.0
=== release 1.7.91 ===
2016-03-15 12:34:35 +0200 Sebastian Dröge <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-python.doap:
Release 1.7.91
=== release 1.7.90 ===
2016-03-01 18:53:59 +0200 Sebastian Dröge <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-python.doap:
Release 1.7.90
2016-02-27 11:16:00 +0000 Hanno Boeck <[email protected]>
* gi/overrides/gstmodule.c:
NULL-terminate PyMethodDef array
PyMethodDef arrays are supposed to end with an entry full of NULL/0 values.
This is missing in gst-python in the file gstmodule.c.
This causes out of bounds memory reads which can be seen / tested by compiling
gst-python with address sanitizer (-fsanitize=address in CFLAGS/LDFLAGS).
https://bugzilla.gnome.org/show_bug.cgi?id=762766
2016-02-21 10:46:24 +0000 Tim-Philipp Müller <[email protected]>
* Makefile.am:
* win32/MANIFEST:
* win32/common/.gitignore:
* win32/common/config.h.in:
* win32/vs6/gst_python.dsw:
* win32/vs6/libgstpython.dsp:
* win32/vs6/pygenfiles.dsp:
win32: remove outdated build cruft
This hasn't been touched for generations, doesn't work,
and is just causing confusion. We also don't want to
maintain these files manually.
2016-02-19 17:13:57 +0100 Thibault Saunier <[email protected]>
* gi/overrides/gstmodule.c:
Fix bug when checking template object type
2016-02-19 12:38:49 +0200 Sebastian Dröge <[email protected]>
* configure.ac:
Back to development
=== release 1.7.2 ===
2016-02-19 12:16:05 +0200 Sebastian Dröge <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-python.doap:
Release 1.7.2
2016-02-15 23:26:06 +0100 Thibault Saunier <[email protected]>
* gi/overrides/gstmodule.c:
* testsuite/common.py:
gst: Fix a crash when passing wrong type as __templates__
2016-02-08 11:30:08 +0100 Thibault Saunier <[email protected]>
* gi/overrides/GstPbutils.py:
* plugin/gstpythonplugin.c:
Avoid warning about gi.require_version not being called
2015-12-24 15:30:00 +0100 Sebastian Dröge <[email protected]>
* configure.ac:
Back to development
=== release 1.7.1 ===
2015-12-24 15:00:41 +0100 Sebastian Dröge <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-python.doap:
Release 1.7.1
2015-12-14 13:03:24 +0100 Sebastian Dröge <[email protected]>
* plugin/gstpythonplugin.c:
python: Check return value of g_module_symbol()
CID 1320702
2015-12-14 13:01:25 +0100 Sebastian Dröge <[email protected]>
* plugin/gstpythonplugin.c:
python: Don't call Py_DECREF() on NULL
CID 1320703
2015-11-16 10:12:37 +0200 Sebastian Dröge <[email protected]>
* plugin/gstpythonplugin.c:
pythonplugin: Clean up error handling a bit
Don't g_error() but only g_critical() when things go wrong and return FALSE.
g_error() would kill the application immediately.
Also check if we can actually get gi.repository.Gst before using it.
2015-11-08 11:56:28 +0100 Mark Nauwelaerts <[email protected]>
* gi/overrides/Gst.py:
* gi/overrides/gstmodule.c:
overrides: also provide wrapper for trace level debug logging
2015-11-08 11:56:20 +0100 Mark Nauwelaerts <[email protected]>
* gi/overrides/Gst.py:
overrides: fix a few typos in exception messages
2015-10-27 22:19:19 +0100 Thibault Saunier <[email protected]>
* examples/plugins/python/sinkelement.py:
examples: Port the sink example to GstBaseSink
Also we now need to explicitly call Gst.init() from python bindings.
2015-10-25 21:33:46 +0100 Mark Nauwelaerts <[email protected]>
* gi/overrides/Gst.py:
overrides: chain up to base __init__ in Pad override
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=757108
2015-09-25 12:03:45 +0200 Thibault Saunier <[email protected]>
* configure.ac:
Back to development
=== release 1.6.0 ===
2015-09-25 12:01:24 +0200 Thibault Saunier <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-python.doap:
Release 1.6.0
2015-06-24 17:44:44 +0200 Thibault Saunier <[email protected]>
* configure.ac:
Back to development
=== release 1.5.2 ===
2015-06-24 17:44:30 +0200 Thibault Saunier <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-python.doap:
* testsuite/__init__.py:
Release 1.5.2
2015-04-24 10:35:14 +0200 Thibault Saunier <[email protected]>
* gi/overrides/Gst.py:
* testsuite/overrides_hack.py:
* testsuite/test_gst.py:
tests: Fix tests in python2
Python2 core checks that the first argument of a method is of the type
of the object if it does not have any info about the method, so when
using Gst not initialized it raiser a TypeError and not a
Gst.NotInitialized as expected.
+ And fix a typo
2015-04-24 09:37:24 +0200 Thibault Saunier <[email protected]>
* testsuite/Makefile.am:
* testsuite/test_fraction.py:
tests: Add test_fraction back in the testsuite
Properly porting it and adding a small test about getting fraction
from a Gst.Structure
2015-04-24 10:27:47 +0200 Thibault Saunier <[email protected]>
* gi/overrides/Gst.py:
overrides: Do not use inspect.signature as it is not avalaible in python2
Fix regression from https://bugzilla.gnome.org/show_bug.cgi?id=746329
2015-04-15 19:57:43 +0200 Thibault Saunier <[email protected]>
* Makefile.am:
* configure.ac:
* testsuite/Makefile.am:
* testsuite/common.py:
* testsuite/old/test-object.c:
* testsuite/old/test-object.h:
* testsuite/old/test_adapter.py:
* testsuite/old/test_audio.py:
* testsuite/old/test_bin.py:
* testsuite/old/test_buffer.py:
* testsuite/old/test_bus.py:
* testsuite/old/test_caps.py:
* testsuite/old/test_element.py:
* testsuite/old/test_event.py:
* testsuite/old/test_fraction.py:
* testsuite/old/test_ghostpad.py:
* testsuite/old/test_interface.py:
* testsuite/old/test_iterator.py:
* testsuite/old/test_libtag.py:
* testsuite/old/test_message.py:
* testsuite/old/test_pad.py:
* testsuite/old/test_pbutils.py:
* testsuite/old/test_pipeline.py:
* testsuite/old/test_registry.py:
* testsuite/old/test_segment.py:
* testsuite/old/test_struct.py:
* testsuite/old/test_taglist.py:
* testsuite/old/test_typefind.py:
* testsuite/old/test_xml.py:
* testsuite/old/testhelpermodule.c:
* testsuite/overrides_hack.py:
* testsuite/runtests.py:
* testsuite/test_gst.py:
test: Bring back the testsuite and test if the initialization override works
Summary:
Simplify the Makefile taking example on pitivi and copy several pitivi
testing files, simplifying them a bit for our use case
Reviewers: Mathieu_Du
Differential Revision: http://phabricator.freedesktop.org/D97
2015-04-15 19:55:16 +0200 Thibault Saunier <[email protected]>
* gi/overrides/Gst.py:
overrides: Disable all GStreamer APIs until Gst has been initialized
Summary:
And throw an exception if the user tries to call any Gst API without
initializing gst.
https://bugzilla.gnome.org/show_bug.cgi?id=747555
Reviewers: Mathieu_Du
Differential Revision: http://phabricator.freedesktop.org/D87
2015-04-22 10:40:48 +0200 Sebastian Dröge <[email protected]>
* INSTALL:
Remove INSTALL file
autotools automatically generate this, and when using different versions
for autogen.sh there will always be changes to a file tracked by git.
2015-03-18 13:53:55 +0100 Thibault Saunier <[email protected]>
* gi/overrides/Gst.py:
overrides: Try hard to make the query writable in the pad query function
Summary:
We know that the bindings will get an extra ref but we know that
it is not actually needed, so we are safe to decrease the refcount
by one in that particular context making sure we give PyGI its
ref back when we are done.
Reviewers: Mathieu_Du
Differential Revision: http://phabricator.freedesktop.org/D41
https://bugzilla.gnome.org/show_bug.cgi?id=746329
2015-03-06 19:25:57 +0100 Thibault Saunier <[email protected]>
* plugin/Makefile.am:
plugin: Name differently between python2 and python3
Those are 2 different binaries and thus should have different
.so names. Just use the $PYTHON_SO for that to happen.
https://bugzilla.gnome.org/show_bug.cgi?id=738157
2014-10-20 13:40:05 +0200 Thibault Saunier <[email protected]>
* configure.ac:
Back to development
=== release 1.4.0 ===
2014-10-20 11:24:58 +0200 Thibault Saunier <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-python.doap:
Release 1.4.0
2014-10-19 13:34:59 +0200 Sebastian Dröge <[email protected]>
* plugin/gstpythonplugin.c:
pythonplugin: Fix compiler warning about unused format string argument
CC libgstpythonplugin_la-gstpythonplugin.lo
gstpythonplugin.c:192:65: warning: data argument not used by format string
[-Wformat-extra-args]
GST_DEBUG ("GST_PLUGIN_SYSTEM_PATH set to %s", plugin_path, plugin_path);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
=== release 1.3.90 ===
2014-09-24 11:13:45 +0200 Thibault Saunier <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-python.doap:
Release 1.3.90
2014-06-10 16:04:15 +0200 Rico Tzschichholz <[email protected]>
* plugin/Makefile.am:
plugin: Do not version the plugin library
2014-06-05 19:54:13 +0200 Thibault Saunier <[email protected]>
* examples/plugins/python/sinkelement.py:
* old_examples/.gitignore:
* old_examples/Makefile.am:
* old_examples/audio-controller.py:
* old_examples/audioconcat.py:
* old_examples/bps.py:
* old_examples/buffer-draw.py:
* old_examples/cp.py:
* old_examples/cutter.py:
* old_examples/debugslider.py:
* old_examples/decodebin.py:
* old_examples/f2f.py:
* old_examples/filesrc.py:
* old_examples/fvumeter.py:
* old_examples/gst-discover:
* old_examples/gstfile.py:
* old_examples/helloworld.py:
* old_examples/maemogst.py:
* old_examples/mixer.py:
* old_examples/option-parser.py:
* old_examples/pipeline-tester:
* old_examples/play.py:
* old_examples/pyidentity.py:
* old_examples/remuxer.py:
* old_examples/segments.py:
* old_examples/sinkelement-registry.py:
* old_examples/sinkelement.py:
* old_examples/switch.py:
* old_examples/synchronizer.py:
* old_examples/tagsetter.py:
* old_examples/video-controller.py:
* old_examples/vumeter.py:
Move old example to a dedicated folder so user know it is no up to date
2014-06-06 10:30:07 +0200 Thibault Saunier <[email protected]>
* examples/python/sinkelement.py:
* gi/overrides/Gst.py:
Add an example sink element and override the chain and event functions of pads
Otherwize we will get 2 time acces to the element in it, which does
not make much sense. The _full variant can still be used.
2014-02-06 16:17:03 +0100 Thibault Saunier <[email protected]>
* Makefile.am:
* acinclude.m4:
* configure.ac:
* plugin/Makefile.am:
* plugin/gstpythonplugin.c:
Reimplement gstpython plugin on top of PyGobject
2014-06-05 17:22:23 +0200 Thibault Saunier <[email protected]>
* common:
Update common submodule
2014-05-22 22:48:09 +0200 Christoph Reiter <[email protected]>
* gi/overrides/Gst.py:
overrides: Don't pass arguments to Boxed base class __init__() in Gst.Caps override.
This is needed since: https://git.gnome.org/browse/pygobject/commit/?id=3a2bfc8bf01fcae3863
https://bugzilla.gnome.org/show_bug.cgi?id=730596
2014-03-23 10:34:10 +0100 Lubosz Sarnecki <[email protected]>
* gi/overrides/Gst.py:
python3: apply pep 238 for division overload
Python 3 needs an __truediv__ operator method, used in GstFraction.
see: http://legacy.python.org/dev/peps/pep-0238/
https://bugzilla.gnome.org/show_bug.cgi?id=726920
2014-04-01 09:53:21 +0200 Thibault Saunier <[email protected]>
* gi/overrides/Gst.py:
overrides: Import the _gi_gst module relative
We always expect it to be in the same directory and it fixes its import
with python3
https://bugzilla.gnome.org/show_bug.cgi?id=726921
2014-03-29 15:15:27 +0100 Sebastian Dröge <[email protected]>
* configure.ac:
Modernize configure.ac a bit
Especially create tar.xz files instead of tar.gz
2014-03-29 15:01:26 +0100 Sebastian Dröge <[email protected]>
* gi/overrides/Makefile.am:
Fix automake warning
INCLUDES is the old name of AM_CPPFLAGS and is deprecated.
2014-03-29 14:51:39 +0100 Sebastian Dröge <[email protected]>
* configure.ac:
* gi/overrides/Makefile.am:
Fix extension of native Python module
When building debug modules this e.g. has to be _d.so instead of just .so
2014-03-15 18:26:40 +0100 Thibault Saunier <[email protected]>
* configure.ac:
Back to development
=== release 1.2.0 ===
2014-03-15 18:02:45 +0100 Thibault Saunier <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-python.doap:
Release 1.2.0
2014-03-15 12:40:32 +0100 Thibault Saunier <[email protected]>
* configure.ac:
We actually depend on python 2.5 not 2.7
2014-03-15 15:45:43 +0100 Thibault Saunier <[email protected]>
* gi/overrides/Gst.py:
overrides: Checking an empty caps should return False
2013-12-12 11:20:12 +0000 Simon Farnsworth <[email protected]>
* COPYING:
* examples/audioconcat.py:
* examples/bps.py:
* examples/cp.py:
* examples/cutter.py:
* examples/debugslider.py:
* examples/decodebin.py:
* examples/f2f.py:
* examples/filesrc.py:
* examples/fvumeter.py:
* examples/gst-discover:
* examples/pipeline-tester:
* examples/tagsetter.py:
* examples/vumeter.py:
* gi/__init__.py:
* gi/overrides/Gst.py:
* gi/overrides/GstPbutils.py:
* gi/overrides/gstmodule.c:
* pygst.py.in:
* testsuite/common.py:
* testsuite/runtests.py:
* testsuite/test_adapter.py:
* testsuite/test_audio.py:
* testsuite/test_bin.py:
* testsuite/test_buffer.py:
* testsuite/test_bus.py:
* testsuite/test_caps.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_fraction.py:
* testsuite/test_ghostpad.py:
* testsuite/test_gst.py:
* testsuite/test_interface.py:
* testsuite/test_iterator.py:
* testsuite/test_libtag.py:
* testsuite/test_message.py:
* testsuite/test_pad.py:
* testsuite/test_pbutils.py:
* testsuite/test_pipeline.py:
* testsuite/test_registry.py:
* testsuite/test_segment.py:
* testsuite/test_struct.py:
* testsuite/test_taglist.py:
* testsuite/test_typefind.py:
* testsuite/test_xml.py:
Fix zip code of new FSF address
I missed the zip code last time round - fix it. Thanks to Michael Schwendt
in https://bugzilla.redhat.com/show_bug.cgi?id=1034341#c11 for pointing this
out to me.
Signed-off-by: Simon Farnsworth <[email protected]>
https://bugzilla.gnome.org/show_bug.cgi?id=720317
2013-12-03 17:49:11 -0500 Olivier Crête <[email protected]>
* gi/overrides/Gst.py:
Gst: Add python version of GST_TIME_ARGS
2013-12-03 17:36:07 -0500 Olivier Crête <[email protected]>
* .gitignore:
Add *.so to gitignore
2013-11-25 17:01:48 +0000 Simon Farnsworth <[email protected]>
* COPYING:
* examples/audioconcat.py:
* examples/bps.py:
* examples/cp.py:
* examples/cutter.py:
* examples/debugslider.py:
* examples/decodebin.py:
* examples/f2f.py:
* examples/filesrc.py:
* examples/fvumeter.py:
* examples/gst-discover:
* examples/pipeline-tester:
* examples/tagsetter.py:
* examples/vumeter.py:
* gi/__init__.py:
* gi/overrides/Gst.py:
* gi/overrides/GstPbutils.py:
* gi/overrides/gstmodule.c:
* pygst.py.in:
* testsuite/common.py:
* testsuite/runtests.py:
* testsuite/test_adapter.py:
* testsuite/test_audio.py:
* testsuite/test_bin.py:
* testsuite/test_buffer.py:
* testsuite/test_bus.py:
* testsuite/test_caps.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_fraction.py:
* testsuite/test_ghostpad.py:
* testsuite/test_gst.py:
* testsuite/test_interface.py:
* testsuite/test_iterator.py:
* testsuite/test_libtag.py:
* testsuite/test_message.py:
* testsuite/test_pad.py:
* testsuite/test_pbutils.py:
* testsuite/test_pipeline.py:
* testsuite/test_registry.py:
* testsuite/test_segment.py:
* testsuite/test_struct.py:
* testsuite/test_taglist.py:
* testsuite/test_typefind.py:
* testsuite/test_xml.py:
Update FSF address
The FSF has moved since these files were created. Update the address, in
order to keep packaging tools such as rpmlint quiet.
Signed-off-by: Simon Farnsworth <[email protected]>
https://bugzilla.gnome.org/show_bug.cgi?id=715182
2013-09-30 13:27:33 +0200 Sebastian Dröge <[email protected]>
* gi/overrides/__init__.py:
Fix another syntax error with newer Python versions
2013-09-30 13:07:03 +0200 Sebastian Dröge <[email protected]>
* configure.ac:
configure: Fix typo
2013-09-30 12:45:59 +0200 Sebastian Dröge <[email protected]>
* gi/overrides/gstmodule.c:
Fix compilation with Python 3.0
Changes partially taken from pygobject.
2013-09-30 12:30:43 +0200 Sebastian Dröge <[email protected]>
* acinclude.m4:
configure: Fix Python configure checks to work with all Python versions between 2.7 and 3.3
2013-09-28 21:07:47 +0200 Thibault Saunier <[email protected]>
* configure.ac:
Back to development
=== release 1.1.90 ===
2013-09-28 20:48:40 +0200 Thibault Saunier <[email protected]>
* ChangeLog:
* configure.ac:
* gst-python.doap:
Release 1.1.90
2013-08-27 01:07:48 +0200 Andoni Morales Alastruey <[email protected]>
* configure.ac:
configure: fail if pygobject is not found
https://bugzilla.gnome.org/show_bug.cgi?id=706853
2013-08-26 17:35:48 -0400 Thibault Saunier <[email protected]>
* gi/overrides/Gst.py:
Gst: Do not initialize Gst at init
Letting the user choose when to initialize it himself
2013-08-23 23:18:57 -0400 Thibault Saunier <[email protected]>
* TODO:
todo: Update the todo
2013-08-23 23:08:27 -0400 Thibault Saunier <[email protected]>
* Makefile.am:
* configure.ac:
Disable examples amd testsuite as long as they have not been ported
2013-08-23 22:01:46 -0400 Thibault Saunier <[email protected]>
* gi/overrides/Makefile.am:
overrides: Force symlinks when making
Making make distcheck pass
2013-08-23 21:42:37 -0400 Thibault Saunier <[email protected]>
* gi/overrides/gstmodule.c:
gstmodule: Check that we could retrieve the module before using it
And plug a small leak
2013-02-07 16:12:23 -0600 George McCollister <[email protected]>
* configure.ac:
configure: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
AM_CONFIG_HEADER was removed in automake 1.13
https://bugzilla.gnome.org/show_bug.cgi?id=693367
2012-12-30 16:11:30 +0100 Mark Nauwelaerts <[email protected]>
* gi/overrides/Makefile.am:
overrides: symlink some more to use uninstalled out-of-source build
2012-12-07 14:18:21 -0300 Thibault Saunier <[email protected]>
* gi/overrides/Gst.py:
overrides: implement Gst.Structure.__setitem__
2012-11-22 07:11:45 +0100 Alessandro Decina <[email protected]>
* gi/overrides/Gst.py:
overrides: implement Gst.Structure.__getitem__
2012-11-04 17:02:24 +0100 Alessandro Decina <[email protected]>
* gi/overrides/Gst.py:
overrides: move add(*args) override from Gst.Pipeline to Gst.Bin
2012-11-04 17:00:14 +0100 Alessandro Decina <[email protected]>
* gi/overrides/Gst.py:
overrides: move the Gst.Pad override before Gst.GhostPad
...else gi will screw up the type hierarchy and GhostPad will inherit from the
non-overridden Gst.Pad. Got it?
2012-10-24 20:47:07 +0200 Alessandro Decina <[email protected]>
* gi/overrides/Gst.py:
overrides: override GhostPad.__init__
2012-10-15 09:56:43 +0200 Alessandro Decina <[email protected]>