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-SnapChatCamera/ManagedCapturer/SCManagedCaptureDeviceAutoFocusHandler.h
2018-08-08 02:27:52 +03:00

19 lines
561 B
Objective-C

//
// SCManagedCaptureDeviceAutoFocusHandler.h
// Snapchat
//
// Created by Jiyang Zhu on 3/7/18.
// Copyright © 2018 Snapchat, Inc. All rights reserved.
//
// This class is used to adjust focus related parameters of camera, including focus mode and focus point.
#import "SCManagedCaptureDeviceFocusHandler.h"
#import <AVFoundation/AVFoundation.h>
@interface SCManagedCaptureDeviceAutoFocusHandler : NSObject <SCManagedCaptureDeviceFocusHandler>
- (instancetype)initWithDevice:(AVCaptureDevice *)device pointOfInterest:(CGPoint)pointOfInterest;
@end