2015-08-05 15:48:13 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright 2015 The WebRTC Project Authors. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
2020-10-19 16:12:43 +02:00
|
|
|
#import "sdk/objc/base/RTCVideoRenderer.h"
|
|
|
|
|
#import "sdk/objc/helpers/RTCCameraPreviewView.h"
|
2015-08-05 15:48:13 -07:00
|
|
|
|
2015-08-14 11:00:02 -07:00
|
|
|
#import "ARDStatsView.h"
|
|
|
|
|
|
2015-08-05 15:48:13 -07:00
|
|
|
@class ARDVideoCallView;
|
|
|
|
|
@protocol ARDVideoCallViewDelegate <NSObject>
|
|
|
|
|
|
|
|
|
|
// Called when the camera switch button is pressed.
|
2020-07-20 14:40:28 +05:30
|
|
|
- (void)videoCallView:(ARDVideoCallView *)view
|
|
|
|
|
shouldSwitchCameraWithCompletion:(void (^)(NSError *))completion;
|
2015-08-05 15:48:13 -07:00
|
|
|
|
2016-03-12 16:52:04 -08:00
|
|
|
// Called when the route change button is pressed.
|
2020-07-20 14:40:28 +05:30
|
|
|
- (void)videoCallView:(ARDVideoCallView *)view
|
|
|
|
|
shouldChangeRouteWithCompletion:(void (^)(void))completion;
|
2016-03-12 16:52:04 -08:00
|
|
|
|
2015-08-05 15:48:13 -07:00
|
|
|
// Called when the hangup button is pressed.
|
|
|
|
|
- (void)videoCallViewDidHangup:(ARDVideoCallView *)view;
|
|
|
|
|
|
2015-08-14 11:00:02 -07:00
|
|
|
// Called when stats are enabled by triple tapping.
|
|
|
|
|
- (void)videoCallViewDidEnableStats:(ARDVideoCallView *)view;
|
|
|
|
|
|
2015-08-05 15:48:13 -07:00
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
// Video call view that shows local and remote video, provides a label to
|
|
|
|
|
// display status, and also a hangup button.
|
|
|
|
|
@interface ARDVideoCallView : UIView
|
|
|
|
|
|
|
|
|
|
@property(nonatomic, readonly) UILabel *statusLabel;
|
2020-05-04 16:14:32 +02:00
|
|
|
@property(nonatomic, readonly) RTC_OBJC_TYPE(RTCCameraPreviewView) * localVideoView;
|
|
|
|
|
@property(nonatomic, readonly) __kindof UIView<RTC_OBJC_TYPE(RTCVideoRenderer)> *remoteVideoView;
|
2015-08-14 11:00:02 -07:00
|
|
|
@property(nonatomic, readonly) ARDStatsView *statsView;
|
2015-08-05 15:48:13 -07:00
|
|
|
@property(nonatomic, weak) id<ARDVideoCallViewDelegate> delegate;
|
|
|
|
|
|
|
|
|
|
@end
|