How to call recording Callback in custom CFRunLoop in iPhone

Posted by S.P. on Stack Overflow See other posts from Stack Overflow or by S.P.
Published on 2010-12-29T13:51:17Z Indexed on 2010/12/29 13:53 UTC
Read the original article Hit count: 159

Filed under:
|
|
|

I am recording audio in iPhone ..

This is my Audio Queue object

  AudioQueueNewInput(
                       &audioDescription,
                       recordingCallback, self,
                       CFRunLoopGetCurrent(), kCFRunLoopDefaultMode, 0,
                       &mInputQueue
                       );

But i want to run this in a seperate RunLoop..How to create custom CFRunLoop ? Please help me..Thanks in advance.

© Stack Overflow or respective owner

Related posts about iphone

Related posts about objective-c