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.
25 lines
588 B
25 lines
588 B
//
|
|
// 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
|