1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
Source-SnapChat/ManagedCapturer/SCStillImageCaptureVideoInputMethod.h
2018-05-24 00:48:43 +03:00

20 lines
646 B
Objective-C

//
// SCStillImageCaptureVideoInputMethod.h
// Snapchat
//
// Created by Alexander Grytsiuk on 3/16/16.
// Copyright © 2016 Snapchat, Inc. All rights reserved.
//
#import "SCManagedCapturerState.h"
#import <AVFoundation/AVFoundation.h>
@interface SCStillImageCaptureVideoInputMethod : NSObject
- (void)captureStillImageWithCapturerState:(SCManagedCapturerState *)state
successBlock:(void (^)(NSData *imageData, NSDictionary *cameraInfo,
NSError *error))successBlock
failureBlock:(void (^)(NSError *error))failureBlock;
@end