mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
15f6135639
// FREEBIE
17 lines
366 B
Objective-C
17 lines
366 B
Objective-C
//
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import <WebRTC/RTCVideoRenderer.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* Drives the full screen remote video. This is *not* a swift class
|
|
* so we can take advantage of some compile time constants from WebRTC
|
|
*/
|
|
@interface RemoteVideoView : UIView <RTCVideoRenderer>
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|