| 1234567891011121314151617181920212223242526272829 |
- //
- // BGKSYAgoraLinkMicPlayerController.h
- // FanweApp
- //
- // Created by xfg on 2017/2/13.
- // Copyright © 2017年 xfg. All rights reserved.
- // 金山云、声网连麦观众、辅播端
- #import "BGKSYPlayerController.h"
- @interface BGKSYAgoraLinkMicPlayerController : BGTPlayController
- @property (nonatomic, strong) BGKSYAgoraStreamerBaseController *linkMicBaseController;
- @property (nonatomic, assign) BOOL isWaitingResponse; // 是否正在等待连麦中
- /*
- * 开始连麦
- * applicantId:申请连麦者ID
- * responderId:接收连麦者ID
- * roomId:房间ID
- */
- - (void)startLinkMic:(NSString *)applicantId andResponderId:(NSString *)responderId roomId:(NSString *)roomId;
- /*
- * 停止连麦
- * applicantId:申请连麦者ID
- */
- - (void)stopLinkMic:(NSString *)applicantId;
- -(void)reloadPlay;
- @end
|