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
659 B
25 lines
659 B
//
|
|
// SCManagedDroppedFramesReporter.h
|
|
// Snapchat
|
|
//
|
|
// Created by Michel Loenngren on 3/21/17.
|
|
// Copyright © 2017 Snapchat, Inc. All rights reserved.
|
|
//
|
|
|
|
#import "SCManagedCapturerListener.h"
|
|
|
|
#import <SCCameraFoundation/SCManagedVideoDataSourceListener.h>
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
/*
|
|
Conforms to SCManagedVideoDataSourceListener and records frame rate statistics
|
|
during recording.
|
|
*/
|
|
@interface SCManagedDroppedFramesReporter : NSObject <SCManagedVideoDataSourceListener, SCManagedCapturerListener>
|
|
|
|
- (void)reportWithKeepLateFrames:(BOOL)keepLateFrames lensesApplied:(BOOL)lensesApplied;
|
|
|
|
- (void)didChangeCaptureDevicePosition;
|
|
|
|
@end
|