萤石云 iOSSDK,移植跨平台相关工程
Davin
2023-06-25 dd29df2e08ac87c878e26513f1b5ae06eae7a6d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
//  HDLEZVideoQualityBoxView.h
//  EZSDK
//
//  Created by Davin on 2023/6/25.
//
 
#import <UIKit/UIKit.h>
 
NS_ASSUME_NONNULL_BEGIN
 
typedef NS_ENUM(NSInteger, HDLEZVideoFullSceneOperation) {
    HDLEZVideoFullSceneOperationOfHangUp = 0,       // 挂断
    HDLEZVideoFullSceneOperationOfPlay,             // 播放
    HDLEZVideoFullSceneOperationOfPause,            // 暂停
    HDLEZVideoFullSceneOperationOfSound,            // 音量
    HDLEZVideoFullSceneOperationOfSoundOff,         // 静音
    HDLEZVideoFullSceneOperationOfSmooth,           // 流畅
    HDLEZVideoFullSceneOperationOfBalance,          // 均衡
    HDLEZVideoFullSceneOperationOfHDFull,           // 高清
    HDLEZVideoFullSceneOperationOfExitFull,         // 退出全屏
};
 
@interface HDLEZVideoQualityBoxView : UIView
 
- (void)videoQualityChange:(void(^)(HDLEZVideoFullSceneOperation operationType))qualityBlock;
 
@end
 
NS_ASSUME_NONNULL_END