Hello,
I am writing a simple app to play an H264 video stream (received over the network) using AVSampleBufferDisplayLayer.
After random amount of time, my AVSampleBufferDisplayLayer instance changes its status to "AVQueuedSampleBufferRenderingStatusFailed" and the error is
2015-06-10 10:20:48.235 H264Player[2095:951683] Error Domain=AVFoundationErrorDomain Code=-11847 "Operation Interrupted" UserInfo=0x156a5390 {NSLocalizedRecoverySuggestion=Stop other operations and try again., NSUnderlyingError=0x16d783b0 "The operation couldn’t be completed. (OSStatus error -12084.)", NSLocalizedDescription=Operation Interrupted}
According to AVFoundation error codes (found here : https://developer.apple.com/library/prerelease/ios/documentation/AVFoundation/Reference/AVFoundation_ErrorConstants/index.html#//apple_ref/doc/constant_group/Error_Codes)
The error is related to an AVAssetWriter, AVAssetReader or AVAssetExportSession.
My app does not do any use of those classes.
I am loking for any idea how to resolve this issue.
Thnak you!