IMP(低代码音视频工厂)SDK v1.5.0
IMP SDK API Reference Manual for iOS Platforms
AIRBRTCConfig.h
1
2//
3// AIRBRTCConfig.h
4// AliInteractiveRoomBundle
5//
6// Created by 刘再勇 on 2021/8/19.
7// Copyright © 2021 AliYun. All rights reserved.
8//
9
10#import <Foundation/Foundation.h>
11#import <UIKit/UIKit.h>
12#import <AliInteractiveRoomBundle/AIRBCommonDefines.h>
13
14NS_ASSUME_NONNULL_BEGIN
15
16@interface AIRBRTCConfig : NSObject
17
24@property (nonatomic, assign) BOOL audioOnlyModeEnabled;
25
29@property (nonatomic, assign) CGSize videoStreamTypeHighDimensions;
30
34@property (nonatomic, assign) BOOL videoStreamTypeLowPublished;
35
36//******** 已废弃,请通过开启旁路推流接口startPublishingBypassLive:进行设置 ********//
38// * 旁路直播分辨率类型,默认值为AIRBRTCBypassLiveResolutionType_1280x720
39// * @note 非必需,只有开启旁路直播的房主设置才会生效
40// */
41//@property (nonatomic, assign) AIRBRTCBypassLiveResolutionType bypassLiveResolutionType;
42
43@end
44
45NS_ASSUME_NONNULL_END
Definition: AIRBRTCConfig.h:17
BOOL audioOnlyModeEnabled
Definition: AIRBRTCConfig.h:24
CGSize videoStreamTypeHighDimensions
Definition: AIRBRTCConfig.h:29
BOOL videoStreamTypeLowPublished
Definition: AIRBRTCConfig.h:34