12 lines
281 B
Objective-C
12 lines
281 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@class IMCCanvasView;
|
|
|
|
@interface IMCVideoStreamServer : NSObject
|
|
- (instancetype)initWithCanvasView:(IMCCanvasView *)canvasView;
|
|
- (void)start;
|
|
- (NSDictionary *)streamStats;
|
|
- (void)resetStreamStats;
|
|
- (void)setDebugEnabled:(BOOL)enabled;
|
|
@end
|