Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用 mSys 下的 gcc 为 DLL 和一些普通的 C 包装器代码构建 ffmpeg 进行一些转换工作,然后我从 C# 调用这些代码。
如果我使用 MS crtdbg.h 我现在没有显示任何内存泄漏(我确实有几个)但是我想检查我是否在我假设使用 gcc 的 ffmpeg 代码中留下了泄漏libc 库。
例如,我使用了一些后来忘记清理的 AVDictionary 对象,我担心其他地方可能还有一些我错过了。
有人对如何确认我没有在 ffmpeg DLL 中泄漏内存有任何建议吗?