应用程序从 iPhone 后台返回后复制NextSampleBuffer
我正在使用以下方式读取视频文件:
CMSampleBufferRef sampleBuffer = [asset_reader_output copyNextSampleBuffer];
其中 asset_reader_output
是 AVAssetReaderTrackOutput
类的实例。
这工作得很好,但如果应用程序转到后台然后返回(例如,如果接到电话),则返回到应用程序后,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试跟踪当前样本缓冲区。然后,在您的 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