Searched refs:videoDataOutput (Results 1 – 3 of 3) sorted by relevance
451 AVCaptureVideoDataOutput *videoDataOutput = [[AVCaptureVideoDataOutput alloc] init];453 // `videoDataOutput.availableVideoCVPixelFormatTypes` returns the pixel formats supported by the458 [NSMutableOrderedSet orderedSetWithArray:videoDataOutput.availableVideoCVPixelFormatTypes];465 videoDataOutput.videoSettings = @{(NSString *)kCVPixelBufferPixelFormatTypeKey : pixelFormat};466 videoDataOutput.alwaysDiscardsLateVideoFrames = NO;467 [videoDataOutput setSampleBufferDelegate:self queue:self.frameQueue];468 _videoDataOutput = videoDataOutput;
29 AVCaptureVideoDataOutput* videoDataOutput; variable
190 videoDataOutput = [AVCaptureVideoDataOutput new];195 [videoDataOutput setVideoSettings:rgbOutputSettings];196 [videoDataOutput setAlwaysDiscardsLateVideoFrames:YES];198 [videoDataOutput setSampleBufferDelegate:self queue:videoDataOutputQueue];200 if ([session canAddOutput:videoDataOutput]) [session addOutput:videoDataOutput];201 [[videoDataOutput connectionWithMediaType:AVMediaTypeVideo] setEnabled:YES];