I have a video recording app. Everything works fine. Except when a phone call is received while recording.

When a phone call is received, I try to end the recording, however, any of my calls to write to an AVAssetWriter are denied. audioWriterInput appendSampleBuffer returns no, appendPixelBuffer errors out. I try to call avAssetWriter finishWriting but that returns AVAssetWriterStatusFailed.

Nothing works, my video is corrupted because it seems that my usual methods to finish up a recording session are not being allowed once a call is received.

What could I listen for to properly end a recording session when a phone call is received? The only thing I can currently do is listen for applicationWillResignActive and stop everything, but that prevents recording while a user receives a text message, etc. which would make my app work differently than the native Camera app.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Take a look at the Core Telephony framework, and specifically the CTCallCenter class. You can register an callEventHandler which is a block that accepts a CTCall object. This object describes the call state. Try to end recording when the call object indicates it's an incoming call.

link|improve this answer
Thanks. I'd look at that briefly, but thought it was a private api for some reason. I'll look again. Seems odd that calls should have their own notifications that don't comply with all the other AppDelegate notifications. – akaru May 14 '11 at 1:29
I successfully used the api, and sure enough, I get the callbacks as expected. However, all my AVFoundation calls are still getting messed up. I'm diving deeper into it now to see what the issue is. – akaru May 15 '11 at 4:10
did you solve the issue? – pat Mar 1 at 19:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.