2014 snapchat source code
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//
// 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
|