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.
27 lines
720 B
27 lines
720 B
//
|
|
// SCBlackCameraRunningDetector.h
|
|
// Snapchat
|
|
//
|
|
// Created by Derek Wang on 30/01/2018.
|
|
//
|
|
|
|
#import <SCBase/SCMacros.h>
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class SCQueuePerformer, SCBlackCameraReporter;
|
|
@protocol SCManiphestTicketCreator;
|
|
|
|
@interface SCBlackCameraRunningDetector : NSObject
|
|
|
|
SC_INIT_AND_NEW_UNAVAILABLE
|
|
- (instancetype)initWithPerformer:(SCQueuePerformer *)performer reporter:(SCBlackCameraReporter *)reporter;
|
|
|
|
// When session isRunning changed
|
|
- (void)sessionDidChangeIsRunning:(BOOL)running;
|
|
// Call this after [AVCaptureSession startRunning] is called
|
|
- (void)sessionDidCallStartRunning;
|
|
// Call this before [AVCaptureSession stopRunning] is called
|
|
- (void)sessionWillCallStopRunning;
|
|
|
|
@end
|