https://bugs.kde.org/show_bug.cgi?id=501274
--- Comment #2 from Harald Sitter <sit...@kde.org> --- Created attachment 179260 --> https://bugs.kde.org/attachment.cgi?id=179260&action=edit test.qml For what it's worth I've had a quick look and I think there is no actual leak. What happens is that qtffmpeg doesn't fully de-initialize itself when you destroy the Video item. Specifically it holds on to its internal engine until a new media is set. As well as some global statics that only get cleared on app shutdown. https://codebrowser.dev/qt6/qtmultimedia/src/plugins/multimedia/ffmpeg/qffmpegmediaplayer.cpp.html#188 Depending on the video in question that would be more or less memory it uses, but it shouldn't keep growing forever. And indeed a simple test program I have attached doesn't, it rises for a bit and eventually stays within the same range. -- You are receiving this mail because: You are watching all bug changes.