应用程序从 iPhone 后台返回后复制NextSampleBuffer

发布于 2024-10-14 06:41:07 字数 338 浏览 2 评论 0原文

我正在使用以下方式读取视频文件:

CMSampleBufferRef sampleBuffer = [asset_reader_output copyNextSampleBuffer];

其中 asset_reader_outputAVAssetReaderTrackOutput 类的实例。

这工作得很好,但如果应用程序转到后台然后返回(例如,如果接到电话),则返回到应用程序后,copyNextSampleBuffer 始终返回 nil。

为什么它返回 nil 而不是实际数据?我该如何解决这个问题?

I'm reading a video file using:

CMSampleBufferRef sampleBuffer = [asset_reader_output copyNextSampleBuffer];

where asset_reader_output is an instance of AVAssetReaderTrackOutput class.

this works well, but if the application goes to the background and then returns (for instance, if a phone call was received), then after returning to the application, copyNextSampleBuffer always return nil.

why is it returning nil and not the actual data? how can i solve this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吝吻 2024-10-21 06:41:07

尝试跟踪当前样本缓冲区。然后,在您的 appDelegate 类中,您有回调方法 applicationDidEnterBackground 和 applicationWillEnterForeground。只需在调用 copyNextSampleBuffer 之前将当前 semple 缓冲区标记设置在正确的位置即可

try to track on current sample buffer. Then, in your appDelegate class, you have callback methods applicationDidEnterBackground and applicationWillEnterForeground. just set current semple buffer marker at right place before calling copyNextSampleBuffer

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文