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/SCManagedVideoCapturerTimeObserver.h
2018-08-08 02:32:46 +03:00

26 lines
588 B
Objective-C

//
// SCManagedVideoCapturerTimeObserver.h
// Snapchat
//
// Created by Michel Loenngren on 4/3/17.
// Copyright © 2017 Snapchat, Inc. All rights reserved.
//
#import <CoreMedia/CoreMedia.h>
#import <Foundation/Foundation.h>
@class SCTimedTask;
/*
Class keeping track of SCTimedTasks and firing them on the main thread
when needed.
*/
@interface SCManagedVideoCapturerTimeObserver : NSObject
- (void)addTimedTask:(SCTimedTask *_Nonnull)task;
- (void)processTime:(CMTime)relativePresentationTime
sessionStartTimeDelayInSecond:(CGFloat)sessionStartTimeDelayInSecond;
@end