GNOME Bugzilla – Bug 730703
gl: Freshly allocated memory is twice the expected size
Last modified: 2014-05-25 04:23:31 UTC
Freshly allocated memory are twice the expected size. If that is exact, it's a large waste of resources, but also the containing buffer will report a larger size then expected, which will cause the buffers to always get freed instead of being pooled back.
Tested with: gst-launch-1.0 v4l2src io-mode=userptr ! glimagesink
commit dbffcffaee399b450bc82e32bb445bb035cc1971 Author: Matthew Waters <ystreet00@gmail.com> Date: Sun May 25 11:44:57 2014 +1000 gl/memory: allocate the correct memory size and avoid wasting resources we will never need https://bugzilla.gnome.org/show_bug.cgi?id=730703
Thanks a lot, that was fast !