LZMA SDK进展
在我的应用程序中,我使用 LZMA SDK 压缩约 400Mb 的数据。当然,这需要一些时间。即使在大量谷歌搜索之后,我也无法找到任何如何获取压缩过程的实时进度信息的信息。这是通过一些回调函数还是什么来完成的?
In my application, I'm compressing ~400Mb of data with LZMA SDK. Naturally, this takes some time. Even after massive Googling, I wasn't able to find any information how to get live progress information of the compress-process. Is this done with some callback function or what?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您看过 SDK 提供的示例吗?例如,在文件夹 CPP\7zip\Compress\LZMA_Alone 中,有一个相当完整的 LZMA 参考实现。此目录中的文件 LzmaBench.cpp 包含整个 CBenchProgressInfo 类,其中包括进度信息的回调。
Did you have a look at the examples provided with the SDK? For example, in the folder CPP\7zip\Compress\LZMA_Alone there's a quite complete reference implementation of LZMA. The file LzmaBench.cpp in this directory contains a whole CBenchProgressInfo class including a callback for progress information.