- May 31, 2021
-
-
Tim-Philipp Müller authored
-
- May 11, 2021
-
-
Stirling Westrup authored
Part-of: <gstreamer/gst-python!45>
-
- Nov 12, 2020
-
-
Stéphane Cerveau authored
Part-of: <gstreamer/gst-python!43>
-
- Oct 08, 2020
-
-
Andoni Morales Alastruey authored
see: gstreamer/gst-python#28 Part-of: <gstreamer/gst-python!42>
-
- Sep 08, 2020
-
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
-
- Sep 07, 2020
-
-
Tim-Philipp Müller authored
-
- Aug 24, 2020
-
-
Part-of: <gstreamer/gst-python!40>
-
- Aug 20, 2020
-
-
Tim-Philipp Müller authored
-
- Aug 15, 2020
-
-
Thibault Saunier authored
When introducing zero copy buffers/memory mapping we broke the API, this brings back the exact same API as before for all the previously handled cases but still raises an exception when using a context to map buffers. Fixes #40 Part-of: <!39>
-
- Jul 23, 2020
-
-
Jose Quaresma authored
Part-of: <gstreamer/gst-python!35>
-
- Jul 10, 2020
-
-
Jose Quaresma authored
- unref PyObject on exit with Py_XDECREF - better error handling - free memory view in case of erros Part-of: <gstreamer/gst-python!34>
-
Jose Quaresma authored
-
Jose Quaresma authored
-
Jose Quaresma authored
pyg_boxed_new cause a memory leak if it hold a copy of the boxed wrapper and freed when the wrapper is deallocated. use the boxed wrapper value itself and don't hold a copy of the value.
-
- Jul 03, 2020
-
-
Tim-Philipp Müller authored
-
- Jul 02, 2020
-
-
Tim-Philipp Müller authored
-
- Jun 19, 2020
-
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
-
- Apr 03, 2020
-
-
Thibault Saunier authored
-
Andoni Morales Alastruey authored
pylib_loc = python.get_variable('LIBPL', '') alreay returns the correct path for python's library dir
-
- Feb 26, 2020
-
-
Mathieu Duponchelle authored
When returning those values, extensions must take a new reference. Fixes #33
-
- Jan 07, 2020
-
-
Guillaume Desmottes authored
It's no longer used.
-
Fix #8
-
-
- Dec 30, 2019
-
-
- Dec 13, 2019
-
-
Sebastian Dröge authored
Since Python 3.8 the normal checks don't include the Python libraries anymore and linking of the gst-python module would fail. See also https://github.com/mesonbuild/meson/issues/5629 Fixes gstreamer/gst-python#28
-
- Dec 11, 2019
-
-
Thibault Saunier authored
With the new mapping API we can efficiently use the ->fill vmethod which is sensibly better.
-
- Dec 10, 2019
-
-
Thibault Saunier authored
And minor cleanup in the way errors are handled
-
- Dec 09, 2019
-
-
Philipp Zabel authored
-
The Problem is, that in the current state it is not easily possible to edit the buffer data in a gstreamer python element since you get a copy of the real buffer. This patch overrides the mapinfo and the function generating it in a way so that mapinfo.data is now a memoryview pointing to the real buffer. Depending on the flags given for this buffer the memoryview is r/w.
-
- Nov 28, 2019
-
-
Thibault Saunier authored
-
- Nov 19, 2019
-
-
Thibault Saunier authored
We have notified application developers this would happen a long time ago and python2 is going to be deprecated very soon now, before 1.18 is going to be released.
-
- Oct 14, 2019
-
-
Tim-Philipp Müller authored
-
- Sep 02, 2019
-
-
Mathieu Duponchelle authored
The previous commit broke those by trying to pass weak refs through pygobject, but we should probably have tested the elements beyond instantiation: weakref.WeakMethod returns a callable, but that callable when called only returns the ephemeral bound method, which is the object we want to call, but pygobject has no support for that. Instead, fix the memory leaks we were going after by decoupling the lifecycle of the callback and that of the pad, by passing functors to pygobject.
-
- Aug 08, 2019
-
-
Use weakref to avoid leaks, and remove refcount hack as the actual issue has been fixed in pygobject
-
Thibault Saunier authored
-
- May 26, 2019
-
-
Mathieu Duponchelle authored
-
- May 06, 2019
-
-
Thibault Saunier authored
And add a test See https://gitlab.gnome.org/GNOME/pygobject/issues/325
-
- May 03, 2019
-
-