OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:videoDataOutput
(Results
1 - 2
of
2
) sorted by null
/external/opencv3/modules/videoio/src/
cap_ios_video_camera.mm
51
@property (nonatomic, retain) AVCaptureVideoDataOutput *
videoDataOutput
;
70
@synthesize
videoDataOutput
;
120
self.
videoDataOutput
= nil;
279
self.
videoDataOutput
= [AVCaptureVideoDataOutput new];
285
self.
videoDataOutput
.videoSettings = [NSDictionary dictionaryWithObject:[NSNumber numberWithUnsignedInt:format]
289
[self.
videoDataOutput
setAlwaysDiscardsLateVideoFrames:YES];
291
if ( [self.captureSession canAddOutput:self.
videoDataOutput
] ) {
292
[self.captureSession addOutput:self.
videoDataOutput
];
294
[[self.
videoDataOutput
connectionWithMediaType:AVMediaTypeVideo] setEnabled:YES];
298
if ([self.
videoDataOutput
connectionWithMediaType:AVMediaTypeVideo].supportsVideoMinFrameDuration)
[
all
...]
/external/opencv3/modules/videoio/include/opencv2/videoio/
cap_ios.h
118
AVCaptureVideoDataOutput *
videoDataOutput
;
Completed in 144 milliseconds