EZOpenSDK  v4.7.1
 All Classes Functions Properties
EZVideoQualityInfo.h
1 //
2 // EZVideoQualityInfo.h
3 // EzvizOpenSDK
4 //
5 // Created by linyong on 2017/2/28.
6 // Copyright © 2017Ezviz.. 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
Video quality: 0- Fluent, 1- SD, 2- HD, 3- Ultra HD.
Definition: EZVideoQualityInfo.h:18
NSInteger streamType
Stream type: 1- Main stream, 2- Sub stream.
Definition: EZVideoQualityInfo.h:21
NSString * videoQualityName
Video quality, such as ultra HD, HD, SD, fluent, etc.
Definition: EZVideoQualityInfo.h:15
Video quality supported by the camera.
Definition: EZVideoQualityInfo.h:12