GNOME Bugzilla – Bug 723269
matroskamux: used uid list grows forever
Last modified: 2014-01-30 15:15:25 UTC
Created attachment 267613 [details] [review] Suggested fix. The matroska muxer stores all used track uid in a global array that is never cleared. This means that for processes that are living for a long time this adds up to quite a lot of memory. The provided patch moves the list into the class so that uniqueness can still be guaranteed within the file, but memory consumption is limited.
thanks for the patch! commit 46bc1677a4fa8c640130e58b052376a16cebfdbb Author: Per x Johansson <perxjoh@axis.com> Date: Thu Jan 30 09:43:50 2014 +0100 matroskamux: Fix constantly growing used uid list Moves the used uid list to the class to avoid having it grow forever. https://bugzilla.gnome.org/show_bug.cgi?id=723269