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.
 
 
 

26 lines
483 B

//
// SCManagedCapturer.m
// Snapchat
//
// Created by Lin Jia on 9/28/17.
//
#import "SCManagedCapturer.h"
#import "SCCameraTweaks.h"
#import "SCCaptureCore.h"
#import "SCManagedCapturerV1.h"
@implementation SCManagedCapturer
+ (id<SCCapturer>)sharedInstance
{
static dispatch_once_t onceToken;
static id<SCCapturer> managedCapturer;
dispatch_once(&onceToken, ^{
managedCapturer = [[SCCaptureCore alloc] init];
});
return managedCapturer;
}
@end