examples icon indicating copy to clipboard operation
examples copied to clipboard

Dispatch Queue

Open iosdec opened this issue 10 years ago • 1 comments

The app crashed when running the SetupAVCapture function.

To fix, replace: self.videoDataOutputQueue = dispatch_queue_create("VideoDataOutputQueue", DISPATCH_QUEUE_SERIAL);

With: dispatch_queue_t temp = dispatch_queue_create("VideoDataOutputQueue", DISPATCH_QUEUE_SERIAL); self.videoDataOutputQueue = temp;

iosdec avatar Oct 28 '15 15:10 iosdec

Thanks @declanland ! I was struggling as to how to make the sample work and you just saved my day!

hyd00 avatar Jun 29 '16 06:06 hyd00