EZOpenSDK  4.8.6
 全部  函数 属性
EZVideoQualityInfo.h
1 //
2 // EZVideoQualityInfo.h
3 // EzvizOpenSDK
4 //
5 // Created by linyong on 2017/2/28.
6 // Copyright © 2017年 Ezviz. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
12 @interface EZVideoQualityInfo : NSObject
13 
15 @property (nonatomic,copy) NSString *videoQualityName;
16 
18 @property (nonatomic,assign) NSInteger videoLevel;
19 
21 @property (nonatomic,assign) NSInteger streamType;
22 
23 @end
NSInteger videoLevel
视频质量,0-流畅,1-均衡,2-高清,3-超清
Definition: EZVideoQualityInfo.h:18
NSInteger streamType
该清晰度所使用的码流类型,1为主码流,2为子码流
Definition: EZVideoQualityInfo.h:21
NSString * videoQualityName
清晰度名称,如超清、高清、均衡、流畅等
Definition: EZVideoQualityInfo.h:15
此类为通道支持的清晰度信息
Definition: EZVideoQualityInfo.h:12